Skip to content

Instantly share code, notes, and snippets.

@micahstubbs
Created October 6, 2018 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save micahstubbs/1eddda946e40064a0f7eb1ccc89f8962 to your computer and use it in GitHub Desktop.
Save micahstubbs/1eddda946e40064a0f7eb1ccc89f8962 to your computer and use it in GitHub Desktop.
Internet Interactive Map Iteration
license: MIT
height: 800
border: no

An interactive map of the BGP network topology. Each node represents an Autonomous System. The positioning of each AS is determined by the size of its customer cone (radius), and by the longitude of its geolocation (angle).

See also the 3D force-simulated version

Project developed during the CAIDA BGP hackathon 2016


this iteration updates the code to ES2017+ with the help of our friend lebab

an iteration on the Internet Interactive Map from @vastur


this iteration makes the code nice to work with, for my subjective definition of nice to work with :-)

prettier formatting and 2-space indentation

define(
[
'react',
'react-dom',
'jquery',
'underscore',
'cytoscape',
'cytoscape-panzoom',
'colors'
],
(React, ReactDOM, $, _, cytoscape, panzoom, Colors) => {
panzoom(cytoscape, $) // Register panzoom
const CytoscapeGraph = React.createClass({
const: {
REFRESH_STYLE_PAUSE: 300, // ms
MIN_EDGE_WIDTH: 0.15,
MAX_EDGE_WIDTH: 0.25,
NODE_SIZE: 2
},
componentDidMount() {
const props = this.props
const consts = this.const
const cs = (this._csGraph = cytoscape({
container: ReactDOM.findDOMNode(this),
layout: {
name: 'preset',
fit: false
},
minZoom: 1,
maxZoom: 100,
autoungrabify: true,
autolock: true,
hideEdgesOnViewport: true,
hideLabelsOnViewport: true,
textureOnViewport: true,
motionBlur: true,
style: [
{
selector: 'node',
style: {
width: this.const.NODE_SIZE,
height: this.const.NODE_SIZE,
'border-width': this.const.NODE_SIZE * 0.1,
'border-color': 'orange',
'background-color': 'yellow',
'background-opacity': 0.3
}
},
{
selector: 'edge',
style: {
'curve-style': 'haystack', // 'bezier'
width: 0.05,
opacity(el) {
return el.data('opacity')
},
'line-color': function(el) {
return el.data('color')
}
}
}
],
elements: {
nodes: props.nodes.map(node => ({
data: $.extend({ id: node.id }, node.nodeData),
position: {
x: node.x,
y: node.y
}
})),
edges: props.edges.map(edge => ({
data: {
source: edge.src,
target: edge.dst,
color: edge.color || 'lightgrey',
opacity: edge.opacity || 1
}
}))
}
})
.on('zoom', () => {
adjustElementSizes()
zoomOrPan()
})
.on('pan', zoomOrPan)
.on('mouseover', 'node', function() {
props.onNodeHover(this.data())
})
.on('select', 'node', function() {
props.onNodeClick(this.data())
}))
cs.panzoom({
zoomFactor: 0.1, // zoom factor per zoom tick
zoomDelay: 50, // how many ms between zoom ticks
minZoom: 1, // min zoom level
maxZoom: 100, // max zoom level
fitPadding: 0, // padding when fitting
panSpeed: 20, // how many ms in between pan ticks
panDistance: 40 // max pan distance per tick
})
function zoomOrPan() {
const pan = cs.pan()
props.onZoomOrPan(cs.zoom(), pan.x, pan.y)
}
var adjustElementSizes = _.debounce(
this.resetStyle,
consts.REFRESH_STYLE_PAUSE
)
},
render() {
return (
<div
style={{
width: this.props.width,
height: this.props.height
}}
/>
)
},
zoom(ratio) {
this._csGraph.zoom(ratio)
},
pan(x, y) {
this._csGraph.pan({ x, y })
},
getNodeById(id) {
return this._csGraph.getElementById(id)
},
resetStyle() {
const cs = this._csGraph
const zoom = cs.zoom()
const nodeSize = this.const.NODE_SIZE / zoom
cs
.style()
.selector('node')
.style({
width: nodeSize,
height: nodeSize,
'background-color': 'yellow',
'background-opacity': 0.3
})
.selector('edge')
.style({
width:
Math.min(
this.const.MIN_EDGE_WIDTH * zoom,
this.const.MAX_EDGE_WIDTH
) / zoom
})
.update()
}
})
return React.createClass({
getDefaultProps() {
return {
graphData: graphRandomGenerator(5, 10),
width: window.innerWidth,
height: window.innerHeight,
margin: 0,
selectedAs: null
}
},
getInitialState() {
return {
radialNodes: this._genRadialNodes(),
edges: this._getEdges()
}
},
componentDidMount() {
this.refs.radialGraph.zoom(1)
this.refs.radialGraph.pan(this.props.width / 2, this.props.height / 2)
},
componentWillReceiveProps(nextProps) {
if (
nextProps.width !== this.props.width ||
nextProps.height !== this.props.height ||
nextProps.graphData !== this.props.graphData
) {
this.setState({ radialNodes: this._genRadialNodes() })
}
},
render() {
return (
<CytoscapeGraph
ref="radialGraph"
nodes={this.state.radialNodes}
edges={this.state.edges}
width={this.props.width}
height={this.props.height}
onZoomOrPan={this._onZoomOrPan}
onNodeHover={this.props.onAsHover}
onNodeClick={this.props.onAsClick}
/>
)
},
_genRadialNodes() {
const rThis = this
const maxR =
Math.min(this.props.width, this.props.height) / 2 - this.props.margin
const maxConeSize = Math.max.apply(
null,
this.props.graphData.ases.map(asNode => asNode.customerConeSize)
)
return this.props.graphData.ases.map(node => {
const radius = rThis._getRadius(node.customerConeSize, maxConeSize)
console.log('radius from _genRadialNodes', radius)
return {
// Convert to radial coords
id: node.asn,
x: maxR * radius * Math.cos(-node.lon * Math.PI / 180),
y: maxR * radius * Math.sin(-node.lon * Math.PI / 180),
nodeData: node
}
})
},
_getEdges() {
const customerCones = {}
const maxConeSize = Math.max.apply(
null,
this.props.graphData.ases.map(asNode => {
customerCones[asNode.asn] = asNode.customerConeSize
return asNode.customerConeSize
})
)
return this.props.graphData.relationships.map(rel => {
if (!rel.hasOwnProperty('customerConeSize')) {
rel.customerConeSize = Math.min(
customerCones[rel.src],
customerCones[rel.dst]
)
}
return {
src: rel.src,
dst: rel.dst,
color: Colors.valueRgb(rel.customerConeSize, maxConeSize),
opacity: Colors.valueOpacity(rel.customerConeSize, maxConeSize)
}
})
},
_getRadius(coneSize, maxConeSize) {
// 0<=result<=1
return (
(Math.log(maxConeSize) - Math.log(coneSize)) /
(Math.log(maxConeSize) - Math.log(1)) *
0.99 +
0.01
)
},
_onZoomOrPan(zoom, panX, panY) {
const r = Math.min(this.props.width, this.props.height) / 2
const offsetX = -(panX - this.props.width / 2) / zoom / r
const offsetY = -(panY - this.props.height / 2) / zoom / r
const offsetR = Math.sqrt(Math.pow(offsetX, 2) + Math.pow(offsetY, 2))
let offsetAng = offsetR
? -Math.acos(offsetX / offsetR) / Math.PI * 180
: 0
const zoomRadius = 1 / zoom
if (offsetY < 0) {
// Complementary angle
offsetAng = 360 - offsetAng
}
this.props.onRadialViewportChange(zoomRadius, offsetR, offsetAng)
}
})
}
)
////
function graphRandomGenerator(nNodes, nEdges) {
const nodes = []
const edges = []
nNodes = Math.max(nNodes, 1)
nEdges = Math.abs(nEdges)
while (nEdges--) {
edges.push({
src: Math.round((nNodes - 1) * Math.random()),
dst: Math.round((nNodes - 1) * Math.random()),
type: 'peer'
})
}
while (nNodes--) {
nodes.push({
asn: nNodes,
customerConeSize: Math.random(),
lat: Math.random() * 180 - 90,
lon: Math.random() * 360 - 180
//x: Math.random(),
//y: Math.random()
})
}
return {
ases: nodes,
relationships: edges
}
}
define([], function() {
return [
{
population: '417910',
country: 'NZ',
city: 'Auckland',
lat: '-36.86667',
name: 'Auckland, NZ',
lon: '174.76667'
},
{
population: '363926',
country: 'NZ',
city: 'Christchurch',
lat: '-43.53333',
name: 'Christchurch, NZ',
lon: '172.63333'
},
{
population: '187282',
country: 'RU',
city: 'Petropavlovsk-kamchatsky',
lat: '53.04444',
name: 'Petropavlovsk-kamchatsky, RU',
lon: '158.65076'
},
{
population: '4627345',
country: 'AU',
city: 'Sydney',
lat: '-33.86785',
name: 'Sydney, AU',
lon: '151.20732'
},
{
population: '367752',
country: 'AU',
city: 'Canberra',
lat: '-35.28346',
name: 'Canberra, AU',
lon: '149.12807'
},
{
population: '4246375',
country: 'AU',
city: 'Melbourne',
lat: '-37.814',
name: 'Melbourne, AU',
lon: '144.96332'
},
{
population: '1883027',
country: 'JP',
city: 'Sapporo',
lat: '43.06667',
name: 'Sapporo, JP',
lon: '141.35'
},
{
population: '8336599',
country: 'JP',
city: 'Tokyo',
lat: '35.6895',
name: 'Tokyo, JP',
lon: '139.69171'
},
{
population: '2592413',
country: 'JP',
city: 'Osaka',
lat: '34.69374',
name: 'Osaka, JP',
lon: '135.50218'
},
{
population: '1392289',
country: 'JP',
city: 'Fukuoka',
lat: '33.6',
name: 'Fukuoka, JP',
lon: '130.41667'
},
{
population: '10349312',
country: 'KR',
city: 'Seoul',
lat: '37.566',
name: 'Seoul, KR',
lon: '126.9784'
},
{
population: '6255921',
country: 'CN',
city: 'Shenyang',
lat: '41.79222',
name: 'Shenyang, CN',
lon: '123.43278'
},
{
population: '22315474',
country: 'CN',
city: 'Shanghai',
lat: '31.22222',
name: 'Shanghai, CN',
lon: '121.45806'
},
{
population: '11716620',
country: 'CN',
city: 'Beijing',
lat: '39.9075',
name: 'Beijing, CN',
lon: '116.39723'
},
{
population: '11071424',
country: 'CN',
city: 'Guangzhou',
lat: '23.11667',
name: 'Guangzhou, CN',
lon: '113.25'
},
{
population: '6501190',
country: 'CN',
city: "Xi'an",
lat: '34.25833',
name: "Xi'an, CN",
lon: '108.92861'
},
{
population: '8540121',
country: 'ID',
city: 'Jakarta',
lat: '-6.21462',
name: 'Jakarta, ID',
lon: '106.84513'
},
{
population: '7415590',
country: 'CN',
city: 'Chengdu',
lat: '30.66667',
name: 'Chengdu, CN',
lon: '104.06667'
},
{
population: '5104476',
country: 'TH',
city: 'Bangkok',
lat: '13.75398',
name: 'Bangkok, TH',
lon: '100.50144'
},
{
population: '4477638',
country: 'MM',
city: 'Yangon',
lat: '16.80528',
name: 'Yangon, MM',
lon: '96.15611'
},
{
population: '10356500',
country: 'BD',
city: 'Dhaka',
lat: '23.7104',
name: 'Dhaka, BD',
lon: '90.40744'
},
{
population: '4631392',
country: 'IN',
city: 'Kolkata',
lat: '22.56263',
name: 'Kolkata, IN',
lon: '88.36304'
},
{
population: '1599920',
country: 'IN',
city: 'Patna',
lat: '25.61538',
name: 'Patna, IN',
lon: '85.10103'
},
{
population: '4328063',
country: 'IN',
city: 'Chennai',
lat: '13.08784',
name: 'Chennai, IN',
lon: '80.27847'
},
{
population: '10927986',
country: 'IN',
city: 'Delhi',
lat: '28.65195',
name: 'Delhi, IN',
lon: '77.23149'
},
{
population: '12691836',
country: 'IN',
city: 'Mumbai',
lat: '19.07283',
name: 'Mumbai, IN',
lon: '72.88261'
},
{
population: '3043532',
country: 'AF',
city: 'Kabul',
lat: '34.52813',
name: 'Kabul, AF',
lon: '69.17233'
},
{
population: '11624219',
country: 'PK',
city: 'Karachi',
lat: '24.9056',
name: 'Karachi, PK',
lon: '67.0822'
},
{
population: '1062919',
country: 'RU',
city: 'Chelyabinsk',
lat: '55.15402',
name: 'Chelyabinsk, RU',
lon: '61.42915'
},
{
population: '2307177',
country: 'IR',
city: 'Mashhad',
lat: '36.31559',
name: 'Mashhad, IR',
lon: '59.56796'
},
{
population: '1137347',
country: 'AE',
city: 'Dubai',
lat: '25.0657',
name: 'Dubai, AE',
lon: '55.17128'
},
{
population: '44099591',
country: 'IR',
city: 'Godarzi It',
lat: '35.73328',
name: 'Godarzi It, IR',
lon: '51.30714'
},
{
population: '2600000',
country: 'IQ',
city: 'Basrah',
lat: '30.50852',
name: 'Basrah, IQ',
lon: '47.7804'
},
{
population: '7216000',
country: 'IQ',
city: 'Baghdad',
lat: '33.34058',
name: 'Baghdad, IQ',
lon: '44.40088'
},
{
population: '2065597',
country: 'IQ',
city: 'Al Mawsil Al Jadidah',
lat: '36.33306',
name: 'Al Mawsil Al Jadidah, IQ',
lon: '43.1049'
},
{
population: '10381222',
country: 'RU',
city: 'Moscow',
lat: '55.75222',
name: 'Moscow, RU',
lon: '37.61556'
},
{
population: '3517182',
country: 'TR',
city: 'Ankara',
lat: '39.91987',
name: 'Ankara, TR',
lon: '32.85427'
},
{
population: '11174257',
country: 'TR',
city: 'Istanbul',
lat: '41.01384',
name: 'Istanbul, TR',
lon: '28.94966'
},
{
population: '2500603',
country: 'TR',
city: 'Izmir',
lat: '38.41273',
name: 'Izmir, TR',
lon: '27.13838'
},
{
population: '1152556',
country: 'BG',
city: 'Sofia',
lat: '42.69751',
name: 'Sofia, BG',
lon: '23.32415'
},
{
population: '3433441',
country: 'ZA',
city: 'Cape Town',
lat: '-33.92584',
name: 'Cape Town, ZA',
lon: '18.42322'
},
{
population: '7785965',
country: 'CD',
city: 'Kinshasa',
lat: '-4.32758',
name: 'Kinshasa, CD',
lon: '15.31357'
},
{
population: '3426354',
country: 'DE',
city: 'Berlin',
lat: '52.52437',
name: 'Berlin, DE',
lon: '13.41053'
},
{
population: '3626068',
country: 'NG',
city: 'Kano',
lat: '12.00012',
name: 'Kano, NG',
lon: '8.51672'
},
{
population: '3565108',
country: 'NG',
city: 'Ibadan',
lat: '7.37756',
name: 'Ibadan, NG',
lon: '3.90591'
},
{
population: '9000000',
country: 'NG',
city: 'Lagos',
lat: '6.45407',
name: 'Lagos, NG',
lon: '3.39467'
},
{
population: '3677115',
country: 'CI',
city: 'Abidjan',
lat: '5.30966',
name: 'Abidjan, CI',
lon: '-4.01266'
},
{
population: '3144909',
country: 'MA',
city: 'Casablanca',
lat: '33.58831',
name: 'Casablanca, MA',
lon: '-7.61138'
},
{
population: '1871242',
country: 'GN',
city: 'Camayenne',
lat: '9.535',
name: 'Camayenne, GN',
lon: '-13.68778'
},
{
population: '2476400',
country: 'SN',
city: 'Dakar',
lat: '14.6937',
name: 'Dakar, SN',
lon: '-17.44406'
},
{
population: '118918',
country: 'IS',
city: 'Reykjavik',
lat: '64.13548',
name: 'Reykjavik, IS',
lon: '-21.89541'
},
{
population: '1478098',
country: 'BR',
city: 'Recife',
lat: '-8.05389',
name: 'Recife, BR',
lon: '-34.88111'
},
{
population: '2711840',
country: 'BR',
city: 'Salvador',
lat: '-12.97111',
name: 'Salvador, BR',
lon: '-38.51083'
},
{
population: '744512',
country: 'BR',
city: 'Teresina',
lat: '-5.08917',
name: 'Teresina, BR',
lon: '-42.80194'
},
{
population: '10021295',
country: 'BR',
city: 'Sao Paulo',
lat: '-23.5475',
name: 'Sao Paulo, BR',
lon: '-46.63611'
},
{
population: '2207718',
country: 'BR',
city: 'Brasilia',
lat: '-15.77972',
name: 'Brasilia, BR',
lon: '-47.92972'
},
{
population: '1718421',
country: 'BR',
city: 'Curitiba',
lat: '-25.42778',
name: 'Curitiba, BR',
lon: '-49.27306'
},
{
population: '471832',
country: 'BR',
city: 'Londrina',
lat: '-23.31028',
name: 'Londrina, BR',
lon: '-51.16278'
},
{
population: '1372741',
country: 'BR',
city: 'Porto Alegre',
lat: '-30.03306',
name: 'Porto Alegre, BR',
lon: '-51.23'
},
{
population: '729151',
country: 'BR',
city: 'Campo Grande',
lat: '-20.44278',
name: 'Campo Grande, BR',
lon: '-54.64639'
},
{
population: '1270737',
country: 'UY',
city: 'Montevideo',
lat: '-34.90328',
name: 'Montevideo, UY',
lon: '-56.18816'
},
{
population: '13076300',
country: 'AR',
city: 'Buenos Aires',
lat: '-34.61315',
name: 'Buenos Aires, AR',
lon: '-58.37723'
},
{
population: '1598210',
country: 'BR',
city: 'Manaus',
lat: '-3.10194',
name: 'Manaus, BR',
lon: '-60.025'
},
{
population: '1364389',
country: 'BO',
city: 'Santa Cruz De La Sierra',
lat: '-17.78629',
name: 'Santa Cruz De La Sierra, BO',
lon: '-63.18117'
},
{
population: '1428214',
country: 'AR',
city: 'Cordoba',
lat: '-31.4135',
name: 'Cordoba, AR',
lon: '-64.18105'
},
{
population: '3000000',
country: 'VE',
city: 'Caracas',
lat: '10.48801',
name: 'Caracas, VE',
lon: '-66.87919'
},
{
population: '1754256',
country: 'VE',
city: 'Maracay',
lat: '10.23535',
name: 'Maracay, VE',
lon: '-67.59113'
},
{
population: '4837295',
country: 'CL',
city: 'Santiago',
lat: '-33.45694',
name: 'Santiago, CL',
lon: '-70.64827'
},
{
population: '2225000',
country: 'VE',
city: 'Maracaibo',
lat: '10.66663',
name: 'Maracaibo, VE',
lon: '-71.61245'
},
{
population: '8175133',
country: 'US',
city: 'New York City',
lat: '40.71427',
name: 'New York City, US',
lon: '-74.00597'
},
{
population: '7674366',
country: 'CO',
city: 'Bogota',
lat: '4.60971',
name: 'Bogota, CO',
lon: '-74.08175'
},
{
population: '3000000',
country: 'JM',
city: "Fitzroy's Elecctronics",
lat: '17.98234',
name: "Fitzroy's Elecctronics, JM",
lon: '-76.86918'
},
{
population: '7737002',
country: 'PE',
city: 'Lima',
lat: '-12.04318',
name: 'Lima, PE',
lon: '-77.02824'
},
{
population: '2600000',
country: 'CA',
city: 'Toronto',
lat: '43.70011',
name: 'Toronto, CA',
lon: '-79.4163'
},
{
population: '2163824',
country: 'CU',
city: 'Havana',
lat: '23.13302',
name: 'Havana, CU',
lon: '-82.38304'
},
{
population: '829718',
country: 'US',
city: 'Indianapolis',
lat: '39.76838',
name: 'Indianapolis, US',
lon: '-86.15804'
},
{
population: '973087',
country: 'NI',
city: 'Managua',
lat: '12.13282',
name: 'Managua, NI',
lon: '-86.2504'
},
{
population: '850848',
country: 'HN',
city: 'Tegucigalpa',
lat: '14.0818',
name: 'Tegucigalpa, HN',
lon: '-87.20681'
},
{
population: '2695598',
country: 'US',
city: 'Chicago',
lat: '41.85003',
name: 'Chicago, US',
lon: '-87.65005'
},
{
population: '646889',
country: 'US',
city: 'Memphis',
lat: '35.14953',
name: 'Memphis, US',
lon: '-90.04898'
},
{
population: '994938',
country: 'GT',
city: 'Guatemala City',
lat: '14.64072',
name: 'Guatemala City, GT',
lon: '-90.51327'
},
{
population: '2099451',
country: 'US',
city: 'Houston',
lat: '29.76328',
name: 'Houston, US',
lon: '-95.36327'
},
{
population: '1197816',
country: 'US',
city: 'Dallas',
lat: '32.78306',
name: 'Dallas, US',
lon: '-96.80667'
},
{
population: '1820888',
country: 'MX',
city: 'Iztapalapa',
lat: '19.35738',
name: 'Iztapalapa, MX',
lon: '-99.0671'
},
{
population: '12294193',
country: 'MX',
city: 'Mexico City',
lat: '19.42847',
name: 'Mexico City, MX',
lon: '-99.12766'
},
{
population: '1114626',
country: 'MX',
city: 'Leon',
lat: '21.13052',
name: 'Leon, MX',
lon: '-101.671'
},
{
population: '1640589',
country: 'MX',
city: 'Guadalajara',
lat: '20.66682',
name: 'Guadalajara, MX',
lon: '-103.39182'
},
{
population: '809232',
country: 'MX',
city: 'Chihuahua',
lat: '28.63528',
name: 'Chihuahua, MX',
lon: '-106.08889'
},
{
population: '1512354',
country: 'MX',
city: 'Ciudad Juarez',
lat: '31.73333',
name: 'Ciudad Juarez, MX',
lon: '-106.48333'
},
{
population: '520116',
country: 'US',
city: 'Tucson',
lat: '32.22174',
name: 'Tucson, US',
lon: '-110.92648'
},
{
population: '595811',
country: 'MX',
city: 'Hermosillo',
lat: '29.1026',
name: 'Hermosillo, MX',
lon: '-110.97732'
},
{
population: '1445632',
country: 'US',
city: 'Phoenix',
lat: '33.44838',
name: 'Phoenix, US',
lon: '-112.07404'
},
{
population: '1019942',
country: 'CA',
city: 'Calgary',
lat: '51.05011',
name: 'Calgary, CA',
lon: '-114.08529'
},
{
population: '1376457',
country: 'MX',
city: 'Tijuana',
lat: '32.5027',
name: 'Tijuana, MX',
lon: '-117.00371'
},
{
population: '3792621',
country: 'US',
city: 'Los Angeles',
lat: '34.05223',
name: 'Los Angeles, US',
lon: '-118.24368'
},
{
population: '945942',
country: 'US',
city: 'San Jose',
lat: '37.33939',
name: 'San Jose, US',
lon: '-121.89496'
},
{
population: '608660',
country: 'US',
city: 'Seattle',
lat: '47.60621',
name: 'Seattle, US',
lon: '-122.33207'
},
{
population: '805235',
country: 'US',
city: 'San Francisco',
lat: '37.77493',
name: 'San Francisco, US',
lon: '-122.41942'
},
{
population: '600000',
country: 'CA',
city: 'Vancouver',
lat: '49.24966',
name: 'Vancouver, CA',
lon: '-123.11934'
},
{
population: '291826',
country: 'US',
city: 'Anchorage',
lat: '61.21806',
name: 'Anchorage, US',
lon: '-149.90028'
},
{
population: '371657',
country: 'US',
city: 'Honolulu',
lat: '21.30694',
name: 'Honolulu, US',
lon: '-157.85833'
}
]
})
define([], () => {
function valueOpacity(value, value_max) {
if (value == null) {
value = 1
}
return Math.log(value) / Math.log(value_max) * 0.6 + 0.3
}
function valueRgb(value, value_max) {
if (value == null) {
value = 1
} else if (value <= 0.000001) {
value = 0.000001
}
const temp = Math.log(value) / Math.log(value_max);
//var hue = (360*(4+5+temp/8))%360;
const hue = temp * 0.7 + 0.5; //value;
const sat = 1;
const bri = 1;
// return "hsl("+hue+",100%,100%)";
// bri = .80*temp+.20;
//var color = "hsl("+hue+","+(100*sat)+"%,"+(100*bri)+"%)";
const rgb = hsvRgb(hue, sat, bri);
for (let i = 0; i < 3; i++) {
rgb[i] = rgb[i].toString(16)
while (rgb[i].length < 2) {
rgb[i] = `0${rgb[i]}`
}
}
const color = `#${rgb[0]}${rgb[1]}${rgb[2]}`;
return color
}
function hsvRgb(hue, sat, bri) {
let h = hue;
let s = sat;
let v = bri;
let r;
let g;
let b;
let i;
let f;
let p;
let q;
let t;
if (arguments.length === 1) {
;(s = h.s), (v = h.v), (h = h.h)
}
i = Math.floor(h * 6)
f = h * 6 - i
p = v * (1 - s)
q = v * (1 - f * s)
t = v * (1 - (1 - f) * s)
switch (i % 6) {
case 0:
;(r = v), (g = t), (b = p)
break
case 1:
;(r = q), (g = v), (b = p)
break
case 2:
;(r = p), (g = v), (b = t)
break
case 3:
;(r = p), (g = q), (b = v)
break
case 4:
;(r = t), (g = p), (b = v)
break
case 5:
;(r = v), (g = p), (b = q)
break
}
const rgb = [Math.round(r * 255), Math.round(g * 255), Math.round(b * 255)];
return rgb
}
return {
valueRgb,
valueOpacity
}
})
This file has been truncated, but you can view the full file.
{
"ases": [
{
"country": "US",
"orgName": "Qwest Communications Company, LLC",
"lat": 40.3664740686124,
"lon": -100.212673737156,
"asn": 209,
"customerConeSize": 3455
},
{
"country": "DE",
"orgName": "Deutsche Telekom AG",
"lat": 50.4623885482079,
"lon": 9.67597175146201,
"asn": 3320,
"customerConeSize": 3861
},
{
"country": "US",
"orgName": "Level 3 Communications, Inc.",
"lat": 40.1244055180577,
"lon": -96.3215075150665,
"asn": 3356,
"customerConeSize": 25879
},
{
"country": "US",
"orgName": "TATA COMMUNICATIONS (AMERICA) INC",
"lat": 58.1746462046415,
"lon": -44.7066542962368,
"asn": 6453,
"customerConeSize": 10354
},
{
"country": "US",
"orgName": "Synertech Systems",
"lat": 39.022,
"lon": -94.4645,
"asn": 19455,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "KDDI CORPORATION",
"lat": 35.6494239131322,
"lon": 138.252298104726,
"asn": 2516,
"customerConeSize": 884
},
{
"country": "US",
"orgName": "Intermountain Health Care",
"lat": 40.6982991397455,
"lon": -112.013548018961,
"asn": 11052,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Herbalife International of America, Inc.",
"lat": 33.838,
"lon": -118.293,
"asn": 55099,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Savvis",
"lat": 43.2646411461089,
"lon": -91.3799733886231,
"asn": 3561,
"customerConeSize": 827
},
{
"country": "US",
"orgName": "Bank of America",
"lat": 42.7333052893676,
"lon": -90.1721729846663,
"asn": 33730,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Eweka Internet Services B.V.",
"lat": 52.3052577024883,
"lon": -71.3543233534246,
"asn": 12989,
"customerConeSize": 574
},
{
"country": "US",
"orgName": "Oregon Mutual Insurance Company",
"lat": 45.0985,
"lon": -123.207,
"asn": 54399,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Charter Communications",
"lat": 39.6090927709694,
"lon": -92.6931130541142,
"asn": 20115,
"customerConeSize": 302
},
{
"country": "US",
"orgName": "Vail Systems",
"lat": 41.3544478918867,
"lon": -92.2712452169841,
"asn": 19067,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Qwest Communications Company, LLC",
"lat": 37.1831003814437,
"lon": -91.6306443081703,
"asn": 22561,
"customerConeSize": 192
},
{
"country": "US",
"orgName": "Dell, Inc.",
"lat": 37.4263524865442,
"lon": -89.9613705011934,
"asn": 30614,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Internap Network Services Corporation",
"lat": 41.0835503846893,
"lon": -77.2491313824443,
"asn": 13789,
"customerConeSize": 171
},
{
"country": "US",
"orgName": "ENV",
"lat": 38.9498,
"lon": -77.0156,
"asn": 54922,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DoD Network Information Center",
"lat": 39.1298544514149,
"lon": -91.9748890369252,
"asn": 721,
"customerConeSize": 164
},
{
"country": "US",
"orgName": "ARMLS",
"lat": 33.777311648054,
"lon": -115.118217503977,
"asn": 11953,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Limelight Networks, Inc.",
"lat": 46.0308543255282,
"lon": -96.0747858417544,
"asn": 22822,
"customerConeSize": 152
},
{
"country": "US",
"orgName": "Bloomberg, LP",
"lat": 41.648206700854,
"lon": -72.7111469358935,
"asn": 10361,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Internap Network Services Corporation",
"lat": 49.7554772282924,
"lon": 142.648371552273,
"asn": 12182,
"customerConeSize": 134
},
{
"country": "US",
"orgName": "ALTICOR INC",
"lat": 42.9490682369164,
"lon": -85.4649270661499,
"asn": 11870,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Fibertech Networks, LLC",
"lat": 42.7803956812405,
"lon": -73.7835284884817,
"asn": 16657,
"customerConeSize": 128
},
{
"country": "US",
"orgName": "Albuquerque Public Schools",
"lat": 35.079366483813,
"lon": -106.616127630711,
"asn": 54249,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "US Signal Company, L.L.C.",
"lat": 42.6133634100022,
"lon": -85.6747976337193,
"asn": 26554,
"customerConeSize": 116
},
{
"country": "US",
"orgName": "Clean Harbors Environmental Services, Inc.",
"lat": 42.4076037133858,
"lon": -79.6379421226621,
"asn": 54036,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "California State University Network",
"lat": 35.7230520410887,
"lon": -119.61957569818,
"asn": 2152,
"customerConeSize": 98
},
{
"country": "US",
"orgName": "Document Systems, Inc.",
"lat": 33.8313,
"lon": -118.238,
"asn": 14937,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Internap Network Services Corporation",
"lat": 40.6846751708476,
"lon": -80.702524952694,
"asn": 10913,
"customerConeSize": 97
},
{
"country": "CA",
"orgName": "Questrade Inc.",
"lat": 43.787,
"lon": -79.4169,
"asn": 54167,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Internap Network Services Corporation",
"lat": 37.9840365144789,
"lon": -92.767781223271,
"asn": 12179,
"customerConeSize": 91
},
{
"country": "US",
"orgName": "SECURITY EQUPMENT INC",
"lat": 41.2332,
"lon": -96.1137,
"asn": 53915,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "BRIGHT HOUSE NETWORKS, LLC",
"lat": 29.761530800616,
"lon": -82.9808577479756,
"asn": 33363,
"customerConeSize": 81
},
{
"country": "US",
"orgName": "Cooperative Communications Inc.",
"lat": 40.7239161719254,
"lon": -74.2058915121602,
"asn": 25606,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "ViaWest",
"lat": 40.2552337566303,
"lon": -107.842385889869,
"asn": 13649,
"customerConeSize": 70
},
{
"country": "US",
"orgName": "Telecommunication Systems, Inc.",
"lat": 46.9296616842602,
"lon": -122.333792705656,
"asn": 32312,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Internap Network Services Corporation",
"lat": 42.2695064113361,
"lon": -72.1902862190691,
"asn": 14742,
"customerConeSize": 65
},
{
"country": "US",
"orgName": "St. Cloud Hospital",
"lat": 45.5838,
"lon": -94.2037,
"asn": 17164,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "SINAP-TIX, LLC",
"lat": 37.2316856467182,
"lon": -119.760515301361,
"asn": 22911,
"customerConeSize": 63
},
{
"country": "US",
"orgName": "Deseret Digital Media, Inc.",
"lat": 40.7451616308417,
"lon": -110.826978116378,
"asn": 11319,
"customerConeSize": 1
},
{
"country": "MX",
"orgName": "Operbes, S.A. de C.V.",
"lat": 20.7365075264834,
"lon": -98.7617805629172,
"asn": 18734,
"customerConeSize": 61
},
{
"country": "US",
"orgName": "CenterBeam, Inc.",
"lat": 37.0093515110504,
"lon": -121.432734858771,
"asn": 19272,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "SunGard Availability Services LP",
"lat": 39.1906648804076,
"lon": -88.5783741942146,
"asn": 7381,
"customerConeSize": 61
},
{
"country": "US",
"orgName": "Management & Training Corporation",
"lat": 40.8983002114857,
"lon": -111.884002811415,
"asn": 27480,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "OARnet",
"lat": 40.3651762432617,
"lon": -83.8258633984157,
"asn": 600,
"customerConeSize": 59
},
{
"country": "US",
"orgName": "Adtran, Inc.",
"lat": 34.6520938016802,
"lon": -86.8304424175787,
"asn": 25739,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Internap Network Services Corporation",
"lat": 38.257604936235,
"lon": -92.2195730319062,
"asn": 14745,
"customerConeSize": 56
},
{
"country": "US",
"orgName": "Mountain America Credit Union",
"lat": 40.6109700836423,
"lon": -111.978133407242,
"asn": 17206,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Visionary Communications, Inc.",
"lat": 42.0066532366329,
"lon": -106.468837226947,
"asn": 10835,
"customerConeSize": 55
},
{
"country": "US",
"orgName": "LL Bean",
"lat": 43.8713094400982,
"lon": -70.1112191532047,
"asn": 31869,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CONTINENTAL BROADBAND PENNSYLVANIA, INC.",
"lat": 39.1791724139581,
"lon": -81.3885893092409,
"asn": 17054,
"customerConeSize": 53
},
{
"country": "US",
"orgName": "Icarz, Inc",
"lat": 40.9289037085681,
"lon": -74.6093486115972,
"asn": 19865,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "LS Networks",
"lat": 44.4091090660238,
"lon": -122.900683344755,
"asn": 25899,
"customerConeSize": 50
},
{
"country": "US",
"orgName": "DALLAS COUNTY SCHOOLS",
"lat": 32.7386818654615,
"lon": -96.8830569663516,
"asn": 19581,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Qwest Communications Company, LLC",
"lat": 60.6539068663358,
"lon": 18.1750697443965,
"asn": 3910,
"customerConeSize": 49
},
{
"country": "DE",
"orgName": "Infineon AG",
"lat": 48.0841033198594,
"lon": 11.6474219127105,
"asn": 25432,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "BHARTI Airtel Ltd.",
"lat": 24.7151889758232,
"lon": 76.7412331871378,
"asn": 9498,
"customerConeSize": 1395
},
{
"country": "DE",
"orgName": "Miltenyi Biotec GmbH",
"lat": 51.4879,
"lon": 7.36459,
"asn": 57911,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "ENERCON GmbH",
"lat": 53.4582,
"lon": 7.50987,
"asn": 49651,
"customerConeSize": 1
},
{
"country": "FR",
"orgName": "COLT Technology Services Group Limited",
"lat": 48.3756347514214,
"lon": 4.50513534995336,
"asn": 8220,
"customerConeSize": 697
},
{
"country": "SG",
"orgName": "Leaseweb Asia Pacific pte. ltd.",
"lat": 12.5892443954994,
"lon": 99.3061566638211,
"asn": 59253,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "GTS Czech s.r.o.",
"lat": 49.1587674038189,
"lon": 16.6741298167844,
"asn": 5588,
"customerConeSize": 666
},
{
"country": "DE",
"orgName": "TUEVRheinland Service GmbH",
"lat": 50.9373067209082,
"lon": 6.96027707239068,
"asn": 42249,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Express Teleservice Corp",
"lat": 68.7651994106092,
"lon": -32.634353733987,
"asn": 41625,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Telemar Norte Leste S.A.",
"lat": -19.5621989691867,
"lon": -42.9466190761531,
"asn": 7738,
"customerConeSize": 526
},
{
"country": "DE",
"orgName": "Robert Bosch GMBH",
"lat": 48.8045708483699,
"lon": 9.21492509226652,
"asn": 9183,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Swisscom (Switzerland) Ltd",
"lat": 47.1456438280292,
"lon": 7.82223254679966,
"asn": 3303,
"customerConeSize": 493
},
{
"country": "DE",
"orgName": "TBits.net GmbH",
"lat": 48.8126557535024,
"lon": 9.78171553427709,
"asn": 51417,
"customerConeSize": 1
},
{
"country": "CN",
"orgName": "China Telecom Next Generation Carrier Network",
"lat": 33.5026445062044,
"lon": 113.443703145554,
"asn": 4809,
"customerConeSize": 386
},
{
"country": "DE",
"orgName": "Giesecke & Devrient GmbH",
"lat": 48.1409,
"lon": 11.5691,
"asn": 20572,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "ROMTelecom S.A.",
"lat": 45.2164799123491,
"lon": 25.618273138342,
"asn": 9050,
"customerConeSize": 379
},
{
"country": "US",
"orgName": "Retail Data, LLC",
"lat": 37.4524,
"lon": -77.4762,
"asn": 36346,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Level 3 Communications, Inc.",
"lat": 31.7645499253959,
"lon": -73.0654721318316,
"asn": 3549,
"customerConeSize": 6624
},
{
"country": "US",
"orgName": "Harris Government Systems Sector",
"lat": 31.2741124227253,
"lon": -80.4868791182427,
"asn": 243,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Beyond The Network America, Inc.",
"lat": 43.1783445625911,
"lon": -88.1506896906646,
"asn": 3491,
"customerConeSize": 6407
},
{
"country": "US",
"orgName": "Saber Healthcare Group LLC",
"lat": 41.3867,
"lon": -81.5271,
"asn": 13697,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "Cable and Wireless Worldwide plc",
"lat": 52.4739099023046,
"lon": 10.0987496682816,
"asn": 1273,
"customerConeSize": 5265
},
{
"country": "US",
"orgName": "Adm Investor Services, Inc",
"lat": 41.6882010982164,
"lon": -83.0512336030936,
"asn": 26694,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Closed Joint Stock Company TransTeleCom",
"lat": 61.0061616144185,
"lon": 46.9425296165071,
"asn": 20485,
"customerConeSize": 3460
},
{
"country": "US",
"orgName": "Consolidated Edison Co. of New York, Inc.",
"lat": 40.7332572362582,
"lon": -73.9896974866164,
"asn": 1932,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "RETN Limited",
"lat": 56.0413667373668,
"lon": 15.8518277906495,
"asn": 9002,
"customerConeSize": 3321
},
{
"country": "US",
"orgName": "SS&C Technologies, Inc.",
"lat": 41.4249312072012,
"lon": -73.1931095914254,
"asn": 13938,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "tw telecom holdings, inc.",
"lat": 38.1964714259321,
"lon": -96.4411741129958,
"asn": 4323,
"customerConeSize": 2452
},
{
"country": "US",
"orgName": "ANSYS, INC",
"lat": 40.3833,
"lon": -80.0667,
"asn": 53465,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OJSC \"Vimpelcom\"",
"lat": 55.6092946815363,
"lon": 43.7748128393923,
"asn": 3216,
"customerConeSize": 2127
},
{
"country": "US",
"orgName": "Cybernet Entertainment, LLC",
"lat": 37.7749003121644,
"lon": -122.413249661821,
"asn": 40125,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "MTS OJSC",
"lat": 55.6044360367425,
"lon": 36.8065048037098,
"asn": 8359,
"customerConeSize": 1867
},
{
"country": "US",
"orgName": "P&S Credit Management, L.P.",
"lat": 40.7423,
"lon": -73.9879,
"asn": 62850,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OJSC MegaFon",
"lat": 53.8491156314835,
"lon": 48.2241258356325,
"asn": 31133,
"customerConeSize": 1707
},
{
"country": "US",
"orgName": "jackson lewis p.c.",
"lat": 40.7996,
"lon": -73.9703,
"asn": 54100,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Trust Company of America",
"lat": 39.5613883026647,
"lon": -104.879892941563,
"asn": 27459,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CJSC Rascom, St.Petersburg, Russia",
"lat": 58.4899140823133,
"lon": 33.092925117132,
"asn": 20764,
"customerConeSize": 1116
},
{
"country": "KR",
"orgName": "SK Broadband ( formely as Hanaro Telecom Inc.)",
"lat": 37.393985530624,
"lon": 127.088813785596,
"asn": 9318,
"customerConeSize": 1066
},
{
"country": "US",
"orgName": "Robert Morris University",
"lat": 40.5217178208553,
"lon": -80.1417312750326,
"asn": 23102,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Filanco, ltd.",
"lat": 57.0716150584834,
"lon": 34.5291601547614,
"asn": 29076,
"customerConeSize": 1053
},
{
"country": "US",
"orgName": "APL Limited",
"lat": 34.3268821165074,
"lon": -110.486243291573,
"asn": 40155,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Reliance Globalcom Limited",
"lat": 49.4307712242128,
"lon": 15.0533744567532,
"asn": 15412,
"customerConeSize": 1025
},
{
"country": "US",
"orgName": "Yale University",
"lat": 41.3086,
"lon": -72.9258,
"asn": 29,
"customerConeSize": 1
},
{
"country": "AP",
"orgName": "Pacnet Global Ltd",
"lat": 20.5615228888808,
"lon": 122.049691722556,
"asn": 10026,
"customerConeSize": 920
},
{
"country": "US",
"orgName": "Echostar Holding Purchasing Corporation",
"lat": 40.2262224813398,
"lon": -91.0315784152913,
"asn": 16535,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "PRIVATE JOINT STOCK COMPANY \"DATAGROUP\"",
"lat": 49.9893225027943,
"lon": 31.2530698677209,
"asn": 21219,
"customerConeSize": 885
},
{
"country": "US",
"orgName": "Lafayette College",
"lat": 40.6859,
"lon": -75.2408,
"asn": 22198,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Computer Sciences Corporation",
"lat": 40.0065339465161,
"lon": -77.6505603434983,
"asn": 1810,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Atrato Communications, Inc.",
"lat": 53.0596266044609,
"lon": 4.45289022921788,
"asn": 5580,
"customerConeSize": 846
},
{
"country": "US",
"orgName": "Skout, Inc.",
"lat": 37.7215,
"lon": -122.44,
"asn": 393372,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "JSC \"TRC FIORD\"",
"lat": 55.7729642276252,
"lon": 38.2123315789436,
"asn": 28917,
"customerConeSize": 809
},
{
"country": "US",
"orgName": "Discover Financial Services",
"lat": 42.1679389840932,
"lon": -87.8853913303755,
"asn": 12147,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Liberty Global Operations B.V.",
"lat": 49.924934639417,
"lon": 13.0182456066815,
"asn": 6830,
"customerConeSize": 745
},
{
"country": "US",
"orgName": "Integral Development Corp.",
"lat": 40.7117844357703,
"lon": -107.050567789265,
"asn": 14610,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "ICF SYSTEMS AG",
"lat": 50.1179,
"lon": 8.66358,
"asn": 197334,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Geisinger System Services",
"lat": 40.9588762579905,
"lon": -76.6084958865876,
"asn": 29899,
"customerConeSize": 1
},
{
"country": "PT",
"orgName": "PT Comunicacoes S A",
"lat": 16.9814652945727,
"lon": -13.4235332995264,
"asn": 8657,
"customerConeSize": 592
},
{
"country": "US",
"orgName": "Euro RSCG Worldwide, LLC",
"lat": 40.036,
"lon": -75.1194,
"asn": 22961,
"customerConeSize": 1
},
{
"country": "CN",
"orgName": "No.31,Jin-rong Street",
"lat": 32.7748908462658,
"lon": 113.435553728061,
"asn": 4134,
"customerConeSize": 572
},
{
"country": "GB",
"orgName": "Spectrum Interactive Ltd",
"lat": 52.6187267546243,
"lon": -1.34735330450195,
"asn": 199455,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "ATM S.A.",
"lat": 52.9167221749814,
"lon": 20.2331627770299,
"asn": 24724,
"customerConeSize": 553
},
{
"country": "US",
"orgName": "Roper Saint Francis Healthcare",
"lat": 32.7936269129411,
"lon": -79.8646165155714,
"asn": 63249,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Moscow Telecommunication Corporation (COMCOR)",
"lat": 55.7248150764112,
"lon": 37.3809849457005,
"asn": 8732,
"customerConeSize": 539
},
{
"country": "US",
"orgName": "Delex Systems Inc",
"lat": 38.9598673016059,
"lon": -77.4675693360467,
"asn": 36858,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Vodafone GmbH",
"lat": 50.8249455234752,
"lon": 9.33646535757503,
"asn": 3209,
"customerConeSize": 481
},
{
"country": "US",
"orgName": "VeriSign Global Registry Services",
"lat": 67.7969372929817,
"lon": -80.7515791237253,
"asn": 36616,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Cox Communications Inc.",
"lat": 36.1861024010655,
"lon": -99.5517736387569,
"asn": 22773,
"customerConeSize": 479
},
{
"country": "US",
"orgName": "ClearBlue Technologies",
"lat": 42.4256586794793,
"lon": -71.5139653654267,
"asn": 5067,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "LeaseWeb B.V.",
"lat": 51.5093307753407,
"lon": 6.52507656363089,
"asn": 16265,
"customerConeSize": 444
},
{
"country": "US",
"orgName": "iostudio, LLC",
"lat": 36.0752,
"lon": -86.7207,
"asn": 55137,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Cablevision Systems Corp.",
"lat": 40.842404389006,
"lon": -73.7660842344403,
"asn": 6128,
"customerConeSize": 434
},
{
"country": "FR",
"orgName": "Xplorium France SARL",
"lat": 48.8602,
"lon": 2.34107,
"asn": 43439,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "WARNER BROS ENTERTAINMENT INC",
"lat": 40.2601737269191,
"lon": -97.9112189057976,
"asn": 36032,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Grange Mutual Casualty Co.",
"lat": 40.0042823405585,
"lon": -82.9336518708465,
"asn": 32182,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "DANTE Ltd",
"lat": 52.27674701662,
"lon": -1.11011616191653,
"asn": 20965,
"customerConeSize": 372
},
{
"country": "US",
"orgName": "Burton Snowboards",
"lat": 44.5481593808202,
"lon": -73.2154284091729,
"asn": 62944,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "Turk Telekomunikasyon Anonim Sirketi",
"lat": 39.8177411808069,
"lon": 31.1451016455289,
"asn": 9121,
"customerConeSize": 342
},
{
"country": "CA",
"orgName": "Postmedia Network Inc",
"lat": 50.0977877935426,
"lon": -99.6648330699113,
"asn": 18588,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "\"TOP NET\" PJSC",
"lat": 50.2067325221745,
"lon": 31.1965912145401,
"asn": 21011,
"customerConeSize": 337
},
{
"country": "US",
"orgName": "Briefing.com",
"lat": 41.8942,
"lon": -87.6228,
"asn": 36419,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Lightower Fiber Networks",
"lat": 41.2409947760384,
"lon": -73.8964123471592,
"asn": 46887,
"customerConeSize": 327
},
{
"country": "DE",
"orgName": "OMCnet Internet Service GmbH",
"lat": 53.5846264274328,
"lon": 9.89859619380443,
"asn": 15388,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "EMPRESA BRASILEIRA DE TELECOMUNICAÇÕES SA-EMBRATEL",
"lat": -20.7833729119179,
"lon": -44.3479833147935,
"asn": 4230,
"customerConeSize": 327
},
{
"country": "US",
"orgName": "Congressional Budget Office",
"lat": 38.8905611383339,
"lon": -77.0238005695047,
"asn": 2274,
"customerConeSize": 1
},
{
"country": "MY",
"orgName": "TM Net, Internet Service Provider",
"lat": 3.6668097438173,
"lon": 102.66943397315,
"asn": 4788,
"customerConeSize": 321
},
{
"country": "US",
"orgName": "Carpathia Hosting, Inc.",
"lat": 39.0191,
"lon": -77.461,
"asn": 46742,
"customerConeSize": 1
},
{
"country": "OM",
"orgName": "General Telecommunication Organization",
"lat": 55.3272184911135,
"lon": 18.2720195335203,
"asn": 8529,
"customerConeSize": 319
},
{
"country": "US",
"orgName": "BUDCO",
"lat": 40.4297,
"lon": -74.4073,
"asn": 14208,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Core-Backbone GmbH",
"lat": 50.5287429781277,
"lon": 8.72304955102247,
"asn": 33891,
"customerConeSize": 313
},
{
"country": "US",
"orgName": "ALEXION PHARMACEUTICALS INC.",
"lat": 41.5042,
"lon": -72.9064,
"asn": 55029,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "State Institute of Information Technologies and Telecommunications (SIIT&T \"Informika\")",
"lat": 59.5503816371673,
"lon": 38.0593218174149,
"asn": 3267,
"customerConeSize": 312
},
{
"country": "US",
"orgName": "Troy Corporation",
"lat": 40.7686,
"lon": -74.1686,
"asn": 10919,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "British Telecommunications plc",
"lat": 54.1471670022869,
"lon": 5.3930032379197,
"asn": 5400,
"customerConeSize": 308
},
{
"country": "US",
"orgName": "AMA",
"lat": 37.7706,
"lon": -122.441,
"asn": 31968,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CarRentals LLC",
"lat": 41.7775,
"lon": -87.7093,
"asn": 54018,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Exatel S.A.",
"lat": 51.9788153832304,
"lon": 20.116585814002,
"asn": 20804,
"customerConeSize": 283
},
{
"country": "US",
"orgName": "Centric Group, LLC",
"lat": 38.6718,
"lon": -90.3775,
"asn": 11651,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Euroweb Romania S.A.",
"lat": 46.3623963102548,
"lon": 22.7232102950335,
"asn": 6663,
"customerConeSize": 282
},
{
"country": "US",
"orgName": "CARNIVAL CRUISE LINES",
"lat": 25.8997414334606,
"lon": -80.4146404936005,
"asn": 19727,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Fastweb SpA",
"lat": 44.0728561781828,
"lon": 10.8816959967559,
"asn": 12874,
"customerConeSize": 281
},
{
"country": "US",
"orgName": "Reynwood Communications, Inc.",
"lat": 40.3469006329436,
"lon": -74.1016785798779,
"asn": 30586,
"customerConeSize": 1
},
{
"country": "TW",
"orgName": "Taiwan Internet Gateway",
"lat": 34.5947367694352,
"lon": 133.308458588469,
"asn": 9505,
"customerConeSize": 269
},
{
"country": "GB",
"orgName": "Wavecrest (UK) Ltd",
"lat": 51.4162,
"lon": 0.07036,
"asn": 34407,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "TDC A/S",
"lat": 56.8320418040552,
"lon": 11.9406050812116,
"asn": 3292,
"customerConeSize": 260
},
{
"country": "US",
"orgName": "TREND MICRO INCORPORATED",
"lat": 42.6666980745574,
"lon": -120.18946434767,
"asn": 36421,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "PRIVATE JOINT-STOCK COMPANY \"FARLEP-INVEST\"",
"lat": 48.3858079458982,
"lon": 31.5386849630931,
"asn": 12883,
"customerConeSize": 253
},
{
"country": "US",
"orgName": "Bright Pattern, Inc",
"lat": 37.625,
"lon": -122.432,
"asn": 33411,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Columbus Networks USA, Inc.",
"lat": 13.7490261249184,
"lon": -75.0494098990051,
"asn": 23520,
"customerConeSize": 249
},
{
"country": "US",
"orgName": "Tudor Investment Corporation",
"lat": 45.674379433413,
"lon": -64.6523476581671,
"asn": 53276,
"customerConeSize": 1
},
{
"country": "AZ",
"orgName": "Delta Telecom LTD.",
"lat": 40.5788377917822,
"lon": 49.7393477341817,
"asn": 29049,
"customerConeSize": 247
},
{
"country": "US",
"orgName": "MM Internet, Inc.",
"lat": 33.9952692694791,
"lon": -118.100219390548,
"asn": 12028,
"customerConeSize": 1
},
{
"country": "ZA",
"orgName": "MWEB CONNECT (PROPRIETARY) LIMITED",
"lat": -32.2298240128671,
"lon": 21.2100410639229,
"asn": 10474,
"customerConeSize": 244
},
{
"country": "IL",
"orgName": "Xglobe Online LTD",
"lat": 49.8051304126065,
"lon": -40.6577908082762,
"asn": 199391,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "C48 Okhla Industrial Estate, New Delhi-110020",
"lat": 35.6160407286671,
"lon": 72.970494168606,
"asn": 55410,
"customerConeSize": 223
},
{
"country": "US",
"orgName": "OnyxLight Communications, Inc.",
"lat": 28.5342403652854,
"lon": -81.3641220828253,
"asn": 32015,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Integra Telecom, Inc.",
"lat": 42.3795612955897,
"lon": -113.147189427485,
"asn": 7385,
"customerConeSize": 223
},
{
"country": "GB",
"orgName": "Novosco Limited",
"lat": 54.5187752343562,
"lon": -5.86191627123963,
"asn": 8789,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "The Communications Authority of Thailand(CAT)",
"lat": 31.3453941854097,
"lon": 119.125415308783,
"asn": 4651,
"customerConeSize": 220
},
{
"country": "DE",
"orgName": "Hamburg Suedamerikanische Dampfschifffahrts-Gesellschaft KG",
"lat": 71.3366211285482,
"lon": -39.6347605422367,
"asn": 41707,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Open Peering BV trading as Joint Transit",
"lat": 52.1296768361586,
"lon": 4.49398488152718,
"asn": 24785,
"customerConeSize": 218
},
{
"country": "US",
"orgName": "Corinthian College",
"lat": 33.6968,
"lon": -117.87,
"asn": 32012,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Allstream Corp.",
"lat": 48.733351230047,
"lon": -91.2928987754023,
"asn": 15290,
"customerConeSize": 214
},
{
"country": "US",
"orgName": "Staples, Inc",
"lat": 39.8943275544476,
"lon": -105.070315809799,
"asn": 13954,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Bulgarian Telecommunication Company Plc.",
"lat": 42.747575321837,
"lon": 24.8774015753977,
"asn": 8866,
"customerConeSize": 207
},
{
"country": "US",
"orgName": "Yelp! Inc.",
"lat": 39.3674458923902,
"lon": -116.239435229538,
"asn": 33445,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT Telekomunikasi Indonesia",
"lat": 2.47718936929697,
"lon": 105.153422429982,
"asn": 7713,
"customerConeSize": 200
},
{
"country": "US",
"orgName": "Blue Coat Systems, Inc",
"lat": 58.4305456272267,
"lon": -113.03298197582,
"asn": 27471,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "WV FIBER",
"lat": 28.9046862391614,
"lon": -80.1449004311743,
"asn": 19151,
"customerConeSize": 198
},
{
"country": "US",
"orgName": "LVMH MOET HENNESSY LOUIS VUITTON",
"lat": 40.7537608559769,
"lon": -73.9759425362435,
"asn": 62928,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "IP-Only Networks AB",
"lat": 59.0413454941539,
"lon": 16.2592753895115,
"asn": 12552,
"customerConeSize": 193
},
{
"country": "US",
"orgName": "Sourcefire, Inc.",
"lat": 39.2210161631783,
"lon": -76.8801644113032,
"asn": 40590,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "JSC GLOBALNET",
"lat": 59.5827710252492,
"lon": 23.2069585545864,
"asn": 31500,
"customerConeSize": 192
},
{
"country": "GB",
"orgName": "Callagenix Limited",
"lat": 51.5147,
"lon": -0.08329,
"asn": 44824,
"customerConeSize": 1
},
{
"country": "LV",
"orgName": "LATTELEKOM-APOLLO",
"lat": 56.9029720528298,
"lon": 24.1550610943596,
"asn": 12578,
"customerConeSize": 191
},
{
"country": "US",
"orgName": "Crexendo Business Solutions, Inc.",
"lat": 35.864619858971,
"lon": -111.912703384035,
"asn": 54845,
"customerConeSize": 1
},
{
"country": "SG",
"orgName": "StarHub Internet Exchange",
"lat": 2.80446289666385,
"lon": 104.258841590175,
"asn": 4657,
"customerConeSize": 190
},
{
"country": "US",
"orgName": "INSIDE CONNECT CABLE LLC",
"lat": 40.0361163886984,
"lon": -86.1450080663842,
"asn": 31888,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "next layer Telekommunikationsdienstleistungs- GmbH",
"lat": 48.2031667780361,
"lon": 16.2212005381565,
"asn": 1764,
"customerConeSize": 188
},
{
"country": "US",
"orgName": "Gannett Supply Corp. - Portland, ME",
"lat": 39.065,
"lon": -76.9815,
"asn": 16429,
"customerConeSize": 1
},
{
"country": "ZA",
"orgName": "Internet Solutions",
"lat": -27.8778084646461,
"lon": 26.3229700135355,
"asn": 3741,
"customerConeSize": 181
},
{
"country": "US",
"orgName": "Oracle Corporation",
"lat": 52.1325563464185,
"lon": -2.57587499759803,
"asn": 4184,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Versatel Deutschland GmbH",
"lat": 51.6725378543049,
"lon": 9.12623386069991,
"asn": 8881,
"customerConeSize": 180
},
{
"country": "DZ",
"orgName": "SPA Anwarnet",
"lat": 36.6225511277006,
"lon": 3.10679410166786,
"asn": 36989,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Rogers Cable Communications Inc.",
"lat": 44.2156583779553,
"lon": -78.6064022475691,
"asn": 812,
"customerConeSize": 172
},
{
"country": "PH",
"orgName": "PLDT Subic Telecom, Inc.",
"lat": 14.1689840539158,
"lon": 121.152176179327,
"asn": 18114,
"customerConeSize": 1
},
{
"country": "ML",
"orgName": "Orange Mali SA",
"lat": 12.6653867668676,
"lon": -8.07041934524678,
"asn": 30985,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Treasury Wine Estates Americas",
"lat": 38.0134,
"lon": -122.549,
"asn": 18955,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OJSC Rostelecom",
"lat": 59.3179934893717,
"lon": 69.8135152946662,
"asn": 12389,
"customerConeSize": 2272
},
{
"country": "MZ",
"orgName": "Movitel, SA",
"lat": -25.9050371006183,
"lon": 32.596387165351,
"asn": 37342,
"customerConeSize": 1
},
{
"country": "SG",
"orgName": "Hogarth Worldwide Pte",
"lat": 1.30612,
"lon": 103.833,
"asn": 132242,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Comcast Cable Communications, Inc.",
"lat": 40.0536125351444,
"lon": -89.4620007951886,
"asn": 7922,
"customerConeSize": 1655
},
{
"country": "FR",
"orgName": "VIAPASS SAS",
"lat": 43.5509,
"lon": 7.01059,
"asn": 39206,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Mckinsey & Company",
"lat": 41.2234593014366,
"lon": -76.9174277110704,
"asn": 23047,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "Telstra Global",
"lat": 17.1639522619363,
"lon": 114.548461626046,
"asn": 4637,
"customerConeSize": 847
},
{
"country": "US",
"orgName": "Instart Logic, Inc",
"lat": 55.2902968769127,
"lon": -127.300910707875,
"asn": 33047,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Time Warner Cable Internet LLC",
"lat": 38.3358813065996,
"lon": -84.700316845212,
"asn": 7843,
"customerConeSize": 779
},
{
"country": "US",
"orgName": "Legrand North America, Inc.",
"lat": 41.938966353057,
"lon": -73.7202905456383,
"asn": 26252,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "Hutchison Global Communications",
"lat": 22.3104302352484,
"lon": 114.1891843176,
"asn": 9304,
"customerConeSize": 597
},
{
"country": "CA",
"orgName": "Utherverse Digital Inc.",
"lat": 49.2804,
"lon": -123.115,
"asn": 33169,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "TATA Communications formerly VSNL is Leading ISP",
"lat": 18.6659009590936,
"lon": 76.702084459635,
"asn": 4755,
"customerConeSize": 592
},
{
"country": "TW",
"orgName": "Qualcomm Inc",
"lat": 34.6965,
"lon": 135.491,
"asn": 132053,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "Rikkyo Gakuin Rikkyo University",
"lat": 35.7365,
"lon": 139.714,
"asn": 45685,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "Cable Networks Akita Co.,ltd.",
"lat": 39.7293134873437,
"lon": 140.09890184532,
"asn": 23783,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "SOFTBANK TELECOM Corp.",
"lat": 36.1121165996274,
"lon": 139.063798004563,
"asn": 4725,
"customerConeSize": 235
},
{
"country": "CA",
"orgName": "Genesys Laboratories Canada, Inc.",
"lat": 40.1752894264843,
"lon": -116.168292031704,
"asn": 23197,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "Future Commerce Co.,Ltd.",
"lat": 35.0096000030713,
"lon": 135.767500032971,
"asn": 38648,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "AT&T Global Network Services, LLC",
"lat": 45.3238590134993,
"lon": -86.4583402286206,
"asn": 2687,
"customerConeSize": 185
},
{
"country": "US",
"orgName": "DICK'S SPORTING GOODS INC",
"lat": 42.0575021342799,
"lon": -84.3200436659837,
"asn": 40026,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "The Goldman Sachs Group, Inc.",
"lat": 40.7414840594216,
"lon": -74.1784956646687,
"asn": 6195,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Service-now.com",
"lat": 38.9659787680589,
"lon": -131.688698184902,
"asn": 16839,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Datacash Group PLC",
"lat": 55.9499,
"lon": -3.33187,
"asn": 44366,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "TELUS Communications Inc.",
"lat": 51.4170139806282,
"lon": -111.912157502603,
"asn": 852,
"customerConeSize": 183
},
{
"country": "US",
"orgName": "ADP, INC.",
"lat": 42.0693793020536,
"lon": -89.8542094772591,
"asn": 40443,
"customerConeSize": 1
},
{
"country": "AE",
"orgName": "Emirates Telecommunications Corporation",
"lat": 53.1832414662764,
"lon": 1.53828828134945,
"asn": 8966,
"customerConeSize": 156
},
{
"country": "US",
"orgName": "Canaccord Genuity Inc.",
"lat": 47.9619431545508,
"lon": -91.8452503317659,
"asn": 32607,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "123.Net, Inc.",
"lat": 42.6156650156136,
"lon": -83.7379385470212,
"asn": 12129,
"customerConeSize": 59
},
{
"country": "US",
"orgName": "Naque IT",
"lat": 39.5481,
"lon": -119.734,
"asn": 23312,
"customerConeSize": 1
},
{
"country": "SG",
"orgName": "Singapore Telecommunications Ltd",
"lat": 38.1915213790237,
"lon": 102.097634358716,
"asn": 7473,
"customerConeSize": 1740
},
{
"country": "US",
"orgName": "Ultra Hosting",
"lat": 43.1200381956038,
"lon": -102.286383024039,
"asn": 14986,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Mega Colocation, Inc.",
"lat": 36.1346630634566,
"lon": -115.287662261286,
"asn": 13537,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Yeo & Yeo CPAs & Business Consultants",
"lat": 43.4209,
"lon": -83.9744,
"asn": 393483,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "vanoppen.biz LLC",
"lat": 47.2740573934617,
"lon": -121.97380025216,
"asn": 11404,
"customerConeSize": 242
},
{
"country": "US",
"orgName": "GROUP HEALTH COOPERATIVE OF SOUTH CENTRAL WISCONSIN",
"lat": 43.0742158873097,
"lon": -89.5111728920163,
"asn": 54619,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Crosslake Communications",
"lat": 46.4320768061514,
"lon": -93.9955338218313,
"asn": 30055,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Charter Communications",
"lat": 43.7264395457495,
"lon": -108.899710364336,
"asn": 33588,
"customerConeSize": 20
},
{
"country": "US",
"orgName": "Pyramid.Net",
"lat": 30.9171376681302,
"lon": -98.9021142539137,
"asn": 46479,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "NetNet",
"lat": 44.7356837085733,
"lon": -88.2179368396721,
"asn": 3663,
"customerConeSize": 12
},
{
"country": "US",
"orgName": "Ariens Company",
"lat": 44.1747,
"lon": -88.0655,
"asn": 32684,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CULR, LLC",
"lat": 34.6753556387951,
"lon": -82.6161222263221,
"asn": 2722,
"customerConeSize": 9
},
{
"country": "US",
"orgName": "Sonopress, LLC",
"lat": 35.6362223309424,
"lon": -82.5574377852793,
"asn": 22387,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Immedion, LLC",
"lat": 35.5248804706876,
"lon": -80.6218237346366,
"asn": 15085,
"customerConeSize": 9
},
{
"country": "US",
"orgName": "DerbyTech Computer Works",
"lat": 40.9093423040102,
"lon": -90.4780389577884,
"asn": 30200,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Embarq Corporation",
"lat": 28.6837453019388,
"lon": -82.5317490872098,
"asn": 2379,
"customerConeSize": 36
},
{
"country": "US",
"orgName": "Arkwest Communications Inc",
"lat": 35.0866561723544,
"lon": -93.4146629370189,
"asn": 36146,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Dazzee Integrations",
"lat": 36.6284,
"lon": -93.2076,
"asn": 29977,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Embarq Corporation",
"lat": 35.6652328698598,
"lon": -79.8569563951675,
"asn": 5778,
"customerConeSize": 15
},
{
"country": "US",
"orgName": "Fresh Direct, Inc.",
"lat": 40.7623124724508,
"lon": -73.9881669656071,
"asn": 26074,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Voxel Dot Net, Inc.",
"lat": 49.4146827209771,
"lon": -81.1993371904175,
"asn": 29791,
"customerConeSize": 135
},
{
"country": "US",
"orgName": "Group M Worldwide, LLC",
"lat": 40.7607828731988,
"lon": -73.98749920894,
"asn": 26470,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Internap Network Services Corporation",
"lat": 39.9994721207756,
"lon": -75.5333192437852,
"asn": 12178,
"customerConeSize": 30
},
{
"country": "US",
"orgName": "PALADYNE SYSTEMS, LLC",
"lat": 40.7497714456109,
"lon": -73.9752428841182,
"asn": 18608,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CERVALIS LLC",
"lat": 41.2393646200807,
"lon": -73.2692840730678,
"asn": 19479,
"customerConeSize": 8
},
{
"country": "US",
"orgName": "DoD Network Information Center",
"lat": 39.9777647150568,
"lon": -83.0407759158406,
"asn": 724,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "DoD Network Information Center",
"lat": 39.2481124228492,
"lon": -91.3783528089096,
"asn": 27064,
"customerConeSize": 139
},
{
"country": "US",
"orgName": "DoD Network Information Center",
"lat": 47.4784012711616,
"lon": -94.373488142121,
"asn": 27066,
"customerConeSize": 22
},
{
"country": "US",
"orgName": "RingCentral Inc",
"lat": 37.5465507169502,
"lon": -122.274833860682,
"asn": 40627,
"customerConeSize": 1
},
{
"country": "SG",
"orgName": "Limelight Networks Singapore",
"lat": 13.3450775702833,
"lon": 114.202327460717,
"asn": 38621,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "The Common Fund",
"lat": 41.0003226183565,
"lon": -88.7907479847382,
"asn": 22771,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "PayCycle Inc.",
"lat": 35.5305097598522,
"lon": -116.808740738294,
"asn": 40791,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Hotwire, Inc.",
"lat": 37.7924000010558,
"lon": -122.396499962149,
"asn": 25974,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Internap Network Services Corporation",
"lat": 38.068176990497,
"lon": -120.975520072944,
"asn": 14743,
"customerConeSize": 37
},
{
"country": "US",
"orgName": "Saint Francis Hospital and Medical Center",
"lat": 41.6103432699669,
"lon": -72.7526757485194,
"asn": 47072,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "vXchnge Operating, LLC",
"lat": 40.7856898117022,
"lon": -74.0550421517171,
"asn": 1277,
"customerConeSize": 5
},
{
"country": "US",
"orgName": "Burris Logistics",
"lat": 38.9035,
"lon": -75.4324,
"asn": 393473,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Community Hospitals, Indianapolis",
"lat": 39.971228908883,
"lon": -86.0366647166068,
"asn": 36373,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "IPR International, LLC.",
"lat": 40.0745765881737,
"lon": -75.2338164675588,
"asn": 26881,
"customerConeSize": 4
},
{
"country": "US",
"orgName": "Starnova LLC",
"lat": 42.9949,
"lon": -75.9704,
"asn": 15231,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Connecticut Hospital Assoc.",
"lat": 41.4716217934403,
"lon": -72.8325432025421,
"asn": 10583,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Mercury Network Corporation",
"lat": 43.5653859043789,
"lon": -84.5676681275978,
"asn": 13549,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Fidelity Access Networks, LLC",
"lat": 40.4934978714791,
"lon": -82.5084656145904,
"asn": 22958,
"customerConeSize": 12
},
{
"country": "US",
"orgName": "Fishbeck, Thompson, Carr & Huber, Inc.",
"lat": 42.9286,
"lon": -85.532,
"asn": 26510,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Centurion Medical Products Corporation",
"lat": 42.6772318359496,
"lon": -84.295801905586,
"asn": 13346,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Champaign Telephone Company, INC.",
"lat": 40.2284233586809,
"lon": -88.2301328717307,
"asn": 25660,
"customerConeSize": 6
},
{
"country": "US",
"orgName": "OAKLAND UNIFIED SCHOOL DISTRICT",
"lat": 37.8086456205103,
"lon": -122.270488124934,
"asn": 31764,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "University of Washington",
"lat": 47.6382492023785,
"lon": -122.301111813455,
"asn": 101,
"customerConeSize": 35
},
{
"country": "US",
"orgName": "University of California at Berkeley",
"lat": 37.8678866118278,
"lon": -122.258164898594,
"asn": 25,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Nevada System of Higher Education",
"lat": 38.9440935547987,
"lon": -118.920052049893,
"asn": 3851,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "New Mexico Lambda Rail, Inc.",
"lat": 35.1531495447415,
"lon": -106.440292936619,
"asn": 40498,
"customerConeSize": 15
},
{
"country": "US",
"orgName": "ROKABEAR LLC",
"lat": 39.5093109588733,
"lon": -90.2948803374632,
"asn": 54876,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Net Data Centers, Inc.",
"lat": 35.7156678459134,
"lon": -114.162499690844,
"asn": 558,
"customerConeSize": 19
},
{
"country": "US",
"orgName": "RealNetworks, Inc.",
"lat": 38.9498,
"lon": -77.0155999,
"asn": 5054,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Greystone IT, Inc.",
"lat": 38.8890514190277,
"lon": -77.3235635182533,
"asn": 40889,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "AT&T Enhanced Network Services",
"lat": 39.4312893335088,
"lon": -83.8295262252666,
"asn": 17231,
"customerConeSize": 18
},
{
"country": "US",
"orgName": "Private National Mortgage Acceptance Company LLC",
"lat": 34.2803,
"lon": -118.889,
"asn": 14012,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "6connect, Inc.",
"lat": 37.0939434124061,
"lon": -121.909733270201,
"asn": 8038,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Southwest Airlines Co.",
"lat": 32.8673290710072,
"lon": -96.8578300724687,
"asn": 36488,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Internap Network Services Corporation",
"lat": 30.7627899016841,
"lon": -95.5912633121847,
"asn": 13791,
"customerConeSize": 18
},
{
"country": "US",
"orgName": "City of Birmingham",
"lat": 33.518090226004,
"lon": -86.8074149140298,
"asn": 26814,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "The School Board of Brevard County",
"lat": 28.2238472293652,
"lon": -80.6876170999219,
"asn": 26713,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Orange County Comptroller",
"lat": 28.5438,
"lon": -81.3772,
"asn": 30659,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Health First Inc",
"lat": 28.0122463308785,
"lon": -81.5145727716587,
"asn": 46123,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Pinellas County Government",
"lat": 27.9436517659274,
"lon": -82.7871312149151,
"asn": 22498,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "UPM Telecom, Inc",
"lat": 45.5352,
"lon": -122.956,
"asn": 30139,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Netelligent Corporation",
"lat": 49.5403285832921,
"lon": -101.334066340927,
"asn": 27240,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "Financial Database Services",
"lat": 32.8941,
"lon": -117.203,
"asn": 14915,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Compucom Systems",
"lat": 55.1736321604365,
"lon": -56.4440978761591,
"asn": 3955,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "ADT LLC",
"lat": 30.0802445493623,
"lon": -85.5372340953751,
"asn": 62958,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "Liberty Mutual Group",
"lat": 43.0675214092048,
"lon": -70.785708655678,
"asn": 3455,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Oxford Networks",
"lat": 44.338841854257,
"lon": -69.8920271549013,
"asn": 21547,
"customerConeSize": 12
},
{
"country": "US",
"orgName": "PC Connection, Inc.",
"lat": 42.8644269981431,
"lon": -71.6030928611023,
"asn": 14136,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Massachusetts Institute of Technology",
"lat": 42.4484,
"lon": -71.2338,
"asn": 63,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Access Northeast Inc.",
"lat": 42.4132139374313,
"lon": -71.2060799090268,
"asn": 17113,
"customerConeSize": 9
},
{
"country": "US",
"orgName": "Blue Shield of California",
"lat": 38.7153,
"lon": -121.079,
"asn": 63174,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "McAfee, Inc.",
"lat": 40.1702675059745,
"lon": -116.933373369855,
"asn": 7754,
"customerConeSize": 4
},
{
"country": null,
"orgName": null,
"lat": 36.4661730030444,
"lon": -114.034799437469,
"asn": 16667,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "ISCS, Inc.",
"lat": 37.2307,
"lon": -121.786,
"asn": 53428,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "PayPal, Inc.",
"lat": 37.2936,
"lon": -121.898,
"asn": 17012,
"customerConeSize": 3
},
{
"country": "MX",
"orgName": "Telecable del Mineral, S. A. de C.V.",
"lat": 23.2255,
"lon": -103.002,
"asn": 28432,
"customerConeSize": 1
},
{
"country": "MX",
"orgName": "Iusacell PCS de Mexico, S.A. de C.V.",
"lat": 19.6870017706348,
"lon": -99.5040615897043,
"asn": 17072,
"customerConeSize": 13
},
{
"country": "MX",
"orgName": "INFOTEC Centro de Investigacion e Innovacion en Tecnologias de la Informacion y Comunicación",
"lat": 20.9108018050741,
"lon": -99.5302907800017,
"asn": 13579,
"customerConeSize": 1
},
{
"country": "MX",
"orgName": "Enlaces Integra, S. de R.L. de C.V.",
"lat": 19.4,
"lon": -99.15,
"asn": 28552,
"customerConeSize": 1
},
{
"country": "MX",
"orgName": "Metro Net, S.A.P.I. de C.V.",
"lat": 19.874931960658,
"lon": -99.707615260386,
"asn": 28438,
"customerConeSize": 8
},
{
"country": "US",
"orgName": "Freeport McMoRan Copper & Gold Inc.",
"lat": 38.4861130312377,
"lon": -125.462870160339,
"asn": 4318,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Avaya Inc.",
"lat": 42.2453567655278,
"lon": -71.6624878127493,
"asn": 18676,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "EBAGS, INC",
"lat": 39.768,
"lon": -105.015,
"asn": 54657,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "McAfee, Inc.",
"lat": 58.2858856492149,
"lon": -94.2912520321903,
"asn": 46484,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Industrial Scientific Corporation",
"lat": 40.3911,
"lon": -80.1989,
"asn": 54921,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Northwest Ohio Area Computer Services Cooperative",
"lat": 40.825795760715,
"lon": -84.1191017047431,
"asn": 26894,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "OARnet",
"lat": 40.3554089698047,
"lon": -81.926221702662,
"asn": 3112,
"customerConeSize": 42
},
{
"country": "US",
"orgName": "Southwest Ohio Computer Association",
"lat": 39.3899457345342,
"lon": -84.4759692540186,
"asn": 33167,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "COG-SEOVEC",
"lat": 39.2850703833824,
"lon": -82.1061379999608,
"asn": 30298,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "West Virginia Network for Educational Telecomputing",
"lat": 39.1563854480331,
"lon": -80.550524840187,
"asn": 7925,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "RONALD BLUE & CO., LLC",
"lat": 34.0261,
"lon": -84.3117,
"asn": 4970,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "AgniCorp Inc.",
"lat": 39.9165171469343,
"lon": -79.9963745252037,
"asn": 16570,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Abacus Solutions, LLC",
"lat": 36.39228689924,
"lon": -87.1509726553853,
"asn": 19833,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Parker FiberNet, LLC",
"lat": 33.9620409055257,
"lon": -84.3664402589466,
"asn": 40111,
"customerConeSize": 6
},
{
"country": "US",
"orgName": "URM Stores Inc",
"lat": 47.7381,
"lon": -117.446,
"asn": 29989,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "NebraskaLink",
"lat": 41.114089181117,
"lon": -99.2094330599572,
"asn": 16851,
"customerConeSize": 27
},
{
"country": "US",
"orgName": "nexVortex",
"lat": 38.9812,
"lon": -77.3873,
"asn": 46847,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Intermedix",
"lat": 31.8181807488643,
"lon": -92.4563166735975,
"asn": 54822,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Institute for Transfusion Medicine",
"lat": 40.426,
"lon": -80.0487,
"asn": 13981,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Hurricane Labs, LLC",
"lat": 41.3846,
"lon": -81.6574,
"asn": 20341,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Pantek, Inc.",
"lat": 41.3846,
"lon": -81.6573999,
"asn": 393441,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "American Health Network",
"lat": 39.8975507879429,
"lon": -86.1466361665921,
"asn": 13492,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "MOUNT HOOD COMMUNITY COLLEGE",
"lat": 45.4994,
"lon": -122.42,
"asn": 36172,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Douglas FastNet",
"lat": 43.3004798871026,
"lon": -123.345171649763,
"asn": 13692,
"customerConeSize": 7
},
{
"country": "US",
"orgName": "PACINFO",
"lat": 44.0607443247606,
"lon": -123.074620640575,
"asn": 7441,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Apollo Management, L.P.",
"lat": 56.2579631462548,
"lon": -61.8079813177475,
"asn": 21509,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "Internet Systems Consortium, Inc.",
"lat": 13.0976,
"lon": 80.2945,
"asn": 24049,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "DWANIRINN",
"lat": 18.9421,
"lon": 72.8354,
"asn": 133301,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Cyber Futuristics India Pvt Ltd",
"lat": 27.7988265127264,
"lon": 77.0405606705785,
"asn": 55470,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Athenahealth",
"lat": 52.1966400157115,
"lon": -68.9946352948949,
"asn": 11174,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Adya Tech-One Services Pvt. Ltd.",
"lat": 28.6439676046859,
"lon": 77.3800876714189,
"asn": 45944,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Microsense Private Limited",
"lat": 16.1883415814793,
"lon": 79.7289164687416,
"asn": 55839,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "Information Technology Company (ITC)",
"lat": 35.4912856579953,
"lon": 51.6046403706046,
"asn": 12880,
"customerConeSize": 281
},
{
"country": "IN",
"orgName": "Narmada Cyberzone pvt. ltd",
"lat": 23.2368395673542,
"lon": 72.6650420531445,
"asn": 132390,
"customerConeSize": 1
},
{
"country": "BD",
"orgName": "Digicon Telecommunication Ltd",
"lat": 23.717,
"lon": 90.367,
"asn": 132341,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Brevan Howard Asset Management LLP",
"lat": 51.4583230680232,
"lon": -0.183860096493068,
"asn": 44480,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "NTS workspace AG",
"lat": 46.9437537683536,
"lon": 7.54249842407141,
"asn": 15576,
"customerConeSize": 67
},
{
"country": "CH",
"orgName": "Via Mat Management AG",
"lat": 47.5596,
"lon": 7.58061,
"asn": 30973,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "SOGECABLE S.A.",
"lat": 41.9616346476144,
"lon": -4.58279889941137,
"asn": 31418,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "Airenetworks S.L.U",
"lat": 38.6856196283422,
"lon": -2.92386643834618,
"asn": 29119,
"customerConeSize": 61
},
{
"country": "FR",
"orgName": "i-CIF Groupement d'interet economique a capital variable",
"lat": 46.2331766528636,
"lon": 1.87052105660787,
"asn": 39694,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "EZE Castle Integration Inc.",
"lat": 45.3881955076449,
"lon": -67.3505260872013,
"asn": 14717,
"customerConeSize": 52
},
{
"country": "IT",
"orgName": "BANCA NETWORK INVESTIMENTI SPA",
"lat": 45.4727,
"lon": 9.18716,
"asn": 48617,
"customerConeSize": 1
},
{
"country": "FR",
"orgName": "Phibee Telecom SARL",
"lat": 45.8339707833275,
"lon": 4.36403468400636,
"asn": 8487,
"customerConeSize": 14
},
{
"country": "DE",
"orgName": "ZIM INTEGRATED SHIPPING SERVICES LTD",
"lat": 49.9951,
"lon": 8.26743,
"asn": 198521,
"customerConeSize": 1
},
{
"country": "IE",
"orgName": "CORK INTERNET EXCHANGE LIMITED",
"lat": 52.0122377346077,
"lon": -8.48204394951253,
"asn": 47720,
"customerConeSize": 9
},
{
"country": "FR",
"orgName": "ALTO Network",
"lat": 48.882431974415,
"lon": 2.2409730140953,
"asn": 9089,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Thueringer Netkom GmbH",
"lat": 50.8044898642737,
"lon": 11.2637171978448,
"asn": 196714,
"customerConeSize": 7
},
{
"country": "CA",
"orgName": "Bank of Montreal",
"lat": 43.7997,
"lon": -79.3209,
"asn": 17372,
"customerConeSize": 1
},
{
"country": "PT",
"orgName": "Joao Carlos de Almeida Silveira trading as Bitcanal",
"lat": 41.9859002276418,
"lon": -44.3808635794815,
"asn": 197426,
"customerConeSize": 7
},
{
"country": "DE",
"orgName": "WITCOM Wiesbadener Informations- und Telekommunikations GmbH",
"lat": 50.0700262458594,
"lon": 8.25483330474293,
"asn": 28676,
"customerConeSize": 5
},
{
"country": "CH",
"orgName": "netplus.ch SA",
"lat": 46.2439334187152,
"lon": 7.14531381798921,
"asn": 15547,
"customerConeSize": 4
},
{
"country": "DE",
"orgName": "Gesamtverband der Deutschen Versicherungswirtschaft e.V.",
"lat": 53.5527,
"lon": 10.0189,
"asn": 199271,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "eBay, Inc",
"lat": 37.4388389576542,
"lon": -121.197088040056,
"asn": 11643,
"customerConeSize": 4
},
{
"country": "RO",
"orgName": "EURO STRADA SRL",
"lat": 45.6313,
"lon": 25.6371,
"asn": 60905,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "GTS Slovakia, a.s.",
"lat": 48.2592096466204,
"lon": 17.6478570358039,
"asn": 5578,
"customerConeSize": 76
},
{
"country": "PL",
"orgName": "HRK S.A.",
"lat": 52.2431,
"lon": 21.0072,
"asn": 196964,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Unizeto Sp. z o.o.",
"lat": 53.4399875932611,
"lon": 14.6108454635673,
"asn": 28785,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "ANEXIA Internetdienstleistungs GmbH",
"lat": 50.3709374463162,
"lon": 15.702226175735,
"asn": 42473,
"customerConeSize": 25
},
{
"country": "PL",
"orgName": "BANK POLSKA KASA OPIEKI S.A.",
"lat": 52.1884,
"lon": 21.0116,
"asn": 24879,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "Kaora s.r.o.",
"lat": 50.0676045716407,
"lon": 15.5987300131862,
"asn": 42000,
"customerConeSize": 25
},
{
"country": "CZ",
"orgName": "Haug-land s.r.o.",
"lat": 50.3885,
"lon": 13.1334,
"asn": 201813,
"customerConeSize": 1
},
{
"country": "HU",
"orgName": "MVM NET Zrt.",
"lat": 46.9721946513354,
"lon": 18.6976594355871,
"asn": 47169,
"customerConeSize": 22
},
{
"country": "PL",
"orgName": "INSOFT.NET Tomasz Malarczuk",
"lat": 49.8238,
"lon": 22.7447,
"asn": 198982,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Pixel View SRL",
"lat": 44.459029492356,
"lon": 26.1437242266401,
"asn": 50244,
"customerConeSize": 10
},
{
"country": "HU",
"orgName": "Csucs-Hu Informatika Kereskedelmi es Szolgaltato Ltd",
"lat": 47.5034,
"lon": 19.0453,
"asn": 21136,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Sileman Sp. z o.o.",
"lat": 50.3250948941003,
"lon": 18.8627818111632,
"asn": 30851,
"customerConeSize": 10
},
{
"country": "RO",
"orgName": "RALFI IFN SA",
"lat": 46.7661,
"lon": 23.5793,
"asn": 41971,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "NAV DATACENTER TELECOM SRL",
"lat": 44.8269838981724,
"lon": 25.7247005752355,
"asn": 6718,
"customerConeSize": 8
},
{
"country": "RO",
"orgName": "Netlive 2007 SRL",
"lat": 44.4408,
"lon": 26.1512,
"asn": 62374,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "FX SOFTWARE SRL",
"lat": 47.0377173685945,
"lon": 27.2865583454511,
"asn": 43443,
"customerConeSize": 7
},
{
"country": "PL",
"orgName": "Torunski Zaklady Materialow Opatrunkowych S.A.",
"lat": 53.0138,
"lon": 18.6016,
"asn": 39085,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Multinet24 Sp.zoo",
"lat": 50.2505334400547,
"lon": 21.4084800222341,
"asn": 197099,
"customerConeSize": 7
},
{
"country": "BR",
"orgName": "Construtora Andrade Gutierrez S/A",
"lat": -23.2713481343272,
"lon": -46.2398271835213,
"asn": 53063,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Telemar Norte Leste S.A.",
"lat": -21.2995026293183,
"lon": -50.3685283423825,
"asn": 8167,
"customerConeSize": 316
},
{
"country": "BR",
"orgName": "PREFEITURA MUN. CARUARU",
"lat": -23.5337,
"lon": -46.6289,
"asn": 264474,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Fiat Automóveis S/A",
"lat": -21.0202700828362,
"lon": -46.3182392276405,
"asn": 28243,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "COMMCORP COMUNICACOES LTDA",
"lat": -24.9986898285529,
"lon": -47.8016552378766,
"asn": 14840,
"customerConeSize": 155
},
{
"country": "BR",
"orgName": "Rontel LTDA",
"lat": -21.4789162442674,
"lon": -43.062835531096,
"asn": 262380,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "1TELECOM SERVICOS DE TECNOLOGIA EM INTERNET LTDA",
"lat": -8.08786615618989,
"lon": -35.9724841901777,
"asn": 52965,
"customerConeSize": 61
},
{
"country": "CH",
"orgName": "Lonza AG",
"lat": 46.2527579101439,
"lon": 7.0235714890866,
"asn": 51817,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Die Schweizerische Post",
"lat": 46.948,
"lon": 7.44821,
"asn": 12511,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "Belgacom International Carrier Services SA",
"lat": 49.6626318984446,
"lon": 4.90182817270699,
"asn": 6774,
"customerConeSize": 145
},
{
"country": "US",
"orgName": "JPMorgan Chase & Co.",
"lat": 51.6295183596207,
"lon": -3.30363462193232,
"asn": 32066,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "NETNOD Internet Exchange i Sverige AB",
"lat": 59.3289278689264,
"lon": 18.0637166831061,
"asn": 8674,
"customerConeSize": 12
},
{
"country": "CN",
"orgName": "China Telecom",
"lat": 35.9813866171029,
"lon": 117.30653014455,
"asn": 58518,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "NOVINET TELECOM LTDA - ME",
"lat": -22.2305158832495,
"lon": -46.9608397204259,
"asn": 61907,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "VPLS ASIA",
"lat": 9.01966340716426,
"lon": 105.018480229873,
"asn": 45652,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "N Telecom SRL",
"lat": 46.8849000323997,
"lon": 23.7756985005386,
"asn": 62107,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Digital Cable Systems S.A.",
"lat": 44.868813010619,
"lon": 25.8584852498608,
"asn": 6910,
"customerConeSize": 96
},
{
"country": "RO",
"orgName": "CRILIS COM SRL",
"lat": 47.5375391879812,
"lon": 26.295524949616,
"asn": 47516,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Tehnic Profesional Grup S.R.L.",
"lat": 44.5638,
"lon": 27.3506,
"asn": 51202,
"customerConeSize": 1
},
{
"country": "SI",
"orgName": "Softnet d.o.o.",
"lat": 45.8921640140943,
"lon": 14.985860067982,
"asn": 9119,
"customerConeSize": 51
},
{
"country": "RO",
"orgName": "Greenzone Network SRL",
"lat": 44.997434091378,
"lon": 26.2751452391004,
"asn": 39430,
"customerConeSize": 1
},
{
"country": "MD",
"orgName": "Moldtelecom SA",
"lat": 47.0198506827111,
"lon": 28.804787704195,
"asn": 8926,
"customerConeSize": 48
},
{
"country": "RU",
"orgName": "SC Kepler-Rominfo SA",
"lat": 44.4599,
"lon": 26.1333,
"asn": 34283,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "NEXTGEN COMMUNICATIONS SRL",
"lat": 45.3565224559993,
"lon": 25.5562776960691,
"asn": 48161,
"customerConeSize": 37
},
{
"country": "VE",
"orgName": "Y&V Ingeniería y Construcción, C.A.",
"lat": 10.5,
"lon": -66.9167,
"asn": 52358,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Netvga Serviços em Telecomunicações Ltda.",
"lat": -22.0952987522087,
"lon": -45.8185139234101,
"asn": 53106,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "HiFX PLC",
"lat": 51.5085,
"lon": -0.59169,
"asn": 47296,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Marinter Telecom Ltda.",
"lat": -22.9145833819884,
"lon": -42.8288430079983,
"asn": 28366,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Global Village Telecom",
"lat": -20.7764555046078,
"lon": -46.0409773132388,
"asn": 18881,
"customerConeSize": 952
},
{
"country": "AR",
"orgName": "Cooperativa Telefonica Del Viso",
"lat": -34.4476984055169,
"lon": -58.8059517380619,
"asn": 19889,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "NAPE - Núcleo de Assessoria aos Prof. e Empr.",
"lat": -22.8547457898098,
"lon": -46.563586054032,
"asn": 53125,
"customerConeSize": 1
},
{
"country": "CO",
"orgName": "Universidad Pontificia Bolivariana",
"lat": 5.92174062269968,
"lon": -75.2805739570884,
"asn": 52488,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "ALGAR TELECOM S/A",
"lat": -19.7039408866647,
"lon": -47.6183771646016,
"asn": 16735,
"customerConeSize": 650
},
{
"country": "AR",
"orgName": "COOPERATIVAS DE CALAMUCHITA - CONSORCIO DE COOPERACIÓN",
"lat": -32.1402495429705,
"lon": -64.288309376355,
"asn": 263230,
"customerConeSize": 1
},
{
"country": "DK",
"orgName": "Saxo Bank A/S",
"lat": 55.729393053093,
"lon": 12.5660867414465,
"asn": 20681,
"customerConeSize": 1
},
{
"country": "EC",
"orgName": "CORPORACION FINANCIERA NACIONAL",
"lat": -0.2295,
"lon": -78.5243,
"asn": 52331,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Grand Supercenter Inc",
"lat": 40.815400323325,
"lon": -74.1179018294993,
"asn": 32401,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "LG DACOM Corporation",
"lat": 37.4616251500152,
"lon": 127.220523072945,
"asn": 3786,
"customerConeSize": 452
},
{
"country": "US",
"orgName": "SmugMug, Inc.",
"lat": 37.3874,
"lon": -122.072,
"asn": 11266,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Networld Provedor e Servicos de Internet Ltda",
"lat": -17.5324117215645,
"lon": -47.6046302829472,
"asn": 28178,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Owens-Corning",
"lat": 41.6237029798565,
"lon": -83.6011053186197,
"asn": 36490,
"customerConeSize": 1
},
{
"country": "VE",
"orgName": "Supercable",
"lat": 10.4969473404426,
"lon": -66.917080311663,
"asn": 22313,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "PREDIALNET PROVEDOR DE INTERNET LTDA",
"lat": -22.9268220862744,
"lon": -43.2907001159581,
"asn": 28665,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "G8 NETWORKS LTDA",
"lat": -15.5323992187196,
"lon": -49.8489039382158,
"asn": 28329,
"customerConeSize": 192
},
{
"country": "GB",
"orgName": "SpinVox Ltd",
"lat": 51.5752,
"lon": -0.77893,
"asn": 44292,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "DCTV Cable Network Broadband Services Inc",
"lat": 13.1354766152352,
"lon": 123.732485042654,
"asn": 133334,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "WCIX.Net, Inc.",
"lat": 39.2668872209582,
"lon": -120.52175989977,
"asn": 6473,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "Bangalore, IN",
"lat": 18.9421,
"lon": 72.8354001,
"asn": 37991,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "e-Business Hosting Services",
"lat": 22.276,
"lon": 114.167,
"asn": 17657,
"customerConeSize": 1
},
{
"country": null,
"orgName": null,
"lat": 1.30612,
"lon": 103.8330001,
"asn": 55854,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "Genius Networks",
"lat": 22.276,
"lon": 114.1670001,
"asn": 132865,
"customerConeSize": 1
},
{
"country": "SG",
"orgName": "Digital Ocean, Inc.",
"lat": 1.31274303154599,
"lon": 103.832701332475,
"asn": 133165,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Attenda Limited",
"lat": 51.1283973674506,
"lon": 3.0097139555604,
"asn": 15961,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "KBR",
"lat": 52.3851119546363,
"lon": -54.6909569923895,
"asn": 16525,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Andrew Corp.",
"lat": 58.0606958420384,
"lon": -72.94296676744,
"asn": 18816,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Telegram Messenger LLP",
"lat": 51.5147,
"lon": -0.0832899,
"asn": 59930,
"customerConeSize": 1
},
{
"country": "IE",
"orgName": "Sungard Availability Services (Ireland) Ltd.",
"lat": 53.2394657751382,
"lon": -5.69297894943881,
"asn": 47580,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Cable & Wireless Americas Operations, Inc.",
"lat": 54.6549995900542,
"lon": -10.9552479983516,
"asn": 4445,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Link Ltd",
"lat": 65.9533359165013,
"lon": 32.9464733147297,
"asn": 49439,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Gazprombank OJSC",
"lat": 55.7616,
"lon": 37.6411,
"asn": 35022,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CJSC FANNET TELECOM",
"lat": 51.5431,
"lon": 45.9987,
"asn": 39256,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Anders Telecom Ltd.",
"lat": 55.6763602779564,
"lon": 36.8699124166151,
"asn": 39792,
"customerConeSize": 486
},
{
"country": "RU",
"orgName": "Teletime Ltd.",
"lat": 45.8532,
"lon": 40.1283,
"asn": 199782,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "IT Systems LLC",
"lat": 50.1505797018472,
"lon": 30.9205590579833,
"asn": 13249,
"customerConeSize": 424
},
{
"country": "RU",
"orgName": "FotoStrana Ltd",
"lat": 18.467,
"lon": -64.65,
"asn": 50453,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "MnogoByte LLC",
"lat": 55.7118021574742,
"lon": 37.6382555183319,
"asn": 42632,
"customerConeSize": 353
},
{
"country": "UA",
"orgName": "Telecom-MK LLC",
"lat": 55.3195,
"lon": 42.173,
"asn": 48585,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Lipetskie Kabelnie Seti LLC",
"lat": 52.6634442087842,
"lon": 39.5603351318045,
"asn": 42368,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OOO W-INTERNET",
"lat": 60.7037,
"lon": 28.7711,
"asn": 50958,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "LLC \"WNET UKRAINE\"",
"lat": 50.0485539493291,
"lon": 30.7599717736974,
"asn": 15772,
"customerConeSize": 192
},
{
"country": "RU",
"orgName": "9-ka.ru Ltd.",
"lat": 57.6437308239985,
"lon": 82.632095712079,
"asn": 56326,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "JSC \"Universal Card Technologies\"",
"lat": 55.761102673023,
"lon": 37.6544063975132,
"asn": 49373,
"customerConeSize": 187
},
{
"country": "RU",
"orgName": "Locked Joint Stock Company OGANER-SERVICE",
"lat": 69.3535,
"lon": 88.2027,
"asn": 29520,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Net By Net Holding LLC",
"lat": 56.3124544210042,
"lon": 37.4103297050023,
"asn": 12714,
"customerConeSize": 184
},
{
"country": "UA",
"orgName": "State Enterprise Scientific and Telecommunication Centre \"Ukrainian Academic and Research Network\" of the Institute for Condensed Matter Physics of the National Academy of Science of Ukraine (UARNet)",
"lat": 50.1507932616417,
"lon": 25.299369154873,
"asn": 3255,
"customerConeSize": 474
},
{
"country": "PL",
"orgName": "Grupa KKI-BCI Sp. Z o.o.",
"lat": 52.5260154135204,
"lon": 19.0375431623732,
"asn": 8726,
"customerConeSize": 2
},
{
"country": "RU",
"orgName": "OOO \"Cifrovoy Dialog-T\"",
"lat": 47.2583,
"lon": 39.8183,
"asn": 51200,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "LLC Telecom MPK",
"lat": 56.5340147563764,
"lon": 37.848330747877,
"asn": 44927,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Stowarzyszenie na Rzecz Rozwoju Spoleczenstwa Informacyjnego e-Poludnie",
"lat": 50.473925664495,
"lon": 19.1626845089809,
"asn": 50607,
"customerConeSize": 165
},
{
"country": "RU",
"orgName": "Nizhnetagilskie Kompyuternye Seti LLC",
"lat": 57.7891449523972,
"lon": 54.4134100939682,
"asn": 49218,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "LLC Equant",
"lat": 57.5183487504511,
"lon": 43.9286561564043,
"asn": 2854,
"customerConeSize": 164
},
{
"country": "RU",
"orgName": "LTD \"Zhiguli-Telecom\"",
"lat": 53.1803,
"lon": 50.2007,
"asn": 42766,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CJSC \"ER-Telecom Holding\"",
"lat": 58.8193851192464,
"lon": 49.897611887399,
"asn": 9049,
"customerConeSize": 155
},
{
"country": "UA",
"orgName": "PLARIUM UKRAINE LLC",
"lat": 49.9966,
"lon": 36.2573,
"asn": 202165,
"customerConeSize": 1
},
{
"country": "EE",
"orgName": "Linx Telecommunications B.V.",
"lat": 59.1424962560638,
"lon": 26.6999420314443,
"asn": 3327,
"customerConeSize": 144
},
{
"country": "RU",
"orgName": "Expert-Systema Ltd.",
"lat": 59.939,
"lon": 30.3158,
"asn": 47657,
"customerConeSize": 1
},
{
"country": "KZ",
"orgName": "JSC Kazakhtelecom",
"lat": 47.9672613845602,
"lon": 72.2244753104612,
"asn": 9198,
"customerConeSize": 127
},
{
"country": "PL",
"orgName": "\"SYMETRA\" Wojciech Wielogorski",
"lat": 51.1321174182355,
"lon": 20.8786743337472,
"asn": 198777,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "NetAssist LLC",
"lat": 49.8660324706766,
"lon": 30.8289859324675,
"asn": 29632,
"customerConeSize": 99
},
{
"country": "RU",
"orgName": "LLC \"MICROIMPULS\"",
"lat": 48.1409,
"lon": 11.5691001,
"asn": 201995,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "KVANT-TELEKOM Closed Joint Stock Company",
"lat": 51.8556682106578,
"lon": 38.6515468965981,
"asn": 43727,
"customerConeSize": 98
},
{
"country": "RU",
"orgName": "Infobox.ru Autonomous System",
"lat": 59.7409813570498,
"lon": 30.5425820385589,
"asn": 30968,
"customerConeSize": 1
},
{
"country": "KZ",
"orgName": "JSC Transtelecom",
"lat": 46.9623114952081,
"lon": 74.0246909652588,
"asn": 41798,
"customerConeSize": 95
},
{
"country": "US",
"orgName": "First Coast Service Options, Inc.",
"lat": 30.3112560196763,
"lon": -81.6777868272378,
"asn": 30410,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "SWITCH Communications Group LLC",
"lat": 36.5280389120197,
"lon": -114.359724908501,
"asn": 23005,
"customerConeSize": 111
},
{
"country": "US",
"orgName": "Arch U.S MI Services Inc.",
"lat": 37.9065889822571,
"lon": -122.060665636584,
"asn": 27547,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "APPRISS INC",
"lat": 38.2438438775177,
"lon": -85.5656164928585,
"asn": 19783,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Earthlink, Inc.",
"lat": 37.8926766060098,
"lon": -87.4989202172487,
"asn": 6983,
"customerConeSize": 81
},
{
"country": "US",
"orgName": "Healthbridge",
"lat": 39.2335664110419,
"lon": -84.4154859898413,
"asn": 23115,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "BANK OF HAWAII",
"lat": 21.3337588023319,
"lon": -157.854022484788,
"asn": 23019,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "First Insurance Company of Hawaii",
"lat": 21.3255,
"lon": -157.831,
"asn": 54408,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Commercial Communications, Inc.",
"lat": 43.0785056580624,
"lon": -88.261052164512,
"asn": 54230,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "IO Capital Princess, LLC",
"lat": 40.9000018526003,
"lon": -80.233065766914,
"asn": 12025,
"customerConeSize": 48
},
{
"country": "US",
"orgName": "Real Estate Digital LLC",
"lat": 33.6295088825678,
"lon": -117.782970897533,
"asn": 25785,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Enventis Telecom Inc.",
"lat": 46.1576329084798,
"lon": -93.2579173521873,
"asn": 12042,
"customerConeSize": 41
},
{
"country": "US",
"orgName": "Greenlight Capital",
"lat": 40.8493308101372,
"lon": -74.108747750289,
"asn": 29784,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Peak 10",
"lat": 34.0022847621456,
"lon": -82.0305129473044,
"asn": 19271,
"customerConeSize": 39
},
{
"country": "US",
"orgName": "Rexnord Industries, LLC",
"lat": 43.0361141442383,
"lon": -87.918217623496,
"asn": 27186,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "University of Minnesota",
"lat": 44.9785,
"lon": -93.226,
"asn": 57,
"customerConeSize": 28
},
{
"country": "US",
"orgName": "CyrusOne LLC",
"lat": 34.5449548922167,
"lon": -95.9335635104093,
"asn": 62,
"customerConeSize": 26
},
{
"country": "US",
"orgName": "United Financial Services, Inc.",
"lat": 43.0652558587254,
"lon": -88.1740335323501,
"asn": 35997,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "RagingWire Data Centers, Inc.",
"lat": 38.8211585583923,
"lon": -118.561371542731,
"asn": 19893,
"customerConeSize": 23
},
{
"country": "US",
"orgName": "Central New Mexico Community College",
"lat": 35.0791,
"lon": -106.617,
"asn": 4869,
"customerConeSize": 1
},
{
"country": "JE",
"orgName": "O3b Limited",
"lat": 42.3663507402743,
"lon": -59.9167282709945,
"asn": 60725,
"customerConeSize": 21
},
{
"country": "US",
"orgName": "Louisiana Board of Regents/Louisiana Optical Network Initiative (LONI)",
"lat": 30.5113677360872,
"lon": -91.274318731627,
"asn": 32440,
"customerConeSize": 20
},
{
"country": "US",
"orgName": "GLYNN DEVINS, INC.",
"lat": 38.9704,
"lon": -94.9676,
"asn": 46574,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CyrusOne LLC",
"lat": 38.9670048986008,
"lon": -84.6826931883076,
"asn": 30023,
"customerConeSize": 20
},
{
"country": "US",
"orgName": "New York City Board of Education",
"lat": 40.6980732589365,
"lon": -73.9884991554059,
"asn": 21704,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Latisys-Denver, LLC",
"lat": 39.3133197515387,
"lon": -105.635693098706,
"asn": 29863,
"customerConeSize": 18
},
{
"country": "US",
"orgName": "iMortgage.com, Inc.",
"lat": 33.4696950120054,
"lon": -111.998703207933,
"asn": 13920,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Indiana University",
"lat": 39.2611334466858,
"lon": -86.7402630425734,
"asn": 19782,
"customerConeSize": 15
},
{
"country": "US",
"orgName": "DataHUB, Inc.",
"lat": 21.3454,
"lon": -157.881,
"asn": 11276,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "FORTRUST",
"lat": 39.1855861420205,
"lon": -102.50126806015,
"asn": 22625,
"customerConeSize": 15
},
{
"country": "US",
"orgName": "STATER BROS MARKETS",
"lat": 33.9646,
"lon": -117.264,
"asn": 14637,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "HuntTel",
"lat": 29.4849977192852,
"lon": -89.3738542188786,
"asn": 32592,
"customerConeSize": 14
},
{
"country": "US",
"orgName": "TEMPWORKS SOFTWARE INC.",
"lat": 44.8482,
"lon": -93.1456,
"asn": 40851,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "HostMySite",
"lat": 39.4928440220528,
"lon": -85.2524466870756,
"asn": 20021,
"customerConeSize": 14
},
{
"country": "US",
"orgName": "Electronic Arts, Inc.",
"lat": 28.5821123362616,
"lon": -81.3116052085616,
"asn": 33043,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "WEBDISCOUNT GmbH & Co. KG",
"lat": 53.1056958063125,
"lon": 13.3724202067055,
"asn": 24637,
"customerConeSize": 13
},
{
"country": "US",
"orgName": "Dialectic Capital Management, LLC",
"lat": 40.7042820476808,
"lon": -74.0072048398064,
"asn": 26053,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Latisys-Irvine, LLC",
"lat": 34.0264307430062,
"lon": -117.375959606335,
"asn": 5693,
"customerConeSize": 13
},
{
"country": "US",
"orgName": "ProQuest LLC",
"lat": 47.6625800066197,
"lon": -122.340600386498,
"asn": 16972,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "VegasNAP, LLC",
"lat": 37.8015345219519,
"lon": -112.740647631965,
"asn": 53340,
"customerConeSize": 13
},
{
"country": "US",
"orgName": "Northwestern Mutual",
"lat": 42.8873,
"lon": -88.0096,
"asn": 26787,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Involta",
"lat": 43.5001630630924,
"lon": -111.933076510212,
"asn": 14230,
"customerConeSize": 13
},
{
"country": "CA",
"orgName": "TALISMAN ENERGY INC.",
"lat": 51.0453,
"lon": -114.07,
"asn": 25911,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Quality Technology Services, LLC.",
"lat": 35.4107573885224,
"lon": -86.9274562630054,
"asn": 20141,
"customerConeSize": 12
},
{
"country": "US",
"orgName": "General Parts Incorporated",
"lat": 35.8538740236888,
"lon": -78.6833292373019,
"asn": 26922,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CityNet",
"lat": 39.2584524726753,
"lon": -80.7617976599237,
"asn": 6536,
"customerConeSize": 11
},
{
"country": "US",
"orgName": "MVP Health Plan Inc.",
"lat": 42.7988985120616,
"lon": -73.9408240109262,
"asn": 22475,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "U.S. Department of Health & Human Services",
"lat": 37.3596716747079,
"lon": -79.5259706576156,
"asn": 15029,
"customerConeSize": 10
},
{
"country": "US",
"orgName": "Rippple Web",
"lat": 38.3548450249068,
"lon": -121.070572894928,
"asn": 36053,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Login, Inc.",
"lat": 32.3130178680724,
"lon": -110.936418631722,
"asn": 22772,
"customerConeSize": 10
},
{
"country": "US",
"orgName": "Environmental Systems Research Institute",
"lat": 34.0500873181878,
"lon": -117.168899199501,
"asn": 10411,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Castle Access Inc",
"lat": 32.7539113455906,
"lon": -117.304360566652,
"asn": 22489,
"customerConeSize": 10
},
{
"country": "US",
"orgName": "Rightside Group LTD",
"lat": 47.6877,
"lon": -122.192,
"asn": 22557,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Latisys-Ashburn, LLC",
"lat": 40.7153832409867,
"lon": -80.6366356553069,
"asn": 29944,
"customerConeSize": 10
},
{
"country": "US",
"orgName": "Tribune Company",
"lat": 35.9039261010842,
"lon": -113.487422505772,
"asn": 29836,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Windstream Hosted Solutions, LLC",
"lat": 39.674842564305,
"lon": -83.3139546933614,
"asn": 7349,
"customerConeSize": 10
},
{
"country": "US",
"orgName": "THE ENERGY AUTHORITY",
"lat": 30.1573663740289,
"lon": -81.6914059439311,
"asn": 17145,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "EAGLE-Net Alliance",
"lat": 39.8543037592997,
"lon": -105.13012136978,
"asn": 13555,
"customerConeSize": 9
},
{
"country": "RU",
"orgName": "JSC Oil Processing Company",
"lat": 55.7616,
"lon": 37.6411001,
"asn": 57671,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Arbat Investment Services Limited",
"lat": 55.7616,
"lon": 37.6410999,
"asn": 60710,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "O`KEY, Limited Liability Company",
"lat": 59.939,
"lon": 30.3158001,
"asn": 60832,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Upravlyaushaya kompaniaK Aptechnaya set 36,6 CJSC",
"lat": 55.7616,
"lon": 37.6411002,
"asn": 52162,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "ZAO Torgoviy Dom Radio-Spectr",
"lat": 55.7616,
"lon": 37.6410998,
"asn": 50149,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Joint Stock Commercial Bank \"TRANSCAPITALBANK (JSC)",
"lat": 55.7616,
"lon": 37.6411003,
"asn": 49347,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Digital Networks CJSC",
"lat": 55.9439523289905,
"lon": 37.5845954104608,
"asn": 12695,
"customerConeSize": 145
},
{
"country": "RU",
"orgName": "OJSC \"Khabarovsky airport\"",
"lat": 55.7616,
"lon": 37.6410997,
"asn": 201820,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "WestCall Ltd.",
"lat": 55.7441881187025,
"lon": 37.6694822420283,
"asn": 8595,
"customerConeSize": 122
},
{
"country": "RU",
"orgName": "Agrosvyaz Ltd",
"lat": 58.6833,
"lon": 99.1833,
"asn": 201468,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "ZAO TransCreditCard",
"lat": 55.7616,
"lon": 37.6411004,
"asn": 57296,
"customerConeSize": 1
},
{
"country": "LT",
"orgName": "TEO LT AB Autonomous System",
"lat": 55.0915565113581,
"lon": 24.1051028469124,
"asn": 8764,
"customerConeSize": 73
},
{
"country": "RU",
"orgName": "LLC Trans Media",
"lat": 53.1803,
"lon": 50.2007001,
"asn": 58290,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "\"Kyivstar\" PJSC",
"lat": 49.4688527490526,
"lon": 31.3730160764607,
"asn": 15895,
"customerConeSize": 63
},
{
"country": "RU",
"orgName": "Kompas-Tel Ltd.",
"lat": 55.7616,
"lon": 37.6410996,
"asn": 57019,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Digit One LLC",
"lat": 55.7395669385202,
"lon": 37.6407418838344,
"asn": 8905,
"customerConeSize": 60
},
{
"country": "UA",
"orgName": "PE NEO-CRAFT",
"lat": 48.1823,
"lon": 23.3049,
"asn": 25099,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OJSC \"OTP BANK\"",
"lat": 55.7616,
"lon": 37.6411005,
"asn": 39688,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Prof-Media Broadcasting Corporation LLC",
"lat": 55.7616,
"lon": 37.6410995,
"asn": 57530,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "MTS OJSC",
"lat": 55.5432302438781,
"lon": 41.9732946513721,
"asn": 39858,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Mobile TeleSystems Open Joint Stock Company",
"lat": 46.3106840114306,
"lon": 47.801096458834,
"asn": 48400,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "LLC CTI",
"lat": 55.7616,
"lon": 37.6411006,
"asn": 60473,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "JSC \"Foreign Economic Association Technopromexport\"",
"lat": 55.7616,
"lon": 37.6410994,
"asn": 198902,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Mezhdugorodnyaya Mezhdunarodnaya Telefonnaya Stanciya Ltd.",
"lat": 55.7859,
"lon": 37.5997,
"asn": 60299,
"customerConeSize": 121
},
{
"country": "RU",
"orgName": "MTS OJSC",
"lat": 56.8428,
"lon": 60.5894,
"asn": 35473,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CJSC Macomnet",
"lat": 55.7589179311762,
"lon": 37.6475254048247,
"asn": 8470,
"customerConeSize": 72
},
{
"country": "RU",
"orgName": "LTD Atel-Rybinsk",
"lat": 58.05,
"lon": 38.8333,
"asn": 201952,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "PE Nikulin Alexey Vyacheslavovich",
"lat": 56.3299,
"lon": 44.0092,
"asn": 61979,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Intronex Setevye Resheniya Ltd.",
"lat": 55.7616,
"lon": 37.6411007,
"asn": 59733,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Ltd. Servis-N",
"lat": 53.1093,
"lon": 44.9111,
"asn": 57006,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OPTIMASET Ltd.",
"lat": 43.8447,
"lon": 46.7187,
"asn": 41743,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "LLC \"Nauka-Svyaz\"",
"lat": 55.834113719128,
"lon": 36.0310487169385,
"asn": 8641,
"customerConeSize": 163
},
{
"country": "RU",
"orgName": "Region Telecom LLC",
"lat": 55.1599,
"lon": 61.4026,
"asn": 62287,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "JSC Start Telecom",
"lat": 56.2354,
"lon": 43.4453,
"asn": 201516,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "KaspNet Ltd.",
"lat": 42.8828,
"lon": 47.6382,
"asn": 42922,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OJSC MegaFon",
"lat": 59.0381843318698,
"lon": 32.438847499567,
"asn": 20632,
"customerConeSize": 89
},
{
"country": "RU",
"orgName": "Leader Ltd.",
"lat": 55.7616,
"lon": 37.6410993,
"asn": 61228,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CJSC Ural WES",
"lat": 57.2756098503474,
"lon": 59.4721997420592,
"asn": 5563,
"customerConeSize": 80
},
{
"country": "GB",
"orgName": "W-IX LTD",
"lat": 51.5147,
"lon": -0.0832901,
"asn": 50384,
"customerConeSize": 722
},
{
"country": "RU",
"orgName": "Mobil-group ltd",
"lat": 59.9360093292988,
"lon": 30.2479562049666,
"asn": 31703,
"customerConeSize": 2
},
{
"country": "RU",
"orgName": "m9com Ltd.",
"lat": 55.7755018361086,
"lon": 37.6248281447744,
"asn": 38984,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "Gyeonggi Provincial Anseong Office of Education",
"lat": 37.4963740689983,
"lon": 126.978439988031,
"asn": 38401,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "PUSAN CABLE TV SYSTEM CO., LTD.",
"lat": 36.4077104972941,
"lon": 127.848537283485,
"asn": 23584,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "Sangmyung University",
"lat": 37.5632,
"lon": 126.993,
"asn": 18031,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "BS SECURITIES CO.,LTD",
"lat": 37.5632,
"lon": 126.9930001,
"asn": 18299,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "MCI Communications Services, Inc. d/b/a Verizon Business",
"lat": -17.8145380231637,
"lon": 142.545005871637,
"asn": 703,
"customerConeSize": 93
},
{
"country": "KR",
"orgName": "GEPS Cheonan Sagnokresort",
"lat": 37.4113004208221,
"lon": 127.003020253766,
"asn": 10064,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "Enterprise Networks",
"lat": 37.5526089138495,
"lon": 126.998474416001,
"asn": 9848,
"customerConeSize": 82
},
{
"country": "KR",
"orgName": "",
"lat": 37.534018039064,
"lon": 126.874573995392,
"asn": 55626,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "Bayan Telecommunications, Inc.",
"lat": 14.6312667192654,
"lon": 122.651806526121,
"asn": 6648,
"customerConeSize": 54
},
{
"country": "RU",
"orgName": "CentroSet Ltd.",
"lat": 55.7616,
"lon": 37.6411008,
"asn": 49124,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Universum bit Ltd.",
"lat": 55.7992275331141,
"lon": 37.7321522474912,
"asn": 48822,
"customerConeSize": 2
},
{
"country": "CZ",
"orgName": "IT Business Ltd.",
"lat": 55.6692,
"lon": 37.6525,
"asn": 57191,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Nord-West Link NP",
"lat": 59.939,
"lon": 30.3157999,
"asn": 42893,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CJSC Mastertel",
"lat": 56.0378531238814,
"lon": 37.3163584320046,
"asn": 29226,
"customerConeSize": 85
},
{
"country": "HK",
"orgName": "HKCOLO ltd. Internet Service Provider",
"lat": 18.4829029877207,
"lon": 117.369880289486,
"asn": 23749,
"customerConeSize": 1
},
{
"country": "SD",
"orgName": "Kanar Telecommunication (Canar Telecom Co.Ltd)",
"lat": 15.5787,
"lon": 35.5238,
"asn": 33788,
"customerConeSize": 7
},
{
"country": "GB",
"orgName": "Reliance Globalcom Limited",
"lat": 53.249803899959,
"lon": 2.10396101467974,
"asn": 29664,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Interoute Communications Limited",
"lat": 50.1156185278783,
"lon": 4.93823019466503,
"asn": 8928,
"customerConeSize": 1497
},
{
"country": "IN",
"orgName": "Zapapp india Pvt Ltd",
"lat": 12.9706,
"lon": 77.6002,
"asn": 24327,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "AppNexus, Inc",
"lat": 49.3495822660692,
"lon": -79.838333986231,
"asn": 29990,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "The Bank of New York Mellon Corporation",
"lat": 41.5851870594905,
"lon": -71.8716987645846,
"asn": 11911,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Australian Academic and Reasearch Network (AARNet)",
"lat": -34.5783468240879,
"lon": 144.592639080613,
"asn": 7575,
"customerConeSize": 86
},
{
"country": "HK",
"orgName": "Interpublic GIS",
"lat": 22.276,
"lon": 114.1669999,
"asn": 24182,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Sify Limited",
"lat": 15.4977594372899,
"lon": 79.3152097319331,
"asn": 9583,
"customerConeSize": 76
},
{
"country": "TH",
"orgName": "CSLOXINFO Project for IAG Insurance",
"lat": 13.7359,
"lon": 100.527,
"asn": 7568,
"customerConeSize": 70
},
{
"country": "UA",
"orgName": "Public Joint Stock Company DVBank",
"lat": 50.4409,
"lon": 30.5272,
"asn": 198659,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Star Soft Ltd.",
"lat": 49.5607,
"lon": 25.6113,
"asn": 25155,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "OLIMP LLC",
"lat": 47.9872,
"lon": 37.7622,
"asn": 43162,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Lohika LTD",
"lat": 49.8277,
"lon": 24.0087,
"asn": 49662,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Astarta-Kiev Ltd.",
"lat": 50.4409,
"lon": 30.5272001,
"asn": 42545,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Miranda-Media Ltd",
"lat": 47.6841314775919,
"lon": 39.1604425746623,
"asn": 201776,
"customerConeSize": 74
},
{
"country": "UA",
"orgName": "Infopulse Ukraine Ltd.",
"lat": 50.4409,
"lon": 30.5271999,
"asn": 39329,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Daughter company \"Ukrainian traffic exchange network\"",
"lat": 47.9872,
"lon": 37.7622001,
"asn": 12773,
"customerConeSize": 35
},
{
"country": "UA",
"orgName": "JSC \"Credit Agricole Bank\"",
"lat": 50.4409,
"lon": 30.5272002,
"asn": 34094,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Data Internet Ltd",
"lat": 48.1069467872769,
"lon": 37.4943161655683,
"asn": 6886,
"customerConeSize": 34
},
{
"country": "NL",
"orgName": "Digifoon Group B.V.",
"lat": 52.5061,
"lon": 4.8477,
"asn": 199332,
"customerConeSize": 1
},
{
"country": "CW",
"orgName": "OnePacket Networks Inc.",
"lat": 55.5058295687228,
"lon": -25.0816259346652,
"asn": 27970,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Chicago Trading Company",
"lat": 55.7065463667856,
"lon": -48.7319322103489,
"asn": 22208,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Neterra Ltd.",
"lat": 42.8120528827348,
"lon": 23.0079008224879,
"asn": 34224,
"customerConeSize": 132
},
{
"country": "US",
"orgName": "Globecorp Networks",
"lat": 54.4371722738969,
"lon": -83.8966715894085,
"asn": 63113,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "SuperNetwork s.r.o.",
"lat": 51.9468389321673,
"lon": 11.8877389514495,
"asn": 39392,
"customerConeSize": 124
},
{
"country": "US",
"orgName": "Bill Me Later, Inc",
"lat": 39.4349,
"lon": -76.6549,
"asn": 198911,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "NetIX Communications Ltd.",
"lat": 42.6976,
"lon": 23.3223,
"asn": 57463,
"customerConeSize": 100
},
{
"country": "UA",
"orgName": "PE Kostov D.V.",
"lat": 46.4791,
"lon": 30.7272,
"asn": 48674,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Star-Telecom Ltd",
"lat": 55.7372,
"lon": 38.846,
"asn": 48658,
"customerConeSize": 2
},
{
"country": "RU",
"orgName": "CJSC YarTranzitTelecom",
"lat": 57.6256,
"lon": 39.8333,
"asn": 16047,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CJSC Orbita",
"lat": 45.0421,
"lon": 38.9806,
"asn": 8936,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "LLC \"FTICOM\"",
"lat": 48.2126113214208,
"lon": 37.1099945954042,
"asn": 3261,
"customerConeSize": 65
},
{
"country": "RO",
"orgName": "I-Services Provider SRL",
"lat": 44.4599,
"lon": 26.1333001,
"asn": 15730,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Virgin Media Limited",
"lat": 52.6669693554194,
"lon": -1.58881507015451,
"asn": 5089,
"customerConeSize": 199
},
{
"country": "PL",
"orgName": "ASTER Sp. z.o.o.",
"lat": 50.0739583334209,
"lon": 19.9155208321438,
"asn": 34275,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "ADRIA SRL",
"lat": 47.6988,
"lon": 25.811,
"asn": 57126,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "AS ITandTel",
"lat": 48.0976312735852,
"lon": 14.1409077506234,
"asn": 21013,
"customerConeSize": 51
},
{
"country": "PL",
"orgName": "Urzad Miasta Sopotu",
"lat": 54.4417,
"lon": 18.5656,
"asn": 43681,
"customerConeSize": 1
},
{
"country": "BE",
"orgName": "Telenet N.V.",
"lat": 51.0465447948961,
"lon": 4.27983102850522,
"asn": 6848,
"customerConeSize": 40
},
{
"country": "AT",
"orgName": "Ing. Rudolf Geiger & Co",
"lat": 47.3146002713073,
"lon": 11.19530226929,
"asn": 62451,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "MEDIA SAT SRL",
"lat": 44.4602010370375,
"lon": 26.0991951437275,
"asn": 8751,
"customerConeSize": 39
},
{
"country": "RO",
"orgName": "Serviciul de Informatii Externe",
"lat": 44.4599,
"lon": 26.1332999,
"asn": 25461,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Video-Broadcast GmbH",
"lat": 48.1871357830914,
"lon": 16.2085414723919,
"asn": 8245,
"customerConeSize": 38
},
{
"country": "CZ",
"orgName": "FOFRNET spol. s r.o.",
"lat": 49.6177828123161,
"lon": 17.211284421909,
"asn": 48474,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "SILVERMEDIA Sp. z o.o.",
"lat": 50.0545,
"lon": 19.9556,
"asn": 199896,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Cyberlink AG",
"lat": 47.3694625923146,
"lon": 8.40160074656189,
"asn": 15623,
"customerConeSize": 16
},
{
"country": "IM",
"orgName": "Paddy Power Online Limited",
"lat": 53.7502665983956,
"lon": -5.38440797775466,
"asn": 61054,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Iway AG",
"lat": 47.3415699424331,
"lon": 8.50918566137662,
"asn": 8758,
"customerConeSize": 15
},
{
"country": "PT",
"orgName": "MEO - SERVICOS DE COMUNICACOES E MULTIMEDIA, S.A.",
"lat": 38.8972032503428,
"lon": -9.11173211106133,
"asn": 42863,
"customerConeSize": 1
},
{
"country": "GM",
"orgName": "Gambia Telecoms Backbone Network Network",
"lat": 13.455,
"lon": -16.589,
"asn": 25250,
"customerConeSize": 3
},
{
"country": "CN",
"orgName": "Neimenggu Provincial Net of CT",
"lat": 40.2064817436064,
"lon": 109.903648531145,
"asn": 17923,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Virtela Technology Services Incorporated",
"lat": 47.4894557668284,
"lon": 137.387153913428,
"asn": 19809,
"customerConeSize": 2
},
{
"country": "CN",
"orgName": "Shanxi Provincial Net of CT",
"lat": 32.8764426284106,
"lon": 116.369486348301,
"asn": 17883,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "The Corporation for Financing & Promoting Technology",
"lat": 18.3918137904817,
"lon": 106.144581418219,
"asn": 18403,
"customerConeSize": 95
},
{
"country": "PL",
"orgName": "Cadera Sp. z o.o.",
"lat": 52.1884,
"lon": 21.0116001,
"asn": 41930,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "dhosting.pl Sp. z o.o.",
"lat": 52.1633,
"lon": 21.0042,
"asn": 48896,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "IMA s.c. Jerzy Gruntkowski i Adrian Gruntkowski",
"lat": 54.3201,
"lon": 18.5865,
"asn": 51566,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "ATM S.A.",
"lat": 52.7207781255242,
"lon": 17.7873139088664,
"asn": 15694,
"customerConeSize": 160
},
{
"country": "PL",
"orgName": "Waw.Net.Pl Maciej Krol",
"lat": 52.1884,
"lon": 21.0115999,
"asn": 198782,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "INEA S.A.",
"lat": 52.3416819475942,
"lon": 17.0881836430956,
"asn": 13110,
"customerConeSize": 36
},
{
"country": "RU",
"orgName": "CJSC GENBANK",
"lat": 55.5902,
"lon": 37.6153,
"asn": 199858,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "ZAO Bankovskie Informacionnye Sistemy",
"lat": 55.5902,
"lon": 37.6153001,
"asn": 197097,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Limited Liabillity Company 'IT-VEGA'",
"lat": 55.7616,
"lon": 37.6410992,
"asn": 51578,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "TNS-RU CJSC.",
"lat": 55.8533,
"lon": 37.5032,
"asn": 47925,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "21TORR GmbH",
"lat": 48.4799750024086,
"lon": 9.20677446399923,
"asn": 13233,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Vodafone GmbH",
"lat": 52.3812,
"lon": 9.72696,
"asn": 3211,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Laudert GmbH + Co. KG",
"lat": 50.5058001617581,
"lon": 7.47764183376276,
"asn": 49034,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Vodafone Romania S.A.",
"lat": 44.6858965803785,
"lon": 26.0107054736685,
"asn": 12302,
"customerConeSize": 79
},
{
"country": "DE",
"orgName": "Baumann Technologie GmbH",
"lat": 51.499450510444,
"lon": 7.02249106189181,
"asn": 197269,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "VODAFONE NET ILETISIM HIZMETLERI ANONIM SIRKETI",
"lat": 40.9029573566038,
"lon": 29.0583472720746,
"asn": 15924,
"customerConeSize": 64
},
{
"country": "US",
"orgName": "Sambreel Services, LLC",
"lat": 32.739376817738,
"lon": -116.967761737313,
"asn": 54761,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Kansas Fiber Network, LLC",
"lat": 38.4215620935788,
"lon": -97.175157488919,
"asn": 13329,
"customerConeSize": 34
},
{
"country": "US",
"orgName": "Arvest Bank Operations",
"lat": 35.8034790125744,
"lon": -93.4943115283537,
"asn": 23079,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Dupre Energy Services LLC",
"lat": 30.0998,
"lon": -92.0009,
"asn": 19697,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "IRIDIUM SATELLITE,LLC",
"lat": 33.5216674459222,
"lon": -111.961235576584,
"asn": 22184,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "General Dynamics Information Technology, Inc.",
"lat": 42.3247862445235,
"lon": -87.9067955541795,
"asn": 18456,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Kansas Research and Education Network",
"lat": 38.8146308183678,
"lon": -95.5871975317954,
"asn": 2495,
"customerConeSize": 11
},
{
"country": "US",
"orgName": "Boys Town",
"lat": 41.2302023136977,
"lon": -96.0655257598991,
"asn": 54803,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Million Dollar Elm Casino",
"lat": 36.0731113697543,
"lon": -95.9017977996335,
"asn": 46229,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Citizens Telephone Cooperative",
"lat": 37.3120955633378,
"lon": -79.8746942990205,
"asn": 16942,
"customerConeSize": 7
},
{
"country": "US",
"orgName": "Via Christi Health System, Inc.",
"lat": 37.7419954719946,
"lon": -97.2433850362727,
"asn": 3791,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "MarquisNet",
"lat": 36.4938943429756,
"lon": -112.460271226838,
"asn": 35937,
"customerConeSize": 6
},
{
"country": "US",
"orgName": "Maricopa County Community College District",
"lat": 33.4224,
"lon": -111.928,
"asn": 26783,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "ATLINK SERVICES, LLC",
"lat": 35.316310650145,
"lon": -97.6063186309216,
"asn": 22898,
"customerConeSize": 5
},
{
"country": "AT",
"orgName": "CNet Fugger Computertechnik GesmbH",
"lat": 47.8810773205566,
"lon": 16.0099785251425,
"asn": 13064,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "TELE2",
"lat": 56.9255276596645,
"lon": 16.0542009404599,
"asn": 1257,
"customerConeSize": 251
},
{
"country": "HU",
"orgName": "EZIT Kft.",
"lat": 47.5066544601954,
"lon": 19.0505063544532,
"asn": 62292,
"customerConeSize": 3
},
{
"country": "GB",
"orgName": "Gamesys Ltd.",
"lat": 50.099201725393,
"lon": -28.3824711630736,
"asn": 44646,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Jehovas Zeugen in Deutschland, K.d.O.R.",
"lat": 50.3538,
"lon": 8.27742,
"asn": 61266,
"customerConeSize": 1
},
{
"country": "HU",
"orgName": "Magyar Telekom plc.",
"lat": 47.3710904359834,
"lon": 19.1912175223257,
"asn": 5483,
"customerConeSize": 205
},
{
"country": "FR",
"orgName": "GIE AXA Technology Services France",
"lat": 48.7385566755088,
"lon": 2.21736381202044,
"asn": 12696,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Canon USA Inc.",
"lat": 40.7023647396755,
"lon": -73.7951711052302,
"asn": 32720,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "G.X. Clarke & Co.",
"lat": 40.7262,
"lon": -74.0487,
"asn": 11369,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "MAXELL CORPORATION OF AMERICA",
"lat": 41.2435,
"lon": -74.5975,
"asn": 22249,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Joseph Cory Holdings LLC",
"lat": 40.7895,
"lon": -74.0628,
"asn": 18914,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Datto, Inc",
"lat": 41.299,
"lon": -73.4977,
"asn": 31922,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "Akamai International B.V.",
"lat": 54.0984203842493,
"lon": -72.6991604149071,
"asn": 20940,
"customerConeSize": 6
},
{
"country": "US",
"orgName": "Lowenstein Sandler",
"lat": 40.8192,
"lon": -74.2987,
"asn": 26815,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Stafford Associates Computer Specialists, Inc.",
"lat": 40.913990250462,
"lon": -73.0814493218693,
"asn": 11817,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Contemporary Computer Services Inc.",
"lat": 40.7764052747481,
"lon": -73.1116827311473,
"asn": 12073,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Invision.com, Inc.",
"lat": 40.7555588829512,
"lon": -73.9006050514863,
"asn": 12251,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "WeightWatchers.com, Inc.",
"lat": 40.679,
"lon": -73.4871,
"asn": 36064,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Lam Cloud Mgmt, LLC",
"lat": 40.4480316766501,
"lon": -74.2839819066888,
"asn": 36171,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "BOCES Southern Westchester Lower Hudson Regional Information Center",
"lat": 40.98817193317,
"lon": -73.7276618918573,
"asn": 18481,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "E D & F Man Capital Markets, Inc.",
"lat": 41.7815573303523,
"lon": -85.3251471915161,
"asn": 26897,
"customerConeSize": 2
},
{
"country": "MK",
"orgName": "Univerzitet \"Sv. Kiril i Metodij\"",
"lat": 41.9618199967458,
"lon": 21.5157998690059,
"asn": 5379,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "PIONIER, National Research and Education Network in Poland",
"lat": 51.8371683103112,
"lon": 19.1848337050326,
"asn": 8501,
"customerConeSize": 144
},
{
"country": "SI",
"orgName": "ARNES",
"lat": 46.0935492876554,
"lon": 14.6467702134121,
"asn": 2107,
"customerConeSize": 7
},
{
"country": "TR",
"orgName": "Turksat Uydu Haberlesme ve Kablo TV Isletme A.S.",
"lat": 39.828509394078,
"lon": 30.6809608230343,
"asn": 47524,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "TELLCOM ILETISIM HIZMETLERI A.S.",
"lat": 40.058246871126,
"lon": 29.970428570675,
"asn": 34984,
"customerConeSize": 237
},
{
"country": "TR",
"orgName": "TURKUVAZ RADYO TELEVIZYON HABERLESME VE YAYINCILIK A.S.",
"lat": 41.0136,
"lon": 28.9635,
"asn": 41902,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "NAKSAN Plastik ve Enerji SAN.VE TIC.A.S.",
"lat": 37.0684,
"lon": 37.39,
"asn": 43582,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "BEYKOZ BELEDIYESI",
"lat": 41.0136,
"lon": 28.9635001,
"asn": 196971,
"customerConeSize": 1
},
{
"country": "IQ",
"orgName": "Newroz Telecom Ltd.",
"lat": 36.1661325056109,
"lon": 44.0055058822379,
"asn": 21277,
"customerConeSize": 17
},
{
"country": "TR",
"orgName": "Viking Turizm ve Ticaret AS",
"lat": 41.1297,
"lon": 29.1136,
"asn": 31085,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "Is Net Elektonik Bilgi Uretim Dagitim Ticaret ve Iletisim Hizmetleri A.S.",
"lat": 40.9199954848982,
"lon": 29.2463771477979,
"asn": 9021,
"customerConeSize": 12
},
{
"country": "UA",
"orgName": "Beetec Telecom LLC",
"lat": 46.4791,
"lon": 30.7272001,
"asn": 197221,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Sumix Ukraine LLC",
"lat": 50.4409,
"lon": 30.5271998,
"asn": 24681,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "LLC \"CRELCOM\"",
"lat": 45.2572155952087,
"lon": 34.3185739893425,
"asn": 6789,
"customerConeSize": 33
},
{
"country": "LT",
"orgName": "PUBLIC JOINT STOCK COMPANY \"INGULETS IRON ORE ENRICHMENT WORKS\"",
"lat": 47.8936,
"lon": 33.3637,
"asn": 34068,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "ISP \"Fregat\" Ltd.",
"lat": 48.4693768941372,
"lon": 35.0615439842912,
"asn": 15377,
"customerConeSize": 17
},
{
"country": "US",
"orgName": "Optimized Micro Devices LLC",
"lat": 41.373,
"lon": -72.2308,
"asn": 46651,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Mediacom Communications Corp",
"lat": 39.5327899129308,
"lon": -90.489633567371,
"asn": 30036,
"customerConeSize": 19
},
{
"country": "US",
"orgName": "The New York Public Library/LIONS",
"lat": 40.8318391327262,
"lon": -83.1253174227331,
"asn": 35999,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Interactions Corporation",
"lat": 40.7521,
"lon": -73.9945,
"asn": 40417,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Veroxity Technology Partners, Inc.",
"lat": 42.4307101156376,
"lon": -74.535073423523,
"asn": 14985,
"customerConeSize": 10
},
{
"country": "US",
"orgName": "Granite Block Global Data Center, Inc",
"lat": 42.2872,
"lon": -71.3523,
"asn": 11713,
"customerConeSize": 4
},
{
"country": "US",
"orgName": "HART SYSTEMS INC",
"lat": 40.7265002053039,
"lon": -73.2040906387953,
"asn": 16873,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "SABEY INTERGATEEXCHANGE LLC",
"lat": 47.6321561508498,
"lon": -106.089293048098,
"asn": 55264,
"customerConeSize": 4
},
{
"country": "US",
"orgName": "21st Century Fox",
"lat": 40.755745070622,
"lon": -73.9918987958074,
"asn": 5088,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "NetRiver INT LLC",
"lat": 47.7429555911551,
"lon": -121.476076091868,
"asn": 19528,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Harris CapRock Communications, Inc.",
"lat": 17.3214339062223,
"lon": -78.4577030827865,
"asn": 5666,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "IPE INFORMATICA LTDA",
"lat": -25.3635028131712,
"lon": -49.8657412446622,
"asn": 11835,
"customerConeSize": 96
},
{
"country": "BR",
"orgName": "C & M Software Ltda.",
"lat": -23.5183024793357,
"lon": -46.8644638460721,
"asn": 53083,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "A ALVES GOMES INFORMATICA - ME",
"lat": -13.6515739138305,
"lon": -43.6910717638814,
"asn": 262393,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Cemig Telecomunicações SA",
"lat": -20.2172375775442,
"lon": -44.2804889299681,
"asn": 23106,
"customerConeSize": 39
},
{
"country": "BR",
"orgName": "STAR ONE S.A.",
"lat": -22.7729056185729,
"lon": -43.3512960043638,
"asn": 27652,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "NipBr - NipCable do Brasil Telecom LTDA",
"lat": -22.4019264368834,
"lon": -46.3407602138535,
"asn": 27693,
"customerConeSize": 16
},
{
"country": "BR",
"orgName": "Tribunal Regional do Trabalho da 4 Regiao",
"lat": -30.0327013495974,
"lon": -51.1643,
"asn": 52622,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "VESX Networks",
"lat": -23.3631983875058,
"lon": -51.8511878977613,
"asn": 262355,
"customerConeSize": 12
},
{
"country": "BR",
"orgName": "REZENDE SISTEMAS LTDA",
"lat": -18.9148501984094,
"lon": -48.2806743978764,
"asn": 262994,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Internet 5.8 Provedor e Informatica Ltda-ME",
"lat": -12.7440318843713,
"lon": -60.1370851223068,
"asn": 262394,
"customerConeSize": 8
},
{
"country": null,
"orgName": null,
"lat": 44.2984792800475,
"lon": -73.818010883036,
"asn": 55706,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "Wharf T&T Ltd.",
"lat": 22.3614775102577,
"lon": 114.203834648096,
"asn": 9381,
"customerConeSize": 77
},
{
"country": "US",
"orgName": "CDNetworks Inc.",
"lat": 59.2038188539964,
"lon": -149.472985855949,
"asn": 36408,
"customerConeSize": 2
},
{
"country": "MY",
"orgName": "Asian Broadcasting Network (M) Sdn Bhd",
"lat": 3.04985420167405,
"lon": 101.647375748396,
"asn": 132514,
"customerConeSize": 1
},
{
"country": "PK",
"orgName": "Pakistan Telecommunication Company Limited",
"lat": 31.6179353056737,
"lon": 72.2421271399562,
"asn": 17557,
"customerConeSize": 57
},
{
"country": "YE",
"orgName": "TeleYemen",
"lat": 14.9472575332747,
"lon": 44.0924616487624,
"asn": 12486,
"customerConeSize": 1
},
{
"country": "OM",
"orgName": "OmanTel NAP",
"lat": 23.6040345513916,
"lon": 58.5330786410262,
"asn": 28885,
"customerConeSize": 4
},
{
"country": "DE",
"orgName": "NETWAYS GmbH",
"lat": 49.4595367122107,
"lon": 11.0392034420979,
"asn": 61303,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "3Q Medien GmbH",
"lat": 52.4764,
"lon": 12.9877,
"asn": 62359,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DedFiberCo",
"lat": 39.9767042493352,
"lon": -78.945237305765,
"asn": 16628,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "i3B - Internetbreitband GmbH",
"lat": 47.1820729657781,
"lon": 14.7274269708363,
"asn": 39912,
"customerConeSize": 37
},
{
"country": "RU",
"orgName": "Ioffe Physical-Technical Institute of the Russian Academy of Sciences",
"lat": 59.939,
"lon": 30.3158002,
"asn": 3351,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "National Research University of Electronic Technology",
"lat": 55.7616,
"lon": 37.6411009,
"asn": 31575,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Kuban State University",
"lat": 47.0479848809963,
"lon": 38.7986120894264,
"asn": 8663,
"customerConeSize": 1
},
{
"country": "EE",
"orgName": "Pirix Ltd",
"lat": 59.939,
"lon": 30.3157998,
"asn": 56534,
"customerConeSize": 39
},
{
"country": "RU",
"orgName": "State Educational Institution of Higher Professional Education Ulyanovsk State University",
"lat": 54.2965,
"lon": 48.3688,
"asn": 8599,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Garant-Park-Telecom, Ltd.",
"lat": 55.7682998341317,
"lon": 37.537566556658,
"asn": 5537,
"customerConeSize": 22
},
{
"country": "DE",
"orgName": "XCOM AG",
"lat": 51.2399040639444,
"lon": 6.75891860446994,
"asn": 15446,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "BT Public Internet Service",
"lat": 52.4262913807728,
"lon": -1.37631601864405,
"asn": 2856,
"customerConeSize": 159
},
{
"country": "DE",
"orgName": "Consinto GmbH",
"lat": 49.4638297892258,
"lon": 11.0190957501695,
"asn": 34191,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Allianz Managed Operations & Services SE",
"lat": 50.4053934552243,
"lon": 8.07830337124596,
"asn": 15580,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "BT Italia S.p.A.",
"lat": 43.893621920401,
"lon": 10.5108951320677,
"asn": 8968,
"customerConeSize": 57
},
{
"country": "PL",
"orgName": "BONDSPOT S.A.",
"lat": 52.1884,
"lon": 21.0116002,
"asn": 58017,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Elektrownia Polaniec SA Grupa GDF SUEZ Energia Polska",
"lat": 50.5198,
"lon": 21.4426,
"asn": 197135,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "ZAKLAD GOSPODARKI LOKALOWEJ SP. Z O.O. W BIALEJ PODLASKIEJ",
"lat": 52.0294,
"lon": 23.1611,
"asn": 199981,
"customerConeSize": 1
},
{
"country": "LT",
"orgName": "UAB Technologiju ir inovaciju centras",
"lat": 54.2306337473076,
"lon": 22.1146999378898,
"asn": 24607,
"customerConeSize": 12
},
{
"country": "PL",
"orgName": "RR Donnelly Europe Sp.zoo",
"lat": 55.7960537696151,
"lon": -62.8684767663853,
"asn": 39174,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "SITEL Sp z o. o.",
"lat": 50.550130280597,
"lon": 18.9498573767406,
"asn": 39869,
"customerConeSize": 8
},
{
"country": "RO",
"orgName": "IT QUEST SRL",
"lat": 46.757,
"lon": 23.5824,
"asn": 61361,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "Vali Impex SRL",
"lat": 47.1685,
"lon": 27.5664,
"asn": 61112,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "AVIROMS RENT-A-CAR S.R.L.",
"lat": 44.4599,
"lon": 26.1333002,
"asn": 198574,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Telehouse EAD",
"lat": 43.5568681904164,
"lon": 22.9679587639444,
"asn": 57344,
"customerConeSize": 76
},
{
"country": "RO",
"orgName": "SC Industrial Computer Group SRL",
"lat": 44.4599,
"lon": 26.1332998,
"asn": 41210,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "\"NORMA TELECOM\" S.R.L.",
"lat": 47.0227645928563,
"lon": 28.8439193074738,
"asn": 31546,
"customerConeSize": 27
},
{
"country": "IT",
"orgName": "Nuovo Pignone S.p.A",
"lat": 43.8032,
"lon": 11.214,
"asn": 25350,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Telecom Italia S.p.a.",
"lat": 43.1285822403676,
"lon": 11.8927109989691,
"asn": 3269,
"customerConeSize": 173
},
{
"country": "IT",
"orgName": "Banca Popolare di Vicenza S.C.p.A.",
"lat": 45.5459,
"lon": 11.5403,
"asn": 24805,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "MIS - Mediobanca Innovation Service S.C.P.A",
"lat": 45.4917531903206,
"lon": 10.6474775108642,
"asn": 44485,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "InAsset S.r.l.",
"lat": 46.0060899472295,
"lon": 13.1806458653495,
"asn": 42957,
"customerConeSize": 7
},
{
"country": "IT",
"orgName": "Provincia di Padova",
"lat": 45.4079626596923,
"lon": 11.8804129424174,
"asn": 47875,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Spin SpA",
"lat": 46.6885158497276,
"lon": 10.874615121737,
"asn": 6734,
"customerConeSize": 4
},
{
"country": "IT",
"orgName": "Postecom s.p.a. Autonomous System",
"lat": 45.0260536273029,
"lon": 9.61495522260573,
"asn": 15720,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Welcome Italia S.p.A",
"lat": 44.2425453290149,
"lon": 10.6436451049014,
"asn": 21056,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Chunghwa Telecom Global, INC",
"lat": 41.1998104899649,
"lon": -127.864959560988,
"asn": 33717,
"customerConeSize": 1
},
{
"country": "SG",
"orgName": "ZONE Telecom Pte Ltd",
"lat": 1.30612,
"lon": 103.8329999,
"asn": 132142,
"customerConeSize": 4
},
{
"country": "TW",
"orgName": "Chang Gung University",
"lat": 25.0389,
"lon": 121.509,
"asn": 38844,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "INDOSAT Internet Network Provider",
"lat": -6.03537452899489,
"lon": 106.783878828189,
"asn": 4761,
"customerConeSize": 150
},
{
"country": "SE",
"orgName": "Medical Products Agency",
"lat": 59.8763,
"lon": 17.6607,
"asn": 199564,
"customerConeSize": 1
},
{
"country": "DK",
"orgName": "Netgroup A/S",
"lat": 55.9466144527895,
"lon": 12.0055911891914,
"asn": 16245,
"customerConeSize": 20
},
{
"country": "SE",
"orgName": "Ricoh Sverige AB",
"lat": 59.3598772596292,
"lon": 18.0224361676362,
"asn": 15912,
"customerConeSize": 1
},
{
"country": "DK",
"orgName": "Fredensborg Kommune",
"lat": 55.9783,
"lon": 12.4024,
"asn": 201720,
"customerConeSize": 1
},
{
"country": "DK",
"orgName": "jay.net a/s",
"lat": 55.6857772266933,
"lon": 12.3314381766941,
"asn": 16095,
"customerConeSize": 10
},
{
"country": "DK",
"orgName": "Arrowhead A/S",
"lat": 55.6811590406311,
"lon": 11.7892628113857,
"asn": 15516,
"customerConeSize": 1
},
{
"country": "NO",
"orgName": "GET Norway",
"lat": 59.7723745690174,
"lon": 10.0728773112887,
"asn": 41164,
"customerConeSize": 5
},
{
"country": "DK",
"orgName": "Proshop ApS",
"lat": 56.117486662483,
"lon": 10.1799125196658,
"asn": 43959,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "WANSecurity, Inc.",
"lat": 44.0387143331936,
"lon": -111.233646852838,
"asn": 1421,
"customerConeSize": 5
},
{
"country": "UA",
"orgName": "PE Sinenko Vitaliy Mihailovich",
"lat": 49.8464906211842,
"lon": 24.1616679701626,
"asn": 44629,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Emplot Ltd.",
"lat": 50.4409,
"lon": 30.5272003,
"asn": 21488,
"customerConeSize": 48
},
{
"country": "UA",
"orgName": "PE Belokoputov Maksim Anatolievich",
"lat": 49.3347372504471,
"lon": 33.3908843926969,
"asn": 47707,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Internet Systems Consortium, Inc.",
"lat": 50.1179,
"lon": 8.6635801,
"asn": 30128,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "PRIVATE JOINT-STOCK COMPANY \"FARLEP-INVEST\"",
"lat": 48.2921128306576,
"lon": 32.0945140344023,
"asn": 6703,
"customerConeSize": 35
},
{
"country": "HN",
"orgName": "Inversiones Apolo S.A. de C.V.",
"lat": 15.4998704744427,
"lon": -87.9964127487624,
"asn": 28088,
"customerConeSize": 1
},
{
"country": "GT",
"orgName": "COMCEL GUATEMALA S.A.",
"lat": 12.719207142188,
"lon": -82.4535802717896,
"asn": 262206,
"customerConeSize": 71
},
{
"country": "CO",
"orgName": "Universidad Piloto de Colombia",
"lat": 4.627,
"lon": -74.086,
"asn": 262226,
"customerConeSize": 1
},
{
"country": "CO",
"orgName": "GILAT Colombia S.A. E.S.P.",
"lat": 3.65809877195314,
"lon": -74.2555395973693,
"asn": 28083,
"customerConeSize": 1
},
{
"country": "CO",
"orgName": "INTERNEXA S.A. E.S.P",
"lat": 11.2173034494835,
"lon": -75.9550353855103,
"asn": 18678,
"customerConeSize": 42
},
{
"country": "DO",
"orgName": "Telecable Central, S.A.",
"lat": 19.2167,
"lon": -70.5167,
"asn": 263689,
"customerConeSize": 1
},
{
"country": "GT",
"orgName": "Telgua",
"lat": 13.716272059919,
"lon": -88.8809680879256,
"asn": 14754,
"customerConeSize": 23
},
{
"country": "AZ",
"orgName": "Eurosel LLC",
"lat": 40.3800818037115,
"lon": 49.8693581599216,
"asn": 197223,
"customerConeSize": 1
},
{
"country": "AZ",
"orgName": "\"SMART SISTEMZ TECHNOLOJI\" MMM",
"lat": 40.3678843750507,
"lon": 49.8829750101594,
"asn": 34876,
"customerConeSize": 1
},
{
"country": "ZA",
"orgName": "Triponza Trading 376 CC",
"lat": -26.1943624764863,
"lon": 28.0838463015577,
"asn": 37549,
"customerConeSize": 1
},
{
"country": "ZA",
"orgName": "Marion Technology Pty Ltd",
"lat": -25.8817443968818,
"lon": 28.1631214774329,
"asn": 37658,
"customerConeSize": 1
},
{
"country": "ZA",
"orgName": "ITEC Communications Pty Ltd",
"lat": -26.0514,
"lon": 28.0281,
"asn": 37634,
"customerConeSize": 1
},
{
"country": "ZA",
"orgName": "Telkom SA Ltd.",
"lat": -26.0519189111608,
"lon": 27.539048646178,
"asn": 5713,
"customerConeSize": 91
},
{
"country": "ZA",
"orgName": "Cipherwave",
"lat": -26.815943409919,
"lon": 27.7093644287104,
"asn": 37315,
"customerConeSize": 1
},
{
"country": "ZA",
"orgName": "MTN SA",
"lat": -29.3418077849147,
"lon": 24.5163012041877,
"asn": 16637,
"customerConeSize": 80
},
{
"country": "IN",
"orgName": "Shree Omkar Infocom Pvt Ltd",
"lat": 19.0452191030046,
"lon": 72.9041236397384,
"asn": 132137,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Reliance Communications Ltd.DAKC MUMBAI",
"lat": 20.7935313066457,
"lon": 74.8029393219535,
"asn": 18101,
"customerConeSize": 279
},
{
"country": "IN",
"orgName": "Sanchit Infocomm Pvt. Ltd.",
"lat": 31.6218,
"lon": 74.864,
"asn": 133247,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Tanla Solutions Ltd, Multinational Company",
"lat": 17.3855510244708,
"lon": 78.492000326911,
"asn": 45119,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Netmagic Datacenter Mumbai",
"lat": 19.7523479646272,
"lon": 73.4067353101183,
"asn": 17439,
"customerConeSize": 23
},
{
"country": "IN",
"orgName": "CITYCOM NETWORKS PVT LTD",
"lat": 22.599586397053,
"lon": 76.7299014857644,
"asn": 10029,
"customerConeSize": 20
},
{
"country": "US",
"orgName": "Ace Data Centers, Inc.",
"lat": 40.2084868235511,
"lon": -111.612699561283,
"asn": 11798,
"customerConeSize": 25
},
{
"country": "US",
"orgName": "DOCUMENT TECHNOLOGIES, LLC",
"lat": 47.6869536447478,
"lon": -122.209326172089,
"asn": 26908,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "IdenTrust",
"lat": 37.7868,
"lon": -122.396,
"asn": 22262,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Quantum Communications LLC",
"lat": 44.2099188739049,
"lon": -121.167237861147,
"asn": 30583,
"customerConeSize": 11
},
{
"country": "US",
"orgName": "InfoWest, Inc.",
"lat": 37.5191616722152,
"lon": -113.279964867805,
"asn": 11071,
"customerConeSize": 7
},
{
"country": "US",
"orgName": "XEROX CORPORATION",
"lat": 62.0747606601122,
"lon": -78.088592788258,
"asn": 26662,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "World Communications, Inc.",
"lat": 47.5590659169038,
"lon": -122.263374343663,
"asn": 32016,
"customerConeSize": 7
},
{
"country": "TH",
"orgName": "Fiber To The Home Co., Ltd.",
"lat": 13.7297723152085,
"lon": 100.516669284353,
"asn": 9413,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "TRUE INTERNET Co.,Ltd.",
"lat": 18.4090833331757,
"lon": 100.91924608393,
"asn": 7470,
"customerConeSize": 88
},
{
"country": "TH",
"orgName": "Milcom Co., Ltd. Internet Service Provider Bangkok",
"lat": 13.733,
"lon": 100.5,
"asn": 38888,
"customerConeSize": 3
},
{
"country": "NL",
"orgName": "Antagonist B.V.",
"lat": 52.2172,
"lon": 6.89862,
"asn": 51696,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Eurofiber Nederland BV",
"lat": 51.4695355650669,
"lon": 5.45934544465809,
"asn": 44953,
"customerConeSize": 22
},
{
"country": "NL",
"orgName": "Ordina Application Outsourcing & Projecten B.V.",
"lat": 53.1269683554258,
"lon": 6.54246109096508,
"asn": 20867,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Cegeka Nederland B.V.",
"lat": 52.0071798729625,
"lon": 5.73305274763082,
"asn": 39059,
"customerConeSize": 1
},
{
"country": "BE",
"orgName": "Unix-Solutions BVBA",
"lat": 50.9243939162893,
"lon": 4.38430693111025,
"asn": 39923,
"customerConeSize": 9
},
{
"country": "NL",
"orgName": "IP Visie Networking B.V.",
"lat": 51.7239484567108,
"lon": 4.66109959618856,
"asn": 198089,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Globecomm Europe B.V.",
"lat": 54.8342969579101,
"lon": -9.19018799408461,
"asn": 24753,
"customerConeSize": 8
},
{
"country": "CA",
"orgName": "The Toronto Stock Exchange",
"lat": 43.7021453980447,
"lon": -79.2321067414955,
"asn": 26321,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Global Relay Communications Inc.",
"lat": 49.5246543014633,
"lon": -117.52459410259,
"asn": 15000,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "MTS Allstream Inc.",
"lat": 49.8926,
"lon": -97.1404,
"asn": 7122,
"customerConeSize": 16
},
{
"country": "CA",
"orgName": "Saskatchewan Telecommunications",
"lat": 51.2043823671233,
"lon": -104.522813464926,
"asn": 803,
"customerConeSize": 15
},
{
"country": "BG",
"orgName": "MEDICOM BULGARIA OOD",
"lat": 42.7168851704747,
"lon": 23.3074833307097,
"asn": 31435,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "B-Systems EOOD",
"lat": 42.6976,
"lon": 23.3223001,
"asn": 43778,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "KPMG Bulgaria OOD",
"lat": 42.6575,
"lon": 23.3157,
"asn": 41803,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "IPACCT Ltd.",
"lat": 41.7314954067322,
"lon": 24.3191282064575,
"asn": 31287,
"customerConeSize": 31
},
{
"country": "BG",
"orgName": "SOLYTRON - SD - PETAR IVANOV AND GEORGI NAKOV",
"lat": 42.6976,
"lon": 23.3222999,
"asn": 62411,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "OPTICCOM- BULGARIA Ltd.",
"lat": 42.6891068116507,
"lon": 23.314577036996,
"asn": 42555,
"customerConeSize": 13
},
{
"country": "ID",
"orgName": "Kementerian Badan Usaha Milik Negara",
"lat": -6.2257,
"lon": 106.973,
"asn": 131782,
"customerConeSize": 1
},
{
"country": "SG",
"orgName": "TELEKOMUNIKASI INDONESIA INTERNATIONAL, PTE.LTD",
"lat": 0.961436686612151,
"lon": 103.970436038641,
"asn": 56308,
"customerConeSize": 17
},
{
"country": "ID",
"orgName": "Badan Meteorologi dan Geofisika",
"lat": -6.1749,
"lon": 106.828,
"asn": 38779,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PENGGUNA DIKS PTH UNSOED",
"lat": -7.467,
"lon": 109.15,
"asn": 131709,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT AJN Solusindo",
"lat": -6.133,
"lon": 106.75,
"asn": 45300,
"customerConeSize": 17
},
{
"country": "ID",
"orgName": "PT. SEKAWAN GLOBAL KOMUNIKA",
"lat": -7.40685008078411,
"lon": 109.383034808173,
"asn": 46029,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "Lintas Data Prima, PT",
"lat": -7.6734861154432,
"lon": 111.089049213264,
"asn": 45305,
"customerConeSize": 11
},
{
"country": "US",
"orgName": "Wingspan Investment Management, L.P.",
"lat": 40.7631,
"lon": -73.9725,
"asn": 54913,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Cybera, Inc.",
"lat": 35.48127919767,
"lon": -86.1684258816618,
"asn": 22820,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "Availo Networks AB",
"lat": 57.8023819348472,
"lon": 13.4276801302632,
"asn": 16150,
"customerConeSize": 62
},
{
"country": "SE",
"orgName": "Cygate Group AB",
"lat": 57.7755532744225,
"lon": 15.7401119141074,
"asn": 197308,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "Vision 2099 AB",
"lat": 56.6744,
"lon": 12.8578,
"asn": 62254,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "Teknikbyran i Sverige AB",
"lat": 59.3429085219069,
"lon": 18.7928934181898,
"asn": 51815,
"customerConeSize": 8
},
{
"country": "SE",
"orgName": "ODERLAND Webbhotell AB",
"lat": 57.4886277859904,
"lon": 12.0758501834754,
"asn": 44136,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "Fiber Direkt i Sverige AB",
"lat": 59.3375757504886,
"lon": 18.0612172659262,
"asn": 42303,
"customerConeSize": 5
},
{
"country": "RU",
"orgName": "JSC United Telecom",
"lat": 58.9669407472953,
"lon": 32.2531445199681,
"asn": 50488,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OJSC Svyazinform",
"lat": 53.5718007154762,
"lon": 36.887437121891,
"asn": 58002,
"customerConeSize": 41
},
{
"country": "RU",
"orgName": "Aiconet Ltd.",
"lat": 59.939,
"lon": 30.3158003,
"asn": 16321,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OOO Kolpinskie Internet-Seti",
"lat": 59.8353169350325,
"lon": 30.4560992024731,
"asn": 47211,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Metroset Ltd.",
"lat": 59.233372566649,
"lon": 70.5661366681161,
"asn": 50923,
"customerConeSize": 23
},
{
"country": "LV",
"orgName": "Mediafon UAB",
"lat": 54.6894,
"lon": 25.28,
"asn": 43482,
"customerConeSize": 1
},
{
"country": "LV",
"orgName": "Rigensis Bank AS",
"lat": 56.9634,
"lon": 24.1213,
"asn": 198116,
"customerConeSize": 1
},
{
"country": "LT",
"orgName": "Swedbank, AB",
"lat": 54.6894,
"lon": 25.2800001,
"asn": 21420,
"customerConeSize": 1
},
{
"country": "BY",
"orgName": "Republican Unitary Telecommunication Enterprise Beltelecom",
"lat": 53.7796158957529,
"lon": 27.4202356283481,
"asn": 6697,
"customerConeSize": 51
},
{
"country": "SG",
"orgName": "60 Woodlands Industrial Park D Street 2",
"lat": 1.30612,
"lon": 103.8330002,
"asn": 55487,
"customerConeSize": 1
},
{
"country": "SG",
"orgName": "Singapore Polytechnic",
"lat": 1.30612,
"lon": 103.8329998,
"asn": 45133,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "CSLOXINFO Project for IAG Insurance",
"lat": 13.4666545659218,
"lon": 100.675977404921,
"asn": 4750,
"customerConeSize": 60
},
{
"country": "SG",
"orgName": "63 chulia",
"lat": 1.30612,
"lon": 103.8330003,
"asn": 45755,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "TraviAustria GmbH",
"lat": 48.2092,
"lon": 16.3728,
"asn": 25522,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "ACOnet Backbone",
"lat": 47.9837826743347,
"lon": 15.9266559404328,
"asn": 1853,
"customerConeSize": 91
},
{
"country": "AT",
"orgName": "bwin.party services (Austria) GmbH",
"lat": 48.2092,
"lon": 16.3728001,
"asn": 13008,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Empirion Telekommunikations Services GmbH",
"lat": 48.0079622298504,
"lon": 16.1985623721964,
"asn": 21360,
"customerConeSize": 1
},
{
"country": "ZA",
"orgName": "Dube TradePort",
"lat": -29.85,
"lon": 31.0167,
"asn": 37302,
"customerConeSize": 1
},
{
"country": "ZA",
"orgName": "Cool Ideas 1594 cc",
"lat": -26.1869,
"lon": 28.005,
"asn": 37680,
"customerConeSize": 1
},
{
"country": "ZA",
"orgName": "eNetworks cc",
"lat": -33.7218132373433,
"lon": 19.1629777629122,
"asn": 32653,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "AT&T Global Network Services, LLC",
"lat": 36.1795988929058,
"lon": -75.2234270810831,
"asn": 2686,
"customerConeSize": 81
},
{
"country": "DE",
"orgName": "Johann Wolfgang Goethe-Universitat Frankfurt am Main",
"lat": 50.1251,
"lon": 8.64682,
"asn": 20633,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Knipp Medien und Kommunikation GmbH",
"lat": 51.3916674401726,
"lon": 7.44391811476257,
"asn": 8391,
"customerConeSize": 16
},
{
"country": "DE",
"orgName": "Kommunales Rechenzentrum Niederrhein",
"lat": 51.4988757538542,
"lon": 6.56325933025573,
"asn": 48049,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "KKH Allianz",
"lat": 52.2652,
"lon": 10.5223,
"asn": 49639,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "tkrz Stadtwerke GmbH",
"lat": 52.1835439657895,
"lon": 7.45074187019168,
"asn": 42184,
"customerConeSize": 7
},
{
"country": "CA",
"orgName": "Memorial University of Newfoundland",
"lat": 47.649711671067,
"lon": -53.0125203900086,
"asn": 6579,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Mohawk Shared Services Inc",
"lat": 43.1508,
"lon": -80.2094,
"asn": 11037,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Nikon, Inc.",
"lat": 42.140262219605,
"lon": -76.5203279076142,
"asn": 46493,
"customerConeSize": 1
},
{
"country": "ML",
"orgName": "AFRIBONE MALI SA",
"lat": 12.6429,
"lon": -8.00209,
"asn": 36864,
"customerConeSize": 1
},
{
"country": "ML",
"orgName": "COMSATES SARL",
"lat": 12.6429,
"lon": -8.0020899,
"asn": 327722,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CJSC \"Greenatom\"",
"lat": 55.7616,
"lon": 37.6410991,
"asn": 57573,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OJSC Rostelecom",
"lat": 54.3083609778342,
"lon": 48.2277038379427,
"asn": 2878,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Telecom Ltd",
"lat": 55.0392,
"lon": 82.9278,
"asn": 28927,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OOO \"PC\"",
"lat": 55.8853874954279,
"lon": 37.5452062355608,
"asn": 51008,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Fregat Ltd.",
"lat": 51.8408,
"lon": 107.608,
"asn": 49578,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OAO Bank Vozrozhdenie",
"lat": 55.8207,
"lon": 37.346,
"asn": 39350,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OOO FREEnet Group",
"lat": 55.3712,
"lon": 86.0524,
"asn": 6869,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Business-Systems Ltd",
"lat": 50.656304417229,
"lon": 44.7229639245926,
"asn": 196768,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OJSC Rostelecom",
"lat": 57.1909597320357,
"lon": 53.8359194075357,
"asn": 35400,
"customerConeSize": 88
},
{
"country": "RU",
"orgName": "JSC Telecom-Uslugi",
"lat": 55.6919202436179,
"lon": 38.730104048802,
"asn": 57489,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "NBCUniversal",
"lat": 43.6008103880079,
"lon": -74.5821982651426,
"asn": 54040,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Broadview Networks, Inc.",
"lat": 40.1367951474137,
"lon": -74.969011427452,
"asn": 3385,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "Comcast Cable Communications, Inc.",
"lat": 33.8190808443397,
"lon": -91.6468258078101,
"asn": 22258,
"customerConeSize": 1
},
{
"country": "WS",
"orgName": "WISEVAN GUARD Limited",
"lat": 29.2391527639341,
"lon": -100.069210110753,
"asn": 9218,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Convergys Corp.",
"lat": 38.1135284845817,
"lon": -90.2483844050774,
"asn": 15084,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Telstra Pty Ltd",
"lat": -34.0797681927113,
"lon": 146.338674182269,
"asn": 1221,
"customerConeSize": 180
},
{
"country": "US",
"orgName": "Time Warner Cable",
"lat": 35.1901355123959,
"lon": -80.8968299348551,
"asn": 3456,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Time Warner Cable Internet LLC",
"lat": 40.4017763578592,
"lon": -84.213269242954,
"asn": 10796,
"customerConeSize": 257
},
{
"country": "US",
"orgName": "Navisite, Inc.",
"lat": 42.5705093125317,
"lon": -71.9983853915445,
"asn": 14135,
"customerConeSize": 5
},
{
"country": "HK",
"orgName": "China Construction Bank (Asia) Corporation Limited",
"lat": 22.276,
"lon": 114.1670002,
"asn": 38475,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "Elliott Advisors (HK) LTD, Financial, Central HK",
"lat": 40.7642,
"lon": -73.9874,
"asn": 24329,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "Jardine OneSolution",
"lat": 22.276,
"lon": 114.1669998,
"asn": 17537,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "Website Solution Limited",
"lat": 22.276,
"lon": 114.1670003,
"asn": 56059,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "Unit 09-18, Level 12, Tower 1",
"lat": 22.2993,
"lon": 114.174,
"asn": 58453,
"customerConeSize": 104
},
{
"country": "IN",
"orgName": "Envestnet Asset Management India Pvt. Ltd",
"lat": 8.76582,
"lon": 76.6915,
"asn": 132239,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Infrastrsture development finance company.",
"lat": 15.071803498802,
"lon": 77.8580420546815,
"asn": 45760,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "HDFC Bank House",
"lat": 19.0008,
"lon": 72.8308,
"asn": 131283,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Stratify Software India Ltd.",
"lat": 12.9706,
"lon": 77.6002001,
"asn": 9666,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Tata Teleservices ISP AS",
"lat": 20.3470742410286,
"lon": 77.2445808024767,
"asn": 45820,
"customerConeSize": 94
},
{
"country": "IN",
"orgName": "NxtGen Datacenter & Cloud Technologies Pvt. Ltd.",
"lat": 11.9189284033447,
"lon": 80.2740987428686,
"asn": 132717,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Dishnet Wireless Limited. Broadband Wireless",
"lat": 20.9944151135743,
"lon": 78.4807813610338,
"asn": 10201,
"customerConeSize": 30
},
{
"country": "IN",
"orgName": "Obopay Mobile Technology India Pvt Ltd",
"lat": 12.9706,
"lon": 77.6001999,
"asn": 55782,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Tata Teleservices Maharashtra Ltd",
"lat": 18.9431658007135,
"lon": 73.2685578392121,
"asn": 17762,
"customerConeSize": 27
},
{
"country": "JP",
"orgName": "NRI SecureTechnologies, Ltd",
"lat": 35.6759,
"lon": 139.77,
"asn": 55396,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "Research Organization of Information and Systems, National Institute of Informatics",
"lat": 35.7796686470514,
"lon": 137.225900928174,
"asn": 2907,
"customerConeSize": 92
},
{
"country": "JP",
"orgName": "Marusan Securities Co., LTD.",
"lat": 35.6703,
"lon": 139.811,
"asn": 23833,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "Tokushima Central TV Co.,Inc.",
"lat": 34.0714126867448,
"lon": 134.559751264084,
"asn": 45690,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "TOKAI Communications Corporation",
"lat": 35.330757212271,
"lon": 139.003621612256,
"asn": 10010,
"customerConeSize": 40
},
{
"country": "US",
"orgName": "AT&T Internet Services",
"lat": 46.0829456555587,
"lon": 168.975286791337,
"asn": 19485,
"customerConeSize": 1
},
{
"country": "NZ",
"orgName": "IBM New Zealand Limited,",
"lat": -40.8832001184392,
"lon": 174.775230076078,
"asn": 24189,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "AT&T Webhosting Singapore IDC",
"lat": 9.91779368923711,
"lon": 101.820477697369,
"asn": 6904,
"customerConeSize": 6
},
{
"country": "CA",
"orgName": "Beanfield Technologies Inc.",
"lat": 43.1036005259936,
"lon": -80.1924230127712,
"asn": 21949,
"customerConeSize": 17
},
{
"country": "US",
"orgName": "Virtela Technology Services Incorporated",
"lat": 43.6885057705174,
"lon": -79.9928651905245,
"asn": 19810,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Prime Signal Ltd",
"lat": 49.2010213235807,
"lon": -123.027448713264,
"asn": 22105,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Q9 Networks Inc.",
"lat": 43.855458180027,
"lon": -87.2337362905774,
"asn": 12188,
"customerConeSize": 10
},
{
"country": "CA",
"orgName": "SSI Micro Internet Services",
"lat": 62.7818299867723,
"lon": -113.120360349758,
"asn": 22684,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Q9 Networks Inc.",
"lat": 50.1819392972573,
"lon": -107.163953877572,
"asn": 40341,
"customerConeSize": 6
},
{
"country": "US",
"orgName": "MILEWEB, INC.",
"lat": 45.8575207431799,
"lon": -132.445412076936,
"asn": 54994,
"customerConeSize": 1
},
{
"country": "PK",
"orgName": "Transworld Associates (Pvt.) Ltd.",
"lat": 29.0220970652899,
"lon": 69.9518238035045,
"asn": 38193,
"customerConeSize": 95
},
{
"country": "US",
"orgName": "V2 Ventures, LLC (dba ShutterNet)",
"lat": 42.3790747881395,
"lon": -83.4953219871394,
"asn": 8180,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Active Solutions Group",
"lat": 41.3591715840226,
"lon": -84.4398376579151,
"asn": 62588,
"customerConeSize": 6
},
{
"country": "US",
"orgName": "SAMSA",
"lat": 43.424000106957,
"lon": -84.0160163192206,
"asn": 30242,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "EQNET, LLC",
"lat": 53.3527486568541,
"lon": -61.1425846527883,
"asn": 40785,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Winn Telecom",
"lat": 43.4608369142572,
"lon": -84.8565189203062,
"asn": 17143,
"customerConeSize": 5
},
{
"country": "SG",
"orgName": "OSINet Communications Pte Ltd",
"lat": 1.30612,
"lon": 103.8329997,
"asn": 45166,
"customerConeSize": 2
},
{
"country": "AU",
"orgName": "SingTel Optus Pty Ltd",
"lat": -34.8371498607736,
"lon": 148.831791875281,
"asn": 7474,
"customerConeSize": 461
},
{
"country": "US",
"orgName": "Sococo",
"lat": 39.8349282995049,
"lon": -122.324184780028,
"asn": 23511,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Popcap Games, Inc.",
"lat": 47.6126,
"lon": -122.344,
"asn": 36715,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Pacific Servers Inc.",
"lat": 49.3082,
"lon": -123.04,
"asn": 63297,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Little Apple Technologies",
"lat": 45.4676468601442,
"lon": -111.16469152528,
"asn": 11046,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Green House Data, Inc.",
"lat": 41.8124178827899,
"lon": -102.486647727721,
"asn": 33561,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "SRI International",
"lat": 37.5137738290588,
"lon": -121.790160581583,
"asn": 264,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "iod incorporated",
"lat": 44.4345,
"lon": -88.0701,
"asn": 32497,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Packerland Broadband",
"lat": 44.8572829377582,
"lon": -88.3512268843347,
"asn": 46449,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Wittenberg Telephone Company",
"lat": 44.8947111254131,
"lon": -89.107343453121,
"asn": 53586,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "University of Southern California",
"lat": 34.0177,
"lon": -118.284,
"asn": 47,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CULR, LLC",
"lat": 34.688884793402,
"lon": -82.8036334614915,
"asn": 2721,
"customerConeSize": 5
},
{
"country": "US",
"orgName": "Francis Marion University",
"lat": 34.1952,
"lon": -79.7922,
"asn": 393251,
"customerConeSize": 1
},
{
"country": "LT",
"orgName": "Hostinger International Limited",
"lat": 39.5671686681544,
"lon": -77.0243619870151,
"asn": 47583,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Green Cloud Technologies,LLC",
"lat": 36.1898281522225,
"lon": -79.6198930615553,
"asn": 54155,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "Palmetto Primary Care Physicians, LLC",
"lat": 32.8456,
"lon": -79.9778,
"asn": 63132,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Arthrex Inc.",
"lat": 26.274604475926,
"lon": -81.6805286618694,
"asn": 26151,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Hayes Computer Systems",
"lat": 30.2667283973504,
"lon": -84.0368041437596,
"asn": 6912,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Embarq Corporation",
"lat": 33.2426840506131,
"lon": -88.0698585590953,
"asn": 4212,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Jones Onslow Electric Membership Corporation",
"lat": 34.9187923730334,
"lon": -78.1910523947803,
"asn": 53493,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Skyline Telephone",
"lat": 36.350492434626,
"lon": -81.4684928672724,
"asn": 23118,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "Hugh Chatham Memorial Hospital, Inc.",
"lat": 36.3157,
"lon": -80.8162,
"asn": 14095,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Ucomparehealthcare",
"lat": 42.3497,
"lon": -71.5469,
"asn": 54416,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "NSONE Inc",
"lat": 41.4986528831311,
"lon": -75.0151196360664,
"asn": 62597,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "BT Conferencing",
"lat": 41.7615660577649,
"lon": -73.8357229161976,
"asn": 14039,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DBS INTERNATIONAL",
"lat": 40.11520124258,
"lon": -75.5611103193553,
"asn": 17378,
"customerConeSize": 22
},
{
"country": "US",
"orgName": "Expert Service Providers LLC",
"lat": 40.1373420950301,
"lon": -76.1644242205357,
"asn": 33257,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "ENDURANCE REINSURANCE CORPORATION OF AMERICA",
"lat": 40.7247039073741,
"lon": -73.9802679814898,
"asn": 2723,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "ActForex Inc.",
"lat": 40.7081,
"lon": -74.0122,
"asn": 12027,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DoD Network Information Center",
"lat": 33.8003824987187,
"lon": -93.4157165928733,
"asn": 1591,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DoD Network Information Center",
"lat": 48.2802082452449,
"lon": -63.572007671867,
"asn": 27065,
"customerConeSize": 30
},
{
"country": "US",
"orgName": "Headquarters, USAISC",
"lat": 41.1789541373596,
"lon": -75.3764823794448,
"asn": 1475,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DoD Network Information Center",
"lat": 35.2769024861284,
"lon": -108.212131135056,
"asn": 5953,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DoD Network Information Center",
"lat": 30.2607,
"lon": -81.7467,
"asn": 5979,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DoD Network Information Center",
"lat": 38.94385909069,
"lon": -86.5914669839534,
"asn": 6025,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Joint Intelligence Center Pacific",
"lat": 39.9666,
"lon": -83.0123,
"asn": 3916,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DoD Network Information Center",
"lat": 53.7080905359804,
"lon": -39.1880802744647,
"asn": 1733,
"customerConeSize": 4
},
{
"country": "US",
"orgName": "DoD Network Information Center",
"lat": 40.7136520770654,
"lon": -84.8601196715776,
"asn": 3538,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Limelight Networks India",
"lat": 35.6759,
"lon": 139.7700001,
"asn": 55429,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Exponential Interactive, Inc.",
"lat": 37.8344,
"lon": -122.289,
"asn": 33419,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "LiteUp, Inc.",
"lat": 36.7904424343621,
"lon": -107.692254023862,
"asn": 32959,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Meyer Sound",
"lat": 37.8151742274407,
"lon": -122.240089820738,
"asn": 35944,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "FrontPoint Partners LLC",
"lat": 41.0355,
"lon": -73.6282,
"asn": 40273,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Elevated Computing LLC",
"lat": 41.7017,
"lon": -73.9168,
"asn": 14660,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Kipany Productions, LTD.",
"lat": 40.8524892999197,
"lon": -73.9472389782804,
"asn": 53909,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "HAY GROUP INC",
"lat": 39.9526262557678,
"lon": -75.1685733881422,
"asn": 13338,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "The Lefrak Organization, Inc.",
"lat": 40.740675775832,
"lon": -73.9855802105409,
"asn": 32113,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "The Devereux Foundation",
"lat": 40.0910921709191,
"lon": -75.4282063368515,
"asn": 36350,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Weiss Special Operations LLC",
"lat": 40.7463345243245,
"lon": -73.9828506429708,
"asn": 23119,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "IntelliNet Corporation",
"lat": 41.4969,
"lon": -81.6742,
"asn": 55160,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Wolfram Research, Inc.",
"lat": 40.1098737488817,
"lon": -88.2474924671637,
"asn": 11106,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Shouting Ground Technologies",
"lat": 40.2099841492252,
"lon": -88.231734752253,
"asn": 5015,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "R Systems",
"lat": 40.1099,
"lon": -88.2472,
"asn": 19793,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Seattle Community College District",
"lat": 47.6199756662003,
"lon": -122.212432519578,
"asn": 17200,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Washington State K-20 Telecommunications Network",
"lat": 47.599846720632,
"lon": -121.829007855166,
"asn": 10430,
"customerConeSize": 14
},
{
"country": "US",
"orgName": "City of Seattle, Dept. of Admin. Services",
"lat": 47.6064660063739,
"lon": -122.318605373346,
"asn": 3401,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Plateau Telecommunications Incorporated",
"lat": 34.589405392782,
"lon": -103.727716779096,
"asn": 21782,
"customerConeSize": 12
},
{
"country": "US",
"orgName": "New Mexico Institute of Mining and Technology",
"lat": 34.0041299857081,
"lon": -106.967513266119,
"asn": 17153,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Davis Polk & Wardwell",
"lat": 43.2720609133958,
"lon": -73.9351804967411,
"asn": 46784,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Target Media Partners Interactive, LLC",
"lat": 33.9957530570066,
"lon": -118.378523262533,
"asn": 1613,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Brite Voice Systems Inc",
"lat": 37.7422,
"lon": -97.243,
"asn": 6998,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "eHealthInsurance Services Inc.",
"lat": 38.82842060836,
"lon": -111.45559018653,
"asn": 11261,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "AT&T Global Network Services Nederland B.V.",
"lat": 51.5147,
"lon": -0.0832898,
"asn": 57515,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CHR SOLUTIONS INC",
"lat": 31.0218801841041,
"lon": -96.2506770556393,
"asn": 47071,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Internap Network Services Corporation",
"lat": 69.7371226405334,
"lon": -153.840830993281,
"asn": 13792,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Academy Sports & Outdoors",
"lat": 29.8195,
"lon": -95.7523,
"asn": 46928,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "ADT Security Services, Inc.",
"lat": 32.1647032022883,
"lon": -87.1314957856417,
"asn": 18757,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "S. D. Warren Services Co.",
"lat": 43.763244497737,
"lon": -70.214143483112,
"asn": 18694,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Unitel Inc",
"lat": 44.5604908683289,
"lon": -69.260046975255,
"asn": 33728,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DELORME PUBLISHING CO, INC.",
"lat": 43.6907393578207,
"lon": -70.2757172990401,
"asn": 36501,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Mortgage Master, Inc.",
"lat": 42.1848244902799,
"lon": -71.2026950915011,
"asn": 40733,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CX-DATA INC.",
"lat": 41.3805272266296,
"lon": -73.5761543831403,
"asn": 11180,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "G4S Monitoring and Data Services, Inc.",
"lat": 42.6488,
"lon": -71.162,
"asn": 33574,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "McAfee, Inc.",
"lat": 37.353,
"lon": -121.958,
"asn": 17370,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "MX Logic, Inc.",
"lat": 41.9779989019005,
"lon": -97.8994633780109,
"asn": 14600,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Bill Me Later",
"lat": 39.4349,
"lon": -76.6548999,
"asn": 30300,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Bill Me Later",
"lat": 39.4349,
"lon": -76.6549001,
"asn": 30393,
"customerConeSize": 1
},
{
"country": "MX",
"orgName": "Universidad Verecruzana",
"lat": 19.2,
"lon": -96.1333,
"asn": 7184,
"customerConeSize": 1
},
{
"country": "MX",
"orgName": "Iusacell PCS de Mexico, S.A. de C.V.",
"lat": 19.7179006762466,
"lon": -99.3753770297532,
"asn": 22884,
"customerConeSize": 2
},
{
"country": "MX",
"orgName": "CREATIVE MULTILINGUAL STRATEGIES, S. DE R.L. DE C.V.",
"lat": 25.6714,
"lon": -100.309,
"asn": 263158,
"customerConeSize": 1
},
{
"country": "MX",
"orgName": "Internet Engine, S.A. de C.V.",
"lat": 22.7864900441472,
"lon": -100.828235838796,
"asn": 14249,
"customerConeSize": 1
},
{
"country": "MX",
"orgName": "Creatividad Internet Enlaces, S.A. de C.V.",
"lat": 25.7623250122784,
"lon": -100.185432218405,
"asn": 28539,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "AT&T Services, Inc.",
"lat": 40.7776601642043,
"lon": -75.2385366697912,
"asn": 13979,
"customerConeSize": 5
},
{
"country": "US",
"orgName": "Columbus Public Schools",
"lat": 39.97183311329,
"lon": -83.0023610354406,
"asn": 26818,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "West Virginia University",
"lat": 39.6329762482168,
"lon": -79.9506234513194,
"asn": 12118,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "West Virginia University Foundation, Inc.",
"lat": 39.6142,
"lon": -79.9158,
"asn": 23361,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "City of Cartersville",
"lat": 34.1776,
"lon": -84.8543,
"asn": 393446,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "PAVLOV MEDIA INC",
"lat": 37.28275470635,
"lon": -89.4909610969081,
"asn": 46925,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "FLOYD HEALTHCARE MANAGEMENT, INC.",
"lat": 34.2164098551601,
"lon": -85.1882611345677,
"asn": 16480,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "GLENWOOD TELEPHONE MEMBERSHIP",
"lat": 40.4085641207807,
"lon": -98.6284420919661,
"asn": 29900,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Allo Communications LLC",
"lat": 41.5048036208386,
"lon": -102.272090273156,
"asn": 15108,
"customerConeSize": 6
},
{
"country": "US",
"orgName": "CENCOM INC",
"lat": 42.143054423814,
"lon": -97.2390130544855,
"asn": 13742,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Comspan Communications Inc.",
"lat": 43.2193622657215,
"lon": -123.369495280904,
"asn": 10883,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "InfoStructure",
"lat": 43.2369886293921,
"lon": -122.85821837169,
"asn": 11986,
"customerConeSize": 4
},
{
"country": "US",
"orgName": "Cascade Access, LLC",
"lat": 45.1894701144233,
"lon": -122.377247667208,
"asn": 33509,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "Maskan Bank",
"lat": 35.6896,
"lon": 51.414,
"asn": 57241,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "Respina Networks & Beyond PJSC",
"lat": 35.4803753663052,
"lon": 51.7714678573468,
"asn": 42337,
"customerConeSize": 73
},
{
"country": "IR",
"orgName": "Agriculture bank",
"lat": 35.6896,
"lon": 51.4140001,
"asn": 57574,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "IRAN POST Company",
"lat": 35.6896,
"lon": 51.4139999,
"asn": 52136,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "GOSTARESH-E-ERTEBATAT-E MABNA COMPANY (Private Joint Stock)",
"lat": 35.6817664952079,
"lon": 51.4121750774022,
"asn": 51074,
"customerConeSize": 36
},
{
"country": "DE",
"orgName": "Level 421 GmbH",
"lat": 48.4054,
"lon": 9.99819,
"asn": 58265,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "ImproWare AG",
"lat": 47.5120660773816,
"lon": 7.69798333176181,
"asn": 6772,
"customerConeSize": 847
},
{
"country": "CH",
"orgName": "Capital Dynamics AG",
"lat": 47.1662,
"lon": 8.51541,
"asn": 43122,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "CABLEMURCIA SLU",
"lat": 38.2668753871579,
"lon": -3.34838124496687,
"asn": 43402,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "Easynet Global Services",
"lat": 51.7189565645921,
"lon": 0.94795874973324,
"asn": 4589,
"customerConeSize": 44
},
{
"country": "ES",
"orgName": "Dragonet Comunicaciones",
"lat": 38.4563745987791,
"lon": -0.315680201069542,
"asn": 29337,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "Foster Global Telecommunications S.L",
"lat": 36.744278523726,
"lon": -4.34902027135137,
"asn": 52037,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Electronic Communities Ltd",
"lat": 57.3520152083366,
"lon": -18.1117211077546,
"asn": 61337,
"customerConeSize": 8
},
{
"country": "US",
"orgName": "Meru Capital Group, LP",
"lat": 40.7564,
"lon": -73.9702999,
"asn": 53413,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Alcion Ventures, LP",
"lat": 42.368,
"lon": -71.0548,
"asn": 35973,
"customerConeSize": 1
},
{
"country": null,
"orgName": null,
"lat": 40.6844,
"lon": -73.9804,
"asn": 21993,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Eminence Capital, LLC.",
"lat": 40.7588132901552,
"lon": -73.9899899079892,
"asn": 40212,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "BTIG",
"lat": 52.1881585176916,
"lon": -90.4559058147284,
"asn": 30417,
"customerConeSize": 1
},
{
"country": "FR",
"orgName": "PE Beauchiere Remy",
"lat": 46.2747,
"lon": 4.97266,
"asn": 198126,
"customerConeSize": 1
},
{
"country": "FR",
"orgName": "HASGARD s.a.r.l.",
"lat": 45.8010293303595,
"lon": 4.76043240595637,
"asn": 61026,
"customerConeSize": 2
},
{
"country": "FR",
"orgName": "Equation SA",
"lat": 45.4638466168108,
"lon": 4.40463967319611,
"asn": 41090,
"customerConeSize": 1
},
{
"country": "IE",
"orgName": "Cork Neutral Internet Exchange",
"lat": 51.898,
"lon": -8.473,
"asn": 49634,
"customerConeSize": 1
},
{
"country": "IE",
"orgName": "Rapid Broadband Ltd",
"lat": 51.7640577175903,
"lon": -8.69373915022001,
"asn": 42090,
"customerConeSize": 2
},
{
"country": "IE",
"orgName": "E-Search Limited",
"lat": 53.129065392801,
"lon": -24.0444769740763,
"asn": 199373,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "ZGT Verlag GmbH",
"lat": 50.9682,
"lon": 11.0315,
"asn": 62460,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "IKS Service GmbH",
"lat": 50.9525588518592,
"lon": 11.3403252152424,
"asn": 15725,
"customerConeSize": 2
},
{
"country": "DE",
"orgName": "Contec Datentechnik GmbH",
"lat": 50.6844779647457,
"lon": 10.9177007609552,
"asn": 16277,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "TCS Cloud Services GmbH",
"lat": 52.5326,
"lon": 13.3777,
"asn": 57974,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Hessische Zentrale fuer Datenverarbeitung",
"lat": 50.0548,
"lon": 8.30161,
"asn": 29515,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Dyckerhoff AG",
"lat": 50.0548,
"lon": 8.3016101,
"asn": 31550,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Societe Electrique des Forces de l'Aubonne",
"lat": 46.5026086501276,
"lon": 6.41521149028836,
"asn": 31124,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "netplusFR SA",
"lat": 46.694550031535,
"lon": 7.07066583861242,
"asn": 39440,
"customerConeSize": 2
},
{
"country": "SK",
"orgName": "CETELEM SLOVENSKO a.s.",
"lat": 48.0308,
"lon": 17.1996,
"asn": 58232,
"customerConeSize": 1
},
{
"country": "SK",
"orgName": "Slovak Academic Network",
"lat": 48.4365299818732,
"lon": 18.5327423884676,
"asn": 2607,
"customerConeSize": 84
},
{
"country": "AT",
"orgName": "TECS telecommunication & e-commerce solutions GmbH",
"lat": 48.0308,
"lon": 17.1996001,
"asn": 60416,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Heinrich THURNER",
"lat": 48.2092,
"lon": 16.3727999,
"asn": 51421,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "KAPPER NETWORK-COMMUNICATIONS GmbH",
"lat": 48.2099613885759,
"lon": 16.2919161893583,
"asn": 48943,
"customerConeSize": 6
},
{
"country": "AT",
"orgName": "Christian Singerl",
"lat": 46.6134,
"lon": 14.5758,
"asn": 62373,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "Ignum s.r.o.",
"lat": 50.0672,
"lon": 14.4644,
"asn": 51278,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "PRO-ZETA a.s.",
"lat": 49.8280083384248,
"lon": 14.8825258390742,
"asn": 49025,
"customerConeSize": 10
},
{
"country": "CZ",
"orgName": "STARNET, s.r.o.",
"lat": 49.0265868650417,
"lon": 14.4544619693432,
"asn": 44489,
"customerConeSize": 1
},
{
"country": "HU",
"orgName": "Com.unique Telekommunikacios Szolgaltato Kft.",
"lat": 47.5078507390417,
"lon": 19.0592063348486,
"asn": 44651,
"customerConeSize": 1
},
{
"country": "HU",
"orgName": "Tarr Kft.",
"lat": 46.6565989895579,
"lon": 18.2668667557654,
"asn": 8462,
"customerConeSize": 3
},
{
"country": "HU",
"orgName": "OPTICON Telekommunikacios Halozati Szolgaltato",
"lat": 46.690716914815,
"lon": 18.1638484718635,
"asn": 24822,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "SC PC PLANET SRL",
"lat": 44.4599,
"lon": 26.1333003,
"asn": 48998,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "CCC-BLUE-TELECOM",
"lat": 45.3109912345889,
"lon": 27.9820622738401,
"asn": 39770,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "HIL IMPEX SRL",
"lat": 44.4599,
"lon": 26.1332997,
"asn": 51107,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Netrunner Anna Polak",
"lat": 50.2258531063588,
"lon": 18.7539746581484,
"asn": 59990,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "JAS-FBG S.A",
"lat": 50.2592,
"lon": 19.0339,
"asn": 43498,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "SACOM SYSTEM Sebastian Bialkowski",
"lat": 50.3172368318967,
"lon": 18.8834695340194,
"asn": 59670,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "LCS Network Media Comunication SRL",
"lat": 45.4508742695967,
"lon": 23.7978866028871,
"asn": 57611,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Phase Seven S.R.L.",
"lat": 45.8498662855789,
"lon": 22.4278574790575,
"asn": 47629,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "LIR DATACENTER TELECOM SRL",
"lat": 44.4599,
"lon": 26.1333004,
"asn": 58113,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Prodelma SRL",
"lat": 47.1639455573753,
"lon": 27.5668006306509,
"asn": 49986,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "First Class SRL",
"lat": 47.77627113602,
"lon": 26.0311004304777,
"asn": 39226,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "STARNETIS S.R.L.",
"lat": 46.8668567808802,
"lon": 27.4104432791989,
"asn": 16157,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Cheeloo J. Turczyn i Wspolnicy Sp. J.",
"lat": 50.0504373564837,
"lon": 21.4666137076406,
"asn": 197838,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "TelNet Krzysztof Drozd",
"lat": 50.0523,
"lon": 21.6093,
"asn": 199585,
"customerConeSize": 2
},
{
"country": "PL",
"orgName": "MT-NEt G.Wojcik J.Kusnierz s.c.",
"lat": 49.9403192699205,
"lon": 21.5547474550947,
"asn": 196883,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "NORTE TELECOMUNICAÇÕES MULTIMIDIA LTDA",
"lat": -11.7273440569087,
"lon": -61.7520998722744,
"asn": 61884,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "BRB - Banco de Brasília S/A",
"lat": -15.7802,
"lon": -47.9292,
"asn": 28248,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Confederação Int. das Coop. Ligadas ao SICREDI",
"lat": -24.3275405139722,
"lon": -47.1582424842779,
"asn": 28646,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "XMAX TELECOM LTDA.",
"lat": -28.0684,
"lon": -52.0107,
"asn": 263126,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "TPA TELECOMUNICACOES LTDA",
"lat": -26.5602398860903,
"lon": -49.0337177252137,
"asn": 28343,
"customerConeSize": 44
},
{
"country": "BR",
"orgName": "Adatel TV e Comunicacoes Sao Jose S/A",
"lat": -26.9633624431154,
"lon": -48.4098554591345,
"asn": 28288,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Infoway Servicos de Informatica Ltda",
"lat": -4.29712793513857,
"lon": -39.0942869875093,
"asn": 28368,
"customerConeSize": 82
},
{
"country": "BR",
"orgName": "Grupo Editorial Sinos S/A",
"lat": -29.7703705205856,
"lon": -51.0984183103141,
"asn": 22128,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Seanet Telecom Ltda",
"lat": -26.7893852024065,
"lon": -49.6374833899598,
"asn": 53222,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "AVATO TECNOLOGIA",
"lat": -28.8620077454776,
"lon": -54.0881257270903,
"asn": 262907,
"customerConeSize": 16
},
{
"country": "BR",
"orgName": "HIPER LINK PROVEDOR DE INTERNET LTDA - ME",
"lat": -8.38257231984436,
"lon": -35.1682737756741,
"asn": 262359,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "SITECNET INFORMÁTICA LTDA",
"lat": -9.62871021565556,
"lon": -37.3621748331906,
"asn": 53087,
"customerConeSize": 24
},
{
"country": "BR",
"orgName": "VEX TELECOM SERVIÇOS DE TELECOMUNICAÇÃO LTDA",
"lat": -6.00210706228921,
"lon": -38.7917625388961,
"asn": 262312,
"customerConeSize": 1
},
{
"country": "BE",
"orgName": "Ulysse Group S.A.",
"lat": 50.4965671992136,
"lon": 3.99792880025019,
"asn": 50998,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Orange Romania S.A.",
"lat": 44.5520007439115,
"lon": 26.0620627699779,
"asn": 8953,
"customerConeSize": 78
},
{
"country": "BE",
"orgName": "\"Global Broadband Solution\" societe de droit americain",
"lat": 3.79482307574877,
"lon": 14.5763689057853,
"asn": 43256,
"customerConeSize": 1
},
{
"country": "CN",
"orgName": "China Internet Network Infomation Center",
"lat": 40.6766038844795,
"lon": 115.401133387041,
"asn": 24406,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "CZ.NIC, z.s.p.o.",
"lat": 50.0575371093416,
"lon": 14.4490894483224,
"asn": 25192,
"customerConeSize": 6
},
{
"country": "SE",
"orgName": "NETNOD Internet Exchange i Sverige AB",
"lat": 59.3289,
"lon": 18.0649,
"asn": 29216,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "OpenNet Solutions SRL",
"lat": 44.419,
"lon": 26.124,
"asn": 39006,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "TENNET TELECOM SRL",
"lat": 44.495889651294,
"lon": 26.5028782195732,
"asn": 39543,
"customerConeSize": 12
},
{
"country": "RO",
"orgName": "Abacus Telcon SRL",
"lat": 44.4401,
"lon": 26.0855,
"asn": 61050,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Alttab Profit SRL",
"lat": 44.4599,
"lon": 26.1332996,
"asn": 61278,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "P.C. NET-C.A.T.V. SRL",
"lat": 44.5549756398325,
"lon": 26.1255300054274,
"asn": 44826,
"customerConeSize": 10
},
{
"country": "SI",
"orgName": "Comtrade programske resitve d.o.o.",
"lat": 45.4647863392953,
"lon": 17.5180184677511,
"asn": 49402,
"customerConeSize": 1
},
{
"country": "SI",
"orgName": "Droga Kolinska d.d.",
"lat": 46.0513,
"lon": 14.5031,
"asn": 25149,
"customerConeSize": 1
},
{
"country": "SI",
"orgName": "Adria Airways Slovenski letalski prevoznik d.d.",
"lat": 46.2221,
"lon": 14.4612,
"asn": 44455,
"customerConeSize": 1
},
{
"country": "BA",
"orgName": "Logosoft , information engineering and Internet providing",
"lat": 43.8591916018611,
"lon": 18.4106371326292,
"asn": 16178,
"customerConeSize": 5
},
{
"country": "MD",
"orgName": "MoldData",
"lat": 47.0262,
"lon": 28.8412,
"asn": 28990,
"customerConeSize": 1
},
{
"country": "MD",
"orgName": "ORANGE MOLDOVA S.A.",
"lat": 47.0416682363814,
"lon": 28.8273488499307,
"asn": 25454,
"customerConeSize": 30
},
{
"country": "RO",
"orgName": "SOCIETATEA PE ACTIUNI - MOLDTELECOM",
"lat": 47.0262,
"lon": 28.8412001,
"asn": 41221,
"customerConeSize": 20
},
{
"country": "RO",
"orgName": "SOCIETATE DE SERVICII DE INVESTITII FINANCIARE BROKER SA",
"lat": 46.7661,
"lon": 23.5793001,
"asn": 50660,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "SOBIS SOLUTIONS SRL",
"lat": 45.7885,
"lon": 24.148,
"asn": 48754,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Saulo J. de Moura Borba ME",
"lat": -7.48673703184114,
"lon": -35.6501322805324,
"asn": 262491,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Sul Online Telecom Ltda - EPP",
"lat": -27.3403784941687,
"lon": -48.5719326783781,
"asn": 52977,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Dekanet Comunicação Multimídia Ltda.",
"lat": -22.9071,
"lon": -43.1859,
"asn": 28336,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "OptiTel Ltda",
"lat": -26.7981948619194,
"lon": -49.560211030331,
"asn": 28303,
"customerConeSize": 130
},
{
"country": "BR",
"orgName": "Intelisense Radiocomunicação Ltda.",
"lat": -23.5298028327799,
"lon": -46.5796283550475,
"asn": 53033,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Sul Americana Tecnologia e Informática Ltda.",
"lat": -27.7280743250515,
"lon": -50.2234214634922,
"asn": 25933,
"customerConeSize": 97
},
{
"country": "BR",
"orgName": "NOKIA SOLUTIONS AND NETWORKS DO BRASIL TELEC. LTDA",
"lat": -23.805667134596,
"lon": -45.1727624258302,
"asn": 28325,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "TELECOMUNICACOES BRASILEIRAS S. A. - TELEBRAS",
"lat": -15.6468889922394,
"lon": -47.9279526290088,
"asn": 53237,
"customerConeSize": 87
},
{
"country": "BR",
"orgName": "SINALNET - Redes de Comunicações Ltda",
"lat": -29.8393,
"lon": -51.1471,
"asn": 61646,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "FSF TECNOLOGIA LTDA ME",
"lat": -9.72771943967359,
"lon": -35.9329463116055,
"asn": 61568,
"customerConeSize": 61
},
{
"country": "BR",
"orgName": "URBI NETWORK LTDA.",
"lat": -22.90069406559,
"lon": -43.1286960093178,
"asn": 26616,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Adylnet Telecom",
"lat": -27.0310114580482,
"lon": -49.6251386544154,
"asn": 28283,
"customerConeSize": 32
},
{
"country": "BR",
"orgName": "CESUMAR - CENTRO UNIVERSITARIO DE MARINGA",
"lat": -23.2311150847787,
"lon": -47.5388444472331,
"asn": 262390,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "COPEL Telecom S.A.",
"lat": -24.6247271545239,
"lon": -49.4301425961591,
"asn": 14868,
"customerConeSize": 96
},
{
"country": "BR",
"orgName": "Nortelpa Engenharia S.A",
"lat": -10.1286633560387,
"lon": -48.864967613091,
"asn": 262596,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "NET SITE S.A",
"lat": -18.9795572780082,
"lon": -48.2609876364186,
"asn": 19960,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Rede Brasileira de Comunicacao Ltda",
"lat": -20.6151658838457,
"lon": -45.5095169937943,
"asn": 28202,
"customerConeSize": 60
},
{
"country": "BR",
"orgName": "Fundação Universidade de Itaúna",
"lat": -20.07,
"lon": -44.5827,
"asn": 262442,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Britis Telecom LTDA",
"lat": -22.3425776822662,
"lon": -45.8813605266981,
"asn": 28306,
"customerConeSize": 34
},
{
"country": "BR",
"orgName": "VMAX NET TELECOMUNICACOES DO BRASIL LTDA",
"lat": -22.4839145205943,
"lon": -46.6458976170731,
"asn": 28277,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "ULTRAWAVE TELECOM EIRELI",
"lat": -22.2928538747333,
"lon": -49.1027840062541,
"asn": 262659,
"customerConeSize": 30
},
{
"country": "BR",
"orgName": "Condax Tecnologia Ltda.",
"lat": -19.8891507681394,
"lon": -43.9284961901345,
"asn": 262306,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Sinal BR Telecom LTDA",
"lat": -20.6232708884703,
"lon": -49.4463472591131,
"asn": 262761,
"customerConeSize": 26
},
{
"country": "BR",
"orgName": "Telium Telecomunicações Ltda",
"lat": -23.2855286658086,
"lon": -46.0122738777849,
"asn": 11432,
"customerConeSize": 21
},
{
"country": "KR",
"orgName": "GUNSAN broad",
"lat": 37.5608962606931,
"lon": 126.912109191588,
"asn": 38127,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "Sunchon National University",
"lat": 37.3500334996629,
"lon": 127.037400434925,
"asn": 9962,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "Dongguk University Information Management Center",
"lat": 37.5328993640515,
"lon": 126.983054916212,
"asn": 9323,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "FORCETEC Co., LTD.",
"lat": 35.9453896974147,
"lon": 128.140020783156,
"asn": 38427,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "hyundaicapital",
"lat": 37.5632,
"lon": 126.9929999,
"asn": 9629,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "DREAMLINE CO.",
"lat": 37.5446896207853,
"lon": 127.000770886408,
"asn": 9457,
"customerConeSize": 45
},
{
"country": "KR",
"orgName": "The Korea Economic Daily",
"lat": 37.5499086269163,
"lon": 126.951770639951,
"asn": 38681,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "MIC E-GOVERNMENT",
"lat": 37.2385135710007,
"lon": 127.100620196493,
"asn": 17841,
"customerConeSize": 23
},
{
"country": "BR",
"orgName": "Max WIFI Telecom Ltda.",
"lat": -18.9019501925518,
"lon": -48.2806005395103,
"asn": 262562,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Telbrax Ltda",
"lat": -20.4857406136311,
"lon": -44.7725668541796,
"asn": 28250,
"customerConeSize": 54
},
{
"country": "BR",
"orgName": "PS5 Internet",
"lat": -17.8140159171329,
"lon": -48.1434153140374,
"asn": 28327,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "UAUBR PROVEDOR DE ACESSO A INTERNET LTDA",
"lat": -10.7323,
"lon": -37.8145,
"asn": 53045,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Byal Telecom Ltda",
"lat": -15.9304850789901,
"lon": -41.6527515072299,
"asn": 262750,
"customerConeSize": 16
},
{
"country": "US",
"orgName": "WCIX.Net, Inc.",
"lat": 38.043,
"lon": -120.391,
"asn": 26346,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "PE Nemanov Oleg Olegovich",
"lat": 55.7616,
"lon": 37.641101,
"asn": 198607,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Alpha Net Telecom Ltd",
"lat": 55.7301407494911,
"lon": 37.4994737107868,
"asn": 47954,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OOO \"Petrosvyaz\"",
"lat": 59.8668524257321,
"lon": 30.3480780020364,
"asn": 50538,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CJSC \"WEST CALL LTD\"",
"lat": 59.9389986506103,
"lon": 30.3157928762053,
"asn": 25408,
"customerConeSize": 44
},
{
"country": "RU",
"orgName": "Deil Ltd.",
"lat": 55.7616,
"lon": 37.641099,
"asn": 57661,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Science-Production Limited Gelios-TNS",
"lat": 50.4409,
"lon": 30.5271997,
"asn": 41910,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "OOO NPO Intermet",
"lat": 47.9872,
"lon": 37.7621999,
"asn": 34786,
"customerConeSize": 2
},
{
"country": "UA",
"orgName": "PE Olena Mikhailovna Kolyada",
"lat": 49.450779326968,
"lon": 30.5801819687343,
"asn": 42798,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Telecommunication agency \"Alpha\" Ltd.",
"lat": 55.7589016433866,
"lon": 37.6310372191484,
"asn": 59653,
"customerConeSize": 2
},
{
"country": "RU",
"orgName": "CJSC Insit-Invest",
"lat": 55.7489534807351,
"lon": 55.3325057802282,
"asn": 60098,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "iHome LLC",
"lat": 55.7826085523283,
"lon": 38.079157446415,
"asn": 25478,
"customerConeSize": 108
},
{
"country": "UA",
"orgName": "JV \"Optima Pharm, LTD\"",
"lat": 50.4409,
"lon": 30.5272004,
"asn": 24610,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "CrimeaCom LLC",
"lat": 44.9970105081745,
"lon": 34.0561017189034,
"asn": 28761,
"customerConeSize": 38
},
{
"country": "UA",
"orgName": "Crimean Internet Service",
"lat": 52.439121274957,
"lon": 36.3986199035455,
"asn": 5593,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "United Networks of Ukraine, Ltd",
"lat": 50.4409,
"lon": 30.5271996,
"asn": 24703,
"customerConeSize": 15
},
{
"country": "RU",
"orgName": "\"LLC Tetra-Telematik\"",
"lat": 55.7496759553795,
"lon": 37.6353702342244,
"asn": 35129,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "EUROTEL Ltd",
"lat": 49.4154183653498,
"lon": 32.4881499043156,
"asn": 6768,
"customerConeSize": 61
},
{
"country": "RU",
"orgName": "Avtosoyuz Plus Ltd.",
"lat": 56.836,
"lon": 35.8915,
"asn": 47763,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "PM Business Solutions Limited",
"lat": 55.7736290878648,
"lon": 37.7047316424924,
"asn": 197464,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "FOP Mikhailyuk Yuri Ivanovitch",
"lat": 49.5644357254665,
"lon": 24.6019445129748,
"asn": 48082,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Institute of Bioorganic Chemistry Polish Academy of Science, Poznan Supercomputing and Networking Center",
"lat": 51.8351832244745,
"lon": 19.1924168175147,
"asn": 196844,
"customerConeSize": 177
},
{
"country": "UA",
"orgName": "PP KOM i TEX",
"lat": 49.881580770808,
"lon": 24.4521543399459,
"asn": 30886,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "PE Solovyov Volodymyr Igorovich",
"lat": 50.4864,
"lon": 24.2802,
"asn": 50012,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "ADAMANT, Ltd.",
"lat": 50.4346566343227,
"lon": 30.5254432945731,
"asn": 8788,
"customerConeSize": 17
},
{
"country": "UA",
"orgName": "TOV Informatsiyni Kirovohrads'ki Systemy",
"lat": 48.518,
"lon": 32.2338,
"asn": 198323,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Science Production Company \"Trifle\" Ltd.",
"lat": 48.4808827190619,
"lon": 35.0255053562615,
"asn": 6702,
"customerConeSize": 17
},
{
"country": "PL",
"orgName": "Noble Securities S.A. z siedziba w Krakowie",
"lat": 53.5048,
"lon": 18.6259,
"asn": 60434,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "GRAKOM ANDRZEJ LISZKA",
"lat": 50.276840871836,
"lon": 18.6972423639814,
"asn": 198235,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "PirxNet Grzegorz Bialas",
"lat": 50.273501386942,
"lon": 18.7057947927304,
"asn": 35434,
"customerConeSize": 11
},
{
"country": "PL",
"orgName": "Marcin Poloczek Polnet",
"lat": 50.2331146613132,
"lon": 19.0539653199982,
"asn": 196979,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "\"PROMEDIA SPOLKA CYWILNA\" NOWICKI KRZYSZTOF WESOLOWSKI DARIUSZ",
"lat": 50.9573,
"lon": 18.2183,
"asn": 199943,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "GLOBITEL Sp. z o.o.",
"lat": 51.4860953857658,
"lon": 19.2844712509594,
"asn": 48424,
"customerConeSize": 7
},
{
"country": "PL",
"orgName": "Safe-Lock.Net Dawid Partyka",
"lat": 50.1077349826212,
"lon": 18.4958662234515,
"asn": 61134,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Centralny Osrodek Informatyki Gornictwa SA",
"lat": 50.2790792884118,
"lon": 19.0341672312364,
"asn": 28978,
"customerConeSize": 5
},
{
"country": "RU",
"orgName": "LLC ICB \"Sovcombank\"",
"lat": 57.7919,
"lon": 40.9046,
"asn": 197258,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Don-plus LTD",
"lat": 47.2583,
"lon": 39.8183001,
"asn": 196914,
"customerConeSize": 4
},
{
"country": "RU",
"orgName": "\"Bank24.ru\" (Joint-stock bank)",
"lat": 56.8428,
"lon": 60.5894001,
"asn": 44192,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "LLC Barclays Bank",
"lat": 55.6938439804895,
"lon": 37.745330171789,
"asn": 49841,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Alians Telecom Ltd.",
"lat": 47.2583,
"lon": 39.8182999,
"asn": 49897,
"customerConeSize": 4
},
{
"country": "RU",
"orgName": "DERZHAVA JSCB",
"lat": 55.7616,
"lon": 37.6411011,
"asn": 50279,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "JSC Sakha-Belkom",
"lat": 52.2942751033049,
"lon": 48.8185313472765,
"asn": 39264,
"customerConeSize": 3
},
{
"country": "RU",
"orgName": "LTD \"Luis+Ural\"",
"lat": 56.8428,
"lon": 60.5893999,
"asn": 25221,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CJSC \"ER-Telecom Holding\"",
"lat": 53.6348303902748,
"lon": 44.1272899893654,
"asn": 41754,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "MicFinance Plus LLC",
"lat": 55.7616,
"lon": 37.6410989,
"asn": 62404,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "RTComm-Volga-Ural LLC",
"lat": 54.7298,
"lon": 56.0555,
"asn": 41938,
"customerConeSize": 16
},
{
"country": "RU",
"orgName": "Information Technology Company LLC",
"lat": 55.1599,
"lon": 61.4026001,
"asn": 52028,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "LLC Mix Telecom",
"lat": 55.7616,
"lon": 37.6411012,
"asn": 57487,
"customerConeSize": 12
},
{
"country": "EE",
"orgName": "AS INFONET",
"lat": 59.4342120544611,
"lon": 24.756276897397,
"asn": 8728,
"customerConeSize": 1
},
{
"country": "EE",
"orgName": "Telset ltd",
"lat": 59.4189505659351,
"lon": 25.2251205412288,
"asn": 51504,
"customerConeSize": 1
},
{
"country": "KZ",
"orgName": "JSC Kazakhtelecom",
"lat": 45.9177285073052,
"lon": 74.5527369185497,
"asn": 50482,
"customerConeSize": 1
},
{
"country": "KZ",
"orgName": "SMARTNET TOO",
"lat": 45.8934534674842,
"lon": 73.2610590664404,
"asn": 43994,
"customerConeSize": 41
},
{
"country": "KZ",
"orgName": "Limited Liability Partnership ENRC Kazakhstan",
"lat": 51.167,
"lon": 71.5,
"asn": 62111,
"customerConeSize": 1
},
{
"country": "KZ",
"orgName": "JSC Kazkommertsbank",
"lat": 43.25,
"lon": 76.95,
"asn": 39433,
"customerConeSize": 1
},
{
"country": "UZ",
"orgName": "\"Uzbektelekom\" Joint Stock Company",
"lat": 41.3105,
"lon": 69.2953,
"asn": 28910,
"customerConeSize": 39
},
{
"country": "UA",
"orgName": "TOV \"Trest Ukrtelebud\"",
"lat": 50.4409,
"lon": 30.5272005,
"asn": 35352,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "FOP Koval Andriy Olegovych",
"lat": 50.4409,
"lon": 30.5271995,
"asn": 34775,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "AiKLtd.",
"lat": 54.1967,
"lon": 37.6178,
"asn": 58347,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OOO TK-Telecom",
"lat": 59.939,
"lon": 30.3157997,
"asn": 60764,
"customerConeSize": 16
},
{
"country": "RU",
"orgName": "UG-TELECOM Ltd.",
"lat": 55.0344177084748,
"lon": 37.4703756123354,
"asn": 43567,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Peremena Ltd.",
"lat": 55.7616,
"lon": 37.6410988,
"asn": 199063,
"customerConeSize": 1
},
{
"country": "KG",
"orgName": "IPNET OOO",
"lat": 42.8709,
"lon": 74.5882,
"asn": 61010,
"customerConeSize": 13
},
{
"country": "KZ",
"orgName": "Info-Centre Ltd.",
"lat": 53.25,
"lon": 63.667,
"asn": 47613,
"customerConeSize": 1
},
{
"country": "KZ",
"orgName": "JSC \"Arna\"",
"lat": 44.0299566431969,
"lon": 75.6671023841888,
"asn": 15736,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "EPIQ Systems, Inc",
"lat": 39.2511945520352,
"lon": -92.88077932896,
"asn": 16645,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "e-Dialog, Inc",
"lat": 42.4950861441836,
"lon": -71.1975134143897,
"asn": 46263,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "EvolveIP, LLC",
"lat": 40.0247306826901,
"lon": -79.7618554537072,
"asn": 25843,
"customerConeSize": 3
},
{
"country": null,
"orgName": null,
"lat": 42.5361,
"lon": -71.0265,
"asn": 19097,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "NETPLEX",
"lat": 41.7259237974145,
"lon": -72.9650845801563,
"asn": 6062,
"customerConeSize": 7
},
{
"country": "US",
"orgName": "GLOBALVISION",
"lat": 34.9904148933487,
"lon": -83.5024234771533,
"asn": 11672,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Prism Systems Inc",
"lat": 30.6317,
"lon": -88.1564,
"asn": 62796,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DOVETEL COMMUNICATIONS, LLC.",
"lat": 33.0672624377695,
"lon": -84.7686269115724,
"asn": 40076,
"customerConeSize": 5
},
{
"country": "US",
"orgName": "Amylin Pharmaceuticals, Inc.",
"lat": 37.0485277225827,
"lon": -102.065827044396,
"asn": 46527,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Level 3 Communications, Inc.",
"lat": 41.8911671723025,
"lon": -81.3140905220141,
"asn": 10753,
"customerConeSize": 10
},
{
"country": "US",
"orgName": "Varonis Systems, Inc.",
"lat": 40.7505169787784,
"lon": -74.0075974488085,
"asn": 54013,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Parwan Electronics Corporation",
"lat": 40.4127,
"lon": -74.2525,
"asn": 20019,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Impulse Internet Services",
"lat": 34.5823893642131,
"lon": -119.843521841577,
"asn": 4927,
"customerConeSize": 4
},
{
"country": "US",
"orgName": "James Tower Media Design",
"lat": 38.9585,
"lon": -104.757,
"asn": 17195,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "HickoryTech Corporation",
"lat": 44.1072532183218,
"lon": -94.0560058355229,
"asn": 12112,
"customerConeSize": 8
},
{
"country": "US",
"orgName": "Cirrus Design Corporation",
"lat": 46.7888712772081,
"lon": -92.0977352464663,
"asn": 62800,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Broward County Commission",
"lat": 26.0625203703028,
"lon": -80.1851826422331,
"asn": 30187,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Tolt Solutions, Inc.",
"lat": 37.9203670290182,
"lon": -117.929681739023,
"asn": 27461,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "SOCRATES",
"lat": 44.1854008981117,
"lon": -94.0477699089147,
"asn": 36784,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "South Dakota Board of Regents",
"lat": 43.6736186522792,
"lon": -100.014379521299,
"asn": 33189,
"customerConeSize": 7
},
{
"country": "US",
"orgName": "Carleton College",
"lat": 44.445,
"lon": -93.1815,
"asn": 26557,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CyrusOne LLC",
"lat": 30.2307333006832,
"lon": -95.6323836122863,
"asn": 20013,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "TRANSWESTERN COMMERCIAL SERVICES, L.L.C.",
"lat": 29.7382,
"lon": -95.4464,
"asn": 62598,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "One Kings Lane, Inc.",
"lat": 37.7738,
"lon": -122.41,
"asn": 35870,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Aurora Technology Management, Inc.",
"lat": 38.0627748627917,
"lon": -121.730300057481,
"asn": 46577,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CALIX NETWORKS",
"lat": 35.0447421167175,
"lon": -120.294793527283,
"asn": 21827,
"customerConeSize": 1
},
{
"country": "CG",
"orgName": "OFIS-Computers",
"lat": -4.778,
"lon": 11.863,
"asn": 37281,
"customerConeSize": 1
},
{
"country": "IL",
"orgName": "Gilat Satcom",
"lat": 29.7761026056214,
"lon": 33.6413209180799,
"asn": 12491,
"customerConeSize": 31
},
{
"country": "NF",
"orgName": "Norfolk Telecom, GBE",
"lat": -29.083,
"lon": 167.917,
"asn": 45168,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Louisiana State University in Shreveport",
"lat": 31.4017481442012,
"lon": -92.4142296182626,
"asn": 30564,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "LIGO Livingston Observatory",
"lat": 30.4274524771623,
"lon": -90.9228814960743,
"asn": 40189,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "LSU AgCenter",
"lat": 30.4391029783305,
"lon": -91.1725404755025,
"asn": 26303,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "The AS number for GECIS global for their internet peering",
"lat": 32.1012512958267,
"lon": 76.252672881567,
"asn": 17466,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CyrusOne LLC",
"lat": 38.5582137790813,
"lon": -90.6156128929977,
"asn": 19384,
"customerConeSize": 6
},
{
"country": "US",
"orgName": "Ferguson Enterprises, Inc.",
"lat": 37.9547079653378,
"lon": -78.7882258348669,
"asn": 22334,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Simple Signal, Inc.",
"lat": 37.6720821850869,
"lon": -109.882566586687,
"asn": 40522,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DenverColo.net, LLC",
"lat": 40.3689849701519,
"lon": -97.369796075219,
"asn": 63152,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "GearHost, Inc.",
"lat": 39.5755,
"lon": -104.862,
"asn": 40728,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "University of Notre Dame",
"lat": 41.6939,
"lon": -86.2393,
"asn": 693,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Education Networks of America",
"lat": 39.3230346438204,
"lon": -85.9515727866095,
"asn": 11686,
"customerConeSize": 11
},
{
"country": "US",
"orgName": "University of Iowa",
"lat": 40.3687,
"lon": -86.878,
"asn": 3677,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Ajubeo, LLC",
"lat": 40.0592408882485,
"lon": -105.008581229188,
"asn": 54431,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "tummy.com, ltd.",
"lat": 40.4511258003953,
"lon": -105.087270757586,
"asn": 32150,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "LEPRINO FOODS DAIRY PRODUCTS COMPANY",
"lat": 39.768,
"lon": -105.0149999,
"asn": 46732,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Reserve Long Distance Company, Inc",
"lat": 30.1095043172453,
"lon": -90.6033811645266,
"asn": 27294,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "SEND TECHNOLOGIES, L.L.C.",
"lat": 32.4103753824285,
"lon": -92.2011833513203,
"asn": 33701,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Neill Corporation",
"lat": 30.4398821720585,
"lon": -90.4412513209936,
"asn": 21952,
"customerConeSize": 1
},
{
"country": "FR",
"orgName": "Center.com EU EURL",
"lat": 48.8602,
"lon": 2.3410701,
"asn": 51095,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Acxiom Corporation",
"lat": 31.0442695266534,
"lon": -94.6954191515466,
"asn": 15026,
"customerConeSize": 4
},
{
"country": "US",
"orgName": "CHA",
"lat": 39.9217577893613,
"lon": -74.9541795873581,
"asn": 22871,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Kloepferholz GmbH & Co.KG",
"lat": 51.3532,
"lon": 12.3765,
"asn": 43353,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "WHEELS Logistics GmbH & Co. KG",
"lat": 51.9607,
"lon": 7.62585,
"asn": 29507,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Airbnb, Inc.",
"lat": 80.0497256671495,
"lon": 91.7366057803497,
"asn": 54229,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Shoretel Sky",
"lat": 40.9541897329726,
"lon": -96.7041019698751,
"asn": 36371,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "New Global Telecom Inc.",
"lat": 39.7126,
"lon": -105.23,
"asn": 33351,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "FranTech Solutions",
"lat": 40.8630668685821,
"lon": -107.301064011601,
"asn": 53667,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Telecom North America Inc.",
"lat": 43.4674790930166,
"lon": -108.353297360277,
"asn": 39944,
"customerConeSize": 2
},
{
"country": "SE",
"orgName": "KnightSwarm Handelsbolag",
"lat": 70.3765416656988,
"lon": -35.9496304349298,
"asn": 59692,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "BVS Performance Systems",
"lat": 42.0321063957449,
"lon": -91.6315068181855,
"asn": 46387,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Hughes Network Systems",
"lat": 39.553698786665,
"lon": -98.9781041086855,
"asn": 6621,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "Advanced Network SOlutions",
"lat": 41.0329530905281,
"lon": -81.5058441354488,
"asn": 30289,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Access America",
"lat": 35.0701344248226,
"lon": -85.3533308678368,
"asn": 4452,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "AirWatch LLC",
"lat": 33.9387890729117,
"lon": -84.3539744326256,
"asn": 23413,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Capario, Inc.",
"lat": 34.8024181777423,
"lon": -106.820042476269,
"asn": 11591,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Labyrinth Solutions Inc",
"lat": 39.5419328864302,
"lon": -79.8463282132689,
"asn": 26097,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Com Net, Inc.",
"lat": 40.524548663134,
"lon": -83.8858936267424,
"asn": 7106,
"customerConeSize": 16
},
{
"country": "US",
"orgName": "City of Philippi",
"lat": 39.2157372711773,
"lon": -80.0799063189296,
"asn": 23167,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "U.S. Department of Health & Human Services",
"lat": 38.8715055689673,
"lon": -77.045350162209,
"asn": 19050,
"customerConeSize": 9
},
{
"country": "US",
"orgName": "Opus One",
"lat": 32.2403197577158,
"lon": -110.944331638751,
"asn": 6373,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Amadeus Revenue Integrity",
"lat": 33.2423456498395,
"lon": -111.895554625878,
"asn": 23477,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "NetHere Inc.",
"lat": 32.849076875276,
"lon": -117.249878707916,
"asn": 7837,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "TFB NET",
"lat": 33.4657730348413,
"lon": -117.223807435488,
"asn": 20460,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "GTC Systems, Inc.",
"lat": 33.0618906698719,
"lon": -117.187824924031,
"asn": 54708,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Global IntelliSystems",
"lat": 40.0605622072877,
"lon": -84.252906419343,
"asn": 29778,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Fast Serv Networks, LLC",
"lat": 37.5210834981547,
"lon": -94.9124132257451,
"asn": 29889,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Sliqua Enterprise Hosting, Inc.",
"lat": 38.8294878440407,
"lon": -77.3306777317309,
"asn": 32740,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "LPL Financial",
"lat": 36.3535077450372,
"lon": -105.809869938398,
"asn": 22065,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CareCentrix, Inc.",
"lat": 27.9806719224803,
"lon": -82.3436897575799,
"asn": 21849,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Sensus USA, Inc.",
"lat": 35.8893,
"lon": -78.6378,
"asn": 46833,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "ITHAKA Harbors, Inc.",
"lat": 40.0094,
"lon": -105.27,
"asn": 32920,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Boulder County Government",
"lat": 40.1273885784592,
"lon": -105.087854331618,
"asn": 39990,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "City of Longmont",
"lat": 40.1625626839859,
"lon": -105.050728729463,
"asn": 14308,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Komsomolskaya Pravda CJSC",
"lat": 55.8021,
"lon": 37.5707,
"asn": 198226,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Netorn LLC",
"lat": 55.8178592121318,
"lon": 37.7216891616273,
"asn": 34123,
"customerConeSize": 51
},
{
"country": "RU",
"orgName": "Meganet-2003 LLC",
"lat": 55.7616,
"lon": 37.6411013,
"asn": 51410,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Liral-Telecom Ltd",
"lat": 55.7616,
"lon": 37.6410987,
"asn": 197632,
"customerConeSize": 1
},
{
"country": "IL",
"orgName": "DiViNetworks LTD.",
"lat": -8.72508824442871,
"lon": -50.9337725013178,
"asn": 57731,
"customerConeSize": 44
},
{
"country": "RU",
"orgName": "DS-Connection Ltd",
"lat": 55.7583042835852,
"lon": 37.5973460997148,
"asn": 197140,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Telenet Ltd.",
"lat": 55.8115384123355,
"lon": 37.7755659011836,
"asn": 29053,
"customerConeSize": 29
},
{
"country": "RU",
"orgName": "PremiumTelecom Ltd.",
"lat": 55.7616,
"lon": 37.6411014,
"asn": 51666,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "NPO Information Systems Ltd",
"lat": 55.7738553617948,
"lon": 37.6347693214522,
"asn": 47934,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Vysokie tehnologii Limited Liability Company",
"lat": 58.4229868653049,
"lon": 33.2636993176885,
"asn": 43267,
"customerConeSize": 24
},
{
"country": "LT",
"orgName": "UAB \"Airnet\"",
"lat": 54.8547969756415,
"lon": 23.899799715507,
"asn": 197225,
"customerConeSize": 1
},
{
"country": "LT",
"orgName": "Baltnetos Komunikacijos Autonomous System",
"lat": 54.8556594697397,
"lon": 24.5864183349548,
"asn": 15440,
"customerConeSize": 10
},
{
"country": "LT",
"orgName": "NNT Internet",
"lat": 55.472707327145,
"lon": 25.3349616993705,
"asn": 41228,
"customerConeSize": 1
},
{
"country": "LV",
"orgName": "Santa Monica Networks",
"lat": 56.9957672962699,
"lon": 24.5297409567655,
"asn": 35407,
"customerConeSize": 1
},
{
"country": "LT",
"orgName": "UAB \"Baltnetos komunikacijos\"",
"lat": 54.7204557690878,
"lon": 25.1667320540704,
"asn": 42549,
"customerConeSize": 7
},
{
"country": "UA",
"orgName": "Private Enterprise \"CONTAINER TERMINAL ILYICHEVSK\"",
"lat": 48.3736,
"lon": 30.625,
"asn": 47838,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Golden Telecom",
"lat": 49.7621426507365,
"lon": 31.4237113973386,
"asn": 12530,
"customerConeSize": 38
},
{
"country": "RU",
"orgName": "Online-Telecom, LLC",
"lat": 56.836,
"lon": 35.8915001,
"asn": 201901,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Flex Ltd.",
"lat": 55.8471391373964,
"lon": 37.9709220369761,
"asn": 21453,
"customerConeSize": 32
},
{
"country": "RU",
"orgName": "CJSC \"Management Company \"GLAVKINO\"",
"lat": 55.7859,
"lon": 37.5997001,
"asn": 200016,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "LTD Pokrovsky radiotelefon",
"lat": 51.466,
"lon": 46.1122,
"asn": 34703,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "\"Saratov Digital Phone Network\" ltd",
"lat": 51.5431,
"lon": 45.9987001,
"asn": 44552,
"customerConeSize": 3
},
{
"country": "RU",
"orgName": "Chamber of Commerce and Industry of the Russian Federation",
"lat": 55.7616,
"lon": 37.6410986,
"asn": 62029,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "IT Energy Service",
"lat": 55.7616,
"lon": 37.6411015,
"asn": 3312,
"customerConeSize": 3
},
{
"country": "RU",
"orgName": "LLC RU-service",
"lat": 54.8654979205434,
"lon": 38.3222644722053,
"asn": 8888,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Commercial Bank 'ROSENERGOBANK' (ZAO)",
"lat": 55.8437,
"lon": 37.5086,
"asn": 34472,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Pervaja Baza Ltd.",
"lat": 56.1239933344488,
"lon": 37.1469883927782,
"asn": 47456,
"customerConeSize": 2
},
{
"country": "RU",
"orgName": "Prof-Tel-Comm Ltd.",
"lat": 55.7859,
"lon": 37.5996999,
"asn": 25379,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OOO Rechsvyazservise",
"lat": 55.7616,
"lon": 37.6410985,
"asn": 56574,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Advanced Business Network LTD",
"lat": 56.4795905442632,
"lon": 36.1398879913511,
"asn": 47335,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Gorinfoset Ltd.",
"lat": 59.939,
"lon": 30.3158004,
"asn": 51552,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Beta Telecom Co.Ltd.",
"lat": 58.476467227754,
"lon": 31.6467846715479,
"asn": 39710,
"customerConeSize": 5
},
{
"country": "RU",
"orgName": "ATCOM Joint Stock Company",
"lat": 59.9358000490408,
"lon": 30.3194003467497,
"asn": 60623,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "\"BALTINVESTBANK\" JSC",
"lat": 59.939,
"lon": 30.3157996,
"asn": 197934,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Quantum CJSC",
"lat": 56.8915150230449,
"lon": 41.2210560479386,
"asn": 12418,
"customerConeSize": 4
},
{
"country": "RU",
"orgName": "CJSC UralPrivatBank",
"lat": 56.8428,
"lon": 60.5894002,
"asn": 202239,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "JSK \"Severnoe Volokno\"",
"lat": 57.2874572461968,
"lon": 65.4260310611488,
"asn": 51028,
"customerConeSize": 18
},
{
"country": "RU",
"orgName": "ZAO Reft-Tele-Inform",
"lat": 57.0057,
"lon": 61.4697,
"asn": 50164,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "JSC SK PLAST",
"lat": 54.3746,
"lon": 60.8117,
"asn": 197665,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "JSC \"Digital channels network\"",
"lat": 56.8431526770602,
"lon": 60.5755403882501,
"asn": 16179,
"customerConeSize": 5
},
{
"country": "RU",
"orgName": "LLC SETEL",
"lat": 55.7609219501164,
"lon": 37.6534832916575,
"asn": 39153,
"customerConeSize": 7
},
{
"country": "RU",
"orgName": "Inforoom Ltd.",
"lat": 51.3638969863302,
"lon": 40.6455938066509,
"asn": 48366,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "WocomNet Ltd.",
"lat": 59.939,
"lon": 30.3158005,
"asn": 41996,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Nestle Globe Centre AOA",
"lat": -33.8265837077155,
"lon": 151.08116505769,
"asn": 23740,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Hewlett-Packard Company",
"lat": 69.3484271239477,
"lon": -161.659124986685,
"asn": 7430,
"customerConeSize": 4
},
{
"country": "AU",
"orgName": "Offis Pty Ltd,",
"lat": -33.8450594072346,
"lon": 151.11224368735,
"asn": 23992,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "China Virtual Telecom (Hong Kong) Limited",
"lat": 22.276,
"lon": 114.1669997,
"asn": 45346,
"customerConeSize": 3
},
{
"country": "KR",
"orgName": "GREEN CABLE TELEVISION",
"lat": 35.8683853058194,
"lon": 128.600861692646,
"asn": 9781,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "CMB TAEGU SUSEONG BROADCAST",
"lat": 35.8723619798844,
"lon": 128.623047537886,
"asn": 18168,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "HyosungITX",
"lat": 37.0503676907622,
"lon": 126.900932244652,
"asn": 38690,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "Tbroad Suwon Broadcating Corporati",
"lat": 37.263671218597,
"lon": 127.01445877734,
"asn": 23563,
"customerConeSize": 22
},
{
"country": "PH",
"orgName": "Ace Wireless Network Phils. Inc.",
"lat": 11.9325,
"lon": 121.959,
"asn": 58757,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "AS-SKYBroadband SKYCable Corporation",
"lat": 14.5913656151258,
"lon": 121.026282895633,
"asn": 23944,
"customerConeSize": 6
},
{
"country": "PH",
"orgName": "4F Standard Chartered Bldg",
"lat": 14.567,
"lon": 121.033,
"asn": 55565,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "TRI.ph AS Inter-Island Information Systems, Inc., AS Internet Service Provider and Internet Data Center, Manila PH",
"lat": 14.5796820184532,
"lon": 121.013356509036,
"asn": 17970,
"customerConeSize": 3
},
{
"country": "RU",
"orgName": "ActiveGroupe Ltd.",
"lat": 55.7616,
"lon": 37.6411016,
"asn": 51183,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Netone Rus, CJSC",
"lat": 55.7677596643387,
"lon": 37.716444624061,
"asn": 196695,
"customerConeSize": 6
},
{
"country": "RU",
"orgName": "Internet Technology Ltd.",
"lat": 55.7616,
"lon": 37.6410984,
"asn": 60308,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CB Admiralteisky Ltd.",
"lat": 55.7616,
"lon": 37.6411017,
"asn": 49509,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OOO IT-Grad",
"lat": 59.3558007699127,
"lon": 31.4965269773336,
"asn": 48096,
"customerConeSize": 3
},
{
"country": "SD",
"orgName": "MTN SUDAN",
"lat": 15.5787,
"lon": 35.5238001,
"asn": 36972,
"customerConeSize": 1
},
{
"country": "SD",
"orgName": "Sudatel Telecom Group",
"lat": 15.5787,
"lon": 35.5237999,
"asn": 15706,
"customerConeSize": 5
},
{
"country": "SD",
"orgName": "Sudanese Mobile Telephone (ZAIN) Co Ltd",
"lat": 15.5787,
"lon": 35.5238002,
"asn": 36998,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "Siosi",
"lat": 41.3796,
"lon": 2.16836,
"asn": 42992,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "DR. BAEHLER DROPA AG",
"lat": 47.369,
"lon": 8.53803,
"asn": 199403,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "TELEKOM SRBIJA a.d.",
"lat": 44.7976296440066,
"lon": 20.5068708393351,
"asn": 8400,
"customerConeSize": 150
},
{
"country": "ES",
"orgName": "Metro de Madrid S.A.",
"lat": 40.4262,
"lon": -3.68514,
"asn": 61181,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "Serbia BroadBand-Srpske Kablovske mreze d.o.o.",
"lat": 44.7615929093366,
"lon": 20.5054603646269,
"asn": 31042,
"customerConeSize": 125
},
{
"country": "GB",
"orgName": "Advanced 365 LTD",
"lat": 51.8223225933537,
"lon": -0.343073077325729,
"asn": 21459,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "WIND Telecomunicazioni S.p.A.",
"lat": 43.5468932792501,
"lon": 11.260094901266,
"asn": 1267,
"customerConeSize": 106
},
{
"country": "DE",
"orgName": "Amadeus Data Processing GmbH",
"lat": 43.591953739306,
"lon": 7.09190571311513,
"asn": 44986,
"customerConeSize": 1
},
{
"country": "HR",
"orgName": "Hrvatski Telekom d.d.",
"lat": 45.5296234800104,
"lon": 16.0834721142924,
"asn": 5391,
"customerConeSize": 100
},
{
"country": "DE",
"orgName": "ING-DiBa AG",
"lat": 50.1251,
"lon": 8.6468201,
"asn": 48545,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "\"NOVATEL\" EOOD",
"lat": 42.9854470587179,
"lon": 24.9161543782583,
"asn": 41313,
"customerConeSize": 85
},
{
"country": "BE",
"orgName": "ASP.be SA",
"lat": 50.8467,
"lon": 4.35249,
"asn": 31241,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "Jazz Telecom S.A.",
"lat": 40.0847767116368,
"lon": -2.52087724654682,
"asn": 12715,
"customerConeSize": 77
},
{
"country": "AU",
"orgName": "Association of Independent Schools of Western Australia(Inc)",
"lat": -35.3153242366512,
"lon": 139.001319483459,
"asn": 56303,
"customerConeSize": 1
},
{
"country": "NZ",
"orgName": "REANNZ National Research and Education Network",
"lat": -40.7447586885656,
"lon": 174.293270695751,
"asn": 38022,
"customerConeSize": 30
},
{
"country": "AU",
"orgName": "James Cook University",
"lat": -19.2581,
"lon": 146.818,
"asn": 45962,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Deakin University",
"lat": -38.147,
"lon": 144.36,
"asn": 7645,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "University of Hawaii",
"lat": 21.3108915034013,
"lon": -157.812861594828,
"asn": 6360,
"customerConeSize": 4
},
{
"country": "US",
"orgName": "Avago Technologies U.S. Inc.",
"lat": 40.2699195028076,
"lon": -117.609392599351,
"asn": 19637,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Solverminds and solutions Technologies pvt Ltd",
"lat": 11.2646,
"lon": 78.6889,
"asn": 133282,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "6-3-1192/2/1 Kundanbagh Begumpet",
"lat": 17.3885,
"lon": 78.4717,
"asn": 56290,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Web Werks",
"lat": 26.5159065103908,
"lon": 70.7817285275351,
"asn": 33480,
"customerConeSize": 17
},
{
"country": "TH",
"orgName": "CSLOXINFO Project for IAG Insurance",
"lat": 13.733417604845,
"lon": 100.503886322434,
"asn": 9891,
"customerConeSize": 10
},
{
"country": "UA",
"orgName": "PE Zinstein Hariton Vladimirovich",
"lat": 45.2733365001236,
"lon": 33.4710611665891,
"asn": 43936,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "\"Konctruktorskie Biuro Kommutatcionnoy Apparatury\" LTD",
"lat": 44.6648,
"lon": 33.6529,
"asn": 44917,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "PE Bondar TN",
"lat": 48.7279542871369,
"lon": 34.2813668050513,
"asn": 50204,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Telenet LLC",
"lat": 48.0796663246784,
"lon": 37.5555412367985,
"asn": 28926,
"customerConeSize": 17
},
{
"country": "UA",
"orgName": "IE Parhomenko Aleksey Aleksandrovich",
"lat": 48.134863807051,
"lon": 37.379531590452,
"asn": 48595,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "System-Prom-Invest, LLC",
"lat": 47.9872,
"lon": 37.7622002,
"asn": 199025,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Donbass Electronic Communications Ltd.",
"lat": 47.9872,
"lon": 37.7621998,
"asn": 20590,
"customerConeSize": 3
},
{
"country": "UA",
"orgName": "TVCOM Ltd.",
"lat": 48.4959826512486,
"lon": 35.9573519506361,
"asn": 57033,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "G23 Ltd",
"lat": 43.8494,
"lon": 25.9543,
"asn": 39533,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Sarnica-Net LTD",
"lat": 42.2311675689922,
"lon": 24.1744618204447,
"asn": 48584,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "STS Invest Holding AD",
"lat": 42.8742,
"lon": 25.3189,
"asn": 25224,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "NITEX ISP s.r.o.",
"lat": 50.5895498268794,
"lon": 13.6531830225134,
"asn": 57007,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "ISP Alliance a.s.",
"lat": 50.0455443193553,
"lon": 13.5190071156738,
"asn": 47232,
"customerConeSize": 32
},
{
"country": "CZ",
"orgName": "Martin Vicenik",
"lat": 49.1298723371221,
"lon": 17.9654731380826,
"asn": 34955,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "NETAIR s.r.o.",
"lat": 50.5370402071442,
"lon": 15.3313765526687,
"asn": 44065,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "\"Interaktivne Kablovske Objedinjene Mreze - I.KOM\" D.O.O.",
"lat": 44.8340892622066,
"lon": 20.4975835015755,
"asn": 15926,
"customerConeSize": 1
},
{
"country": "GE",
"orgName": "JSC \"Silknet\"",
"lat": 41.7243038162999,
"lon": 44.6911831168792,
"asn": 35805,
"customerConeSize": 35
},
{
"country": "BG",
"orgName": "Quintessence Ltd.",
"lat": 42.6976,
"lon": 23.3223002,
"asn": 31293,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "SKAT POPOVO Ltd.",
"lat": 44.6146756155976,
"lon": 23.4016850521662,
"asn": 57634,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "NET1 Ltd.",
"lat": 42.6983485582216,
"lon": 23.3419761485547,
"asn": 43561,
"customerConeSize": 25
},
{
"country": "RU",
"orgName": "City-Stream Ltd.",
"lat": 55.5733,
"lon": 39.5228,
"asn": 57820,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Privately owned entrepreneur Andilahai Aleksandr Anatolievich",
"lat": 48.488610933879,
"lon": 37.6469231011875,
"asn": 50981,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Makeevka Online Ltd",
"lat": 48.2484083440024,
"lon": 37.0717412582898,
"asn": 21189,
"customerConeSize": 10
},
{
"country": "UA",
"orgName": "Private enterprise \"Delta\"",
"lat": 47.9872,
"lon": 37.7622003,
"asn": 50927,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "LLC DONETSK FIBER-OPTICAL NETWORK",
"lat": 47.9850102660291,
"lon": 37.2803883215366,
"asn": 52213,
"customerConeSize": 2
},
{
"country": "GB",
"orgName": "Crossflight Ltd",
"lat": 51.5702,
"lon": -0.77391,
"asn": 197463,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Nuco Technologies Ltd",
"lat": 52.276166272204,
"lon": -1.01549641590026,
"asn": 33854,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Datatech UK Ltd",
"lat": 52.3133369457204,
"lon": -1.9371360365239,
"asn": 47622,
"customerConeSize": 1
},
{
"country": "BE",
"orgName": "M247 Ltd",
"lat": 53.2195010703338,
"lon": -0.145933457175343,
"asn": 9009,
"customerConeSize": 175
},
{
"country": "GB",
"orgName": "Xchanging Global Insurance Solutions Limited",
"lat": 51.5149279498173,
"lon": -0.0821592517524063,
"asn": 43422,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Skidata AG",
"lat": 47.7167,
"lon": 13.05,
"asn": 44760,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Gamsjaeger Kabel TV & ISP Betriebs GmbH",
"lat": 48.1537848329686,
"lon": 15.0091973190798,
"asn": 43848,
"customerConeSize": 1
},
{
"country": "BE",
"orgName": "Corelio Publishing NV",
"lat": 50.8711,
"lon": 4.26386,
"asn": 199796,
"customerConeSize": 1
},
{
"country": "BE",
"orgName": "Keytrade Bank S.A./N.V.",
"lat": 50.1103366501966,
"lon": 4.83310732388021,
"asn": 43751,
"customerConeSize": 2
},
{
"country": "BE",
"orgName": "I.R.I.S. ONDIT NV",
"lat": 51.2937708544247,
"lon": 4.55807585594586,
"asn": 199777,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "SC HOL.RO SRL",
"lat": 44.4599,
"lon": 26.1333005,
"asn": 49500,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "SIL-MIRO COM SRL",
"lat": 44.4548372167989,
"lon": 26.1336441626341,
"asn": 44682,
"customerConeSize": 8
},
{
"country": "RO",
"orgName": "Romsan International Company SRL",
"lat": 44.4216,
"lon": 26.1169,
"asn": 59896,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Otto M. Steinmann e.U.",
"lat": 47.8714158639351,
"lon": 16.2445943442411,
"asn": 34767,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "BeotelNet-ISP d.o.o",
"lat": 44.6615397598322,
"lon": 19.9860563468254,
"asn": 6700,
"customerConeSize": 14
},
{
"country": "AT",
"orgName": "Wien Kanal (WKN)",
"lat": 48.2092,
"lon": 16.3728002,
"asn": 39460,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Lifeware SA",
"lat": 47.369,
"lon": 8.5380301,
"asn": 48795,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Vision Information Transaction AG",
"lat": 47.3928,
"lon": 8.04374,
"asn": 39865,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Metal Trade Overseas AG",
"lat": 47.1662,
"lon": 8.5154101,
"asn": 39037,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Wifx Sarl",
"lat": 46.5265619345416,
"lon": 6.18201222197949,
"asn": 199811,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Matthias Cramer",
"lat": 47.4441000062576,
"lon": 8.53922828915929,
"asn": 196621,
"customerConeSize": 8
},
{
"country": "CH",
"orgName": "Cleondris GmbH",
"lat": 47.369,
"lon": 8.5380299,
"asn": 47908,
"customerConeSize": 1
},
{
"country": "GM",
"orgName": "Unique Solutions Ltd",
"lat": 13.4493935886072,
"lon": -16.6739630316293,
"asn": 37503,
"customerConeSize": 1
},
{
"country": "GM",
"orgName": "QCell Limited",
"lat": 13.4500327012781,
"lon": -16.6641708619388,
"asn": 37309,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "Virtela Technology Services Incorporated",
"lat": 56.3467236236307,
"lon": 147.77067178335,
"asn": 19807,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "Premier Oil Viet Nam Offshore B.V",
"lat": 10.3427,
"lon": 107.083,
"asn": 55324,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "Mobifone Global JSC",
"lat": 20.9946912540439,
"lon": 106.586442614547,
"asn": 45896,
"customerConeSize": 47
},
{
"country": "VN",
"orgName": "Tien Phong Bank",
"lat": 21.017,
"lon": 105.867,
"asn": 131408,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "Informatics Center-Ministry of Planning and Investment",
"lat": 21.017,
"lon": 105.8670001,
"asn": 55308,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "Global Telecom Corp",
"lat": 21.017,
"lon": 105.8669999,
"asn": 131127,
"customerConeSize": 16
},
{
"country": "DE",
"orgName": "myLoc managed IT AG",
"lat": 51.3540804409577,
"lon": 7.23529744530356,
"asn": 24961,
"customerConeSize": 8
},
{
"country": "PL",
"orgName": "Media4U Sp. z o.o.",
"lat": 51.7601,
"lon": 19.4774,
"asn": 35720,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "ATM S.A.",
"lat": 52.1884,
"lon": 21.0115998,
"asn": 41406,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "PHU MIROLAN Miroslaw Weclaw",
"lat": 49.9976421504485,
"lon": 20.0625088540128,
"asn": 200094,
"customerConeSize": 6
},
{
"country": "PL",
"orgName": "ELMAR - INSTALATORSTWO ELEKTRYCZNE KOWALIK MAREK",
"lat": 50.0704,
"lon": 19.9235,
"asn": 57355,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Andrzej Slomczynski",
"lat": 52.9279582538457,
"lon": 16.5721162900835,
"asn": 196792,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Maverick Network sp. z o.o",
"lat": 52.3773195575066,
"lon": 16.999905771203,
"asn": 34688,
"customerConeSize": 5
},
{
"country": "PL",
"orgName": "Soft Group Wojciech Mioduszewski",
"lat": 52.401,
"lon": 17.1227,
"asn": 197154,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "EHOL Distribution SRL",
"lat": 44.4599,
"lon": 26.1332995,
"asn": 47263,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Elgeka-Ferfelis Romania SA",
"lat": 44.4599,
"lon": 26.1333006,
"asn": 62127,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Administratia Nationala de Meteorologie RA",
"lat": 44.4599,
"lon": 26.1332994,
"asn": 31278,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "ICEPRONAV ENGINEERING SRL",
"lat": 45.4392,
"lon": 28.0523,
"asn": 50945,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "IBM Romania S.R.L.",
"lat": 44.4599,
"lon": 26.1333007,
"asn": 43283,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "DT Iletisim Hizmetleri A.S.",
"lat": 41.0136,
"lon": 28.9634999,
"asn": 62077,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "Mediterranean Nautilus Telekomunikasyon Hizmetleri Ticaret A.S.",
"lat": 41.0136,
"lon": 28.9635002,
"asn": 47123,
"customerConeSize": 4
},
{
"country": "TR",
"orgName": "ARMADA BILGISAYAR SISTEMLERI SANAYI VE TICARET A.S",
"lat": 41.0136,
"lon": 28.9634998,
"asn": 16069,
"customerConeSize": 1
},
{
"country": null,
"orgName": null,
"lat": 41.0136,
"lon": 28.9635003,
"asn": 35455,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "VODAFONE NET ILETISIM HIZMETLERI ANONIM SIRKETI",
"lat": 40.2943834320187,
"lon": 30.1014707997185,
"asn": 8386,
"customerConeSize": 4
},
{
"country": "US",
"orgName": "North Central Kansas Community Network Co.",
"lat": 39.5332922033581,
"lon": -97.8158527326056,
"asn": 14174,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "INDATEL SERVICES",
"lat": 42.7454,
"lon": -84.4706,
"asn": 36280,
"customerConeSize": 49
},
{
"country": "US",
"orgName": "S & A Telephone Co. Inc",
"lat": 38.7713169451469,
"lon": -95.7567313681857,
"asn": 54001,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Kansas State University",
"lat": 39.1974,
"lon": -96.5973,
"asn": 2701,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Fort Hays State University",
"lat": 38.82,
"lon": -99.4087,
"asn": 18460,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "University of Kansas",
"lat": 38.9592,
"lon": -95.2642,
"asn": 2496,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Yadkin Valley Telephone",
"lat": 35.9717341056194,
"lon": -80.5493432881811,
"asn": 33647,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Surry Telephone Membership Corporation",
"lat": 36.1914155318148,
"lon": -80.4557595391985,
"asn": 7250,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Radford University",
"lat": 37.1506,
"lon": -80.6166,
"asn": 13783,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "BankServ",
"lat": 36.7913185409988,
"lon": -114.005394187871,
"asn": 23521,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Netzero,INC.",
"lat": 34.9030436431769,
"lon": -117.906743486439,
"asn": 13446,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "Dealertrack, Inc.",
"lat": 40.7577,
"lon": -73.6978,
"asn": 46250,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "COTC Connections",
"lat": 35.7457143047112,
"lon": -96.7970232730404,
"asn": 22316,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "The Hinton CATV Company, Inc.",
"lat": 35.4591231206552,
"lon": -98.4050018122525,
"asn": 54328,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "RACK59 Partners, LLC",
"lat": 44.7597164780208,
"lon": -91.6596910195976,
"asn": 54945,
"customerConeSize": 2
},
{
"country": "SE",
"orgName": "Norra Vasterbotten Tidnings AB",
"lat": 64.7407,
"lon": 20.9902,
"asn": 198513,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Tele2 Telecommunication GmbH",
"lat": 48.1578658605418,
"lon": 16.0116326210407,
"asn": 8437,
"customerConeSize": 114
},
{
"country": "SE",
"orgName": "Skalab Affarsutveckling AB",
"lat": 57.5959584271233,
"lon": 12.0209432569925,
"asn": 57777,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "Benders Sverige AB",
"lat": 58.2903,
"lon": 12.9776,
"asn": 62116,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Tele 2 Nederland B.V.",
"lat": 52.2173762566447,
"lon": 4.98355423529962,
"asn": 13127,
"customerConeSize": 15
},
{
"country": "RO",
"orgName": "Societatea Romana de Televiziune",
"lat": 44.4599,
"lon": 26.1332993,
"asn": 43899,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "OXYGEN Computers SRL",
"lat": 45.7672000942663,
"lon": 21.2346493756165,
"asn": 50667,
"customerConeSize": 1
},
{
"country": "HU",
"orgName": "Budapest Hitel- es Fejlesztesi Bank Nyrt",
"lat": 47.5034,
"lon": 19.0453001,
"asn": 30917,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Akamai Technologies, Inc.",
"lat": 52.061127658198,
"lon": -67.939939345713,
"asn": 16625,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "Akamai International B.V.",
"lat": 62.6194934237577,
"lon": -30.8496807050511,
"asn": 21342,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Nikon, Inc.",
"lat": 41.767210007928,
"lon": -75.5519217787848,
"asn": 23227,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Chernoff Diamond and Company",
"lat": 40.7018106704226,
"lon": -73.6198647292648,
"asn": 13400,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Bridgehampton National Bank",
"lat": 41.1284,
"lon": -72.3419,
"asn": 19862,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "ExaCloud Systems Inc.",
"lat": 40.3112,
"lon": -74.5252,
"asn": 63127,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Breakwater",
"lat": 40.7512,
"lon": -73.9721,
"asn": 11932,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Opole University",
"lat": 50.6862,
"lon": 17.9348,
"asn": 21182,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Silesian University of Technology, Computer Centre",
"lat": 50.2772672595014,
"lon": 18.7438195562106,
"asn": 15744,
"customerConeSize": 25
},
{
"country": "PL",
"orgName": "Zachodniopomorski Uniwersytet Technologiczny w Szczecinie, Akademickie Centrum Informatyki",
"lat": 53.4447428096403,
"lon": 14.5717381311254,
"asn": 13119,
"customerConeSize": 3
},
{
"country": "SI",
"orgName": "Univerza v Mariboru",
"lat": 46.5577,
"lon": 15.6509,
"asn": 50195,
"customerConeSize": 1
},
{
"country": "SI",
"orgName": "University of Ljubljana, Faculty of Electrical Engineering",
"lat": 46.0513,
"lon": 14.5031001,
"asn": 28933,
"customerConeSize": 1
},
{
"country": "SI",
"orgName": "Ministrstvo za notranje zadeve",
"lat": 46.0832617755488,
"lon": 14.573911609253,
"asn": 58046,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "YAPI VE KREDI BANKASI A.S.",
"lat": 41.0131441336528,
"lon": 28.9654304374305,
"asn": 25323,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "Deutsche Bank - TR",
"lat": 51.5147,
"lon": -0.0832902,
"asn": 42701,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "Telecommunication Infrastructure Company",
"lat": 34.9062669742087,
"lon": 51.64413036119,
"asn": 48159,
"customerConeSize": 104
},
{
"country": "TR",
"orgName": "Seker Yatirim Menkul Degerler AS",
"lat": 41.0136,
"lon": 28.9634997,
"asn": 50111,
"customerConeSize": 1
},
{
"country": "IQ",
"orgName": "IQ Networks",
"lat": 35.4935573500685,
"lon": 45.4043401982109,
"asn": 44217,
"customerConeSize": 35
},
{
"country": "NL",
"orgName": "Hilf Telecom B.V.",
"lat": 51.7330712698382,
"lon": 8.12286134747191,
"asn": 197985,
"customerConeSize": 1
},
{
"country": "IQ",
"orgName": "Al-Sard Company for Trading agencies Ltd.",
"lat": 34.7633046464965,
"lon": 45.0168818633111,
"asn": 39216,
"customerConeSize": 10
},
{
"country": "IQ",
"orgName": "Time-Net Private Company for Internet and Wireless Services Ltd.",
"lat": 36.183,
"lon": 44.017,
"asn": 62223,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "Is Yatirim Menkul Degerler A.S.",
"lat": 41.0136,
"lon": 28.9635004,
"asn": 51739,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "Inter Partner Assistance Yardim ve Destek Hizmetleri Ticaret Limited Sirketi",
"lat": 41.0136,
"lon": 28.9634996,
"asn": 199038,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "Asseco See Teknoloji AS",
"lat": 41.0136,
"lon": 28.9635005,
"asn": 28781,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "FLP Sidorenko Aleksandr Aleksandrovich",
"lat": 45.0357,
"lon": 35.3817,
"asn": 57383,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "ALAJN CRIMEA LLC",
"lat": 45.0357,
"lon": 35.3817001,
"asn": 51391,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "SouthSide Network LLC",
"lat": 47.8524,
"lon": 35.1714,
"asn": 41232,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Private Enterprise \"Enterra\"",
"lat": 48.7953256774151,
"lon": 34.2420637235949,
"asn": 48964,
"customerConeSize": 20
},
{
"country": "DE",
"orgName": "Ociris GmbH",
"lat": 49.4836544362213,
"lon": 9.9689432982051,
"asn": 56876,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Prairie Power, Inc.",
"lat": 39.7633,
"lon": -89.7256,
"asn": 62920,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CSI Telecom Group, Inc",
"lat": 37.3113678592606,
"lon": -88.715516244224,
"asn": 19685,
"customerConeSize": 4
},
{
"country": "US",
"orgName": "Luther College",
"lat": 43.392,
"lon": -91.8827,
"asn": 46115,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Progress Software Corp - CSG",
"lat": 42.3650747039534,
"lon": -71.476639214064,
"asn": 31817,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Veroxity Technology Partners, Inc.",
"lat": 42.3354343986865,
"lon": -71.2152442673014,
"asn": 27234,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "THL Credit Advisors, LLC",
"lat": 42.3582,
"lon": -71.0507,
"asn": 13365,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Cape Cod Computer, Inc.",
"lat": 41.7034,
"lon": -70.0622,
"asn": 35879,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Towerstream I, Inc.",
"lat": 41.6618824096831,
"lon": -71.3852139188366,
"asn": 32622,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "Childrens Hospital and Regional Medical Center",
"lat": 47.6565821927981,
"lon": -122.293368583146,
"asn": 15307,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Providence Health & Services",
"lat": 47.2496576124316,
"lon": -122.255235044706,
"asn": 46790,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Weyerhaeuser Company",
"lat": 47.3043395211813,
"lon": -122.317828470756,
"asn": 46498,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "NWVOX",
"lat": 47.8726,
"lon": -122.271,
"asn": 54116,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "CRZNET TELECOM LTDA",
"lat": -23.7852,
"lon": -53.0734,
"asn": 61872,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "VISÃONET TELECOM LTDA.",
"lat": -23.836753846779,
"lon": -50.9343202351007,
"asn": 28359,
"customerConeSize": 8
},
{
"country": "BR",
"orgName": "Radins Tecnologia LTDA ME",
"lat": -25.7922291051219,
"lon": -49.0939868366906,
"asn": 14457,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "A. P. de Barros Informática",
"lat": -22.6564,
"lon": -50.4162,
"asn": 52817,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "RLINE - Soluções Inteligentes",
"lat": -25.0971227217338,
"lon": -51.3480563309745,
"asn": 28145,
"customerConeSize": 7
},
{
"country": "BR",
"orgName": "Fonelight Telecomunicações S/A",
"lat": -21.5592357267924,
"lon": -45.4545857755017,
"asn": 263424,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Sulminet Informatica Ltda - ME",
"lat": -21.3684,
"lon": -46.5191,
"asn": 61710,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "NipBr.2 - NipCable do Brasil",
"lat": -21.5340049653536,
"lon": -47.8433151474964,
"asn": 53210,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "INTERNEXO LTDA.",
"lat": -22.128405936462,
"lon": -46.4988291710194,
"asn": 28262,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "NEGRISOLO COMUNICAÇÃO BANDA LARGA LTDA ME",
"lat": -23.1176076398544,
"lon": -45.7194687596544,
"asn": 53213,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Radioscan Telecom Com. De Compon. Eletr. Ltda-EPP",
"lat": -23.406,
"lon": -51.9275,
"asn": 264520,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "FIBERCOM Telecomunicações",
"lat": -23.5337,
"lon": -46.6288999,
"asn": 263329,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Unimed Maringa - Cooperativa de Trabalho Medico.",
"lat": -23.406,
"lon": -51.9274999,
"asn": 263257,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "VIP - SERVIÇOS DE TELECOMUNICAÇÕES LTDA.",
"lat": -14.1679916740192,
"lon": -58.1313106865522,
"asn": 28240,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Rodrigo José Marasca e Cia Ltda",
"lat": -23.5562935288145,
"lon": -53.2054024071375,
"asn": 52547,
"customerConeSize": 2
},
{
"country": "BR",
"orgName": "Internet CPW",
"lat": -24.0941108011494,
"lon": -53.4026252178052,
"asn": 263340,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "AsiaTech Telecom Limited",
"lat": 22.2825452110277,
"lon": 114.177497871026,
"asn": 45855,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "Joint Universities Computer Centre Limited",
"lat": 22.276,
"lon": 114.1670004,
"asn": 3662,
"customerConeSize": 11
},
{
"country": "HK",
"orgName": "The STock Exchange of HK Ltd.",
"lat": 22.276,
"lon": 114.1669996,
"asn": 9590,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "8/F, Tower 2",
"lat": 22.276,
"lon": 114.1670005,
"asn": 55807,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "Diyixian.com Limited",
"lat": 22.4907268826428,
"lon": 114.222367860353,
"asn": 9584,
"customerConeSize": 10
},
{
"country": "KR",
"orgName": "CDNetworks",
"lat": 37.5632,
"lon": 126.9930002,
"asn": 38107,
"customerConeSize": 1
},
{
"country": "PK",
"orgName": "Pakistan Telecommunication Company Limited",
"lat": 30.351915615957,
"lon": 71.4310375580518,
"asn": 9557,
"customerConeSize": 1
},
{
"country": "PK",
"orgName": "NetSol Connect",
"lat": 25.7479292989411,
"lon": 67.9492785712748,
"asn": 17539,
"customerConeSize": 1
},
{
"country": "OM",
"orgName": "Telecommunications Regulatory Authority (TRA)",
"lat": 23.6011,
"lon": 58.5401,
"asn": 60680,
"customerConeSize": 1
},
{
"country": "OM",
"orgName": "Information Technology Authority",
"lat": 23.6011,
"lon": 58.5401001,
"asn": 15679,
"customerConeSize": 1
},
{
"country": "OM",
"orgName": "Oman Data Park LLC",
"lat": 23.6011,
"lon": 58.5400999,
"asn": 201684,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Citycom Telekommunikation GmbH",
"lat": 47.0706138179892,
"lon": 15.4476039150087,
"asn": 29056,
"customerConeSize": 14
},
{
"country": "AT",
"orgName": "Fachhochschule Technikum Wien",
"lat": 48.1863,
"lon": 16.2984,
"asn": 51350,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Pioner-Lan Ltd.",
"lat": 59.939,
"lon": 30.3157995,
"asn": 51836,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "PulNet Limited",
"lat": 59.939,
"lon": 30.3158006,
"asn": 34232,
"customerConeSize": 4
},
{
"country": "RU",
"orgName": "SPRINTHOST.RU LLC",
"lat": 58.430113292483,
"lon": 33.2587498046108,
"asn": 35278,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Closed Joint Stock Company Russian Agency for Small and Medium Business Support",
"lat": 55.7616,
"lon": 37.6410983,
"asn": 61269,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "RU-SERVICE Ltd",
"lat": 55.7791612388024,
"lon": 37.5189357434317,
"asn": 48287,
"customerConeSize": 9
},
{
"country": "UA",
"orgName": "Hosting Center LLC",
"lat": 55.747571604655,
"lon": 37.6231800853904,
"asn": 42399,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "RADIANZ Americas, Inc.",
"lat": 65.4042911855745,
"lon": -58.9679449547058,
"asn": 19812,
"customerConeSize": 3
},
{
"country": "GB",
"orgName": "Satellite Information Services Limited",
"lat": 51.8272315615908,
"lon": -0.422374736229198,
"asn": 47563,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Cameron Ltd",
"lat": 51.1564353335355,
"lon": 0.253899697476452,
"asn": 42284,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "GS Virtual Network Produban",
"lat": 30.8553813870077,
"lon": -83.5085538726022,
"asn": 2134,
"customerConeSize": 3
},
{
"country": "GB",
"orgName": "Ald Automotive Ltd",
"lat": 51.4608,
"lon": -2.50441,
"asn": 41380,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Imerja Ltd",
"lat": 51.5212402621974,
"lon": -0.501843824749754,
"asn": 49413,
"customerConeSize": 2
},
{
"country": "IT",
"orgName": "HOLAPHONE SRL",
"lat": 38.4419654182223,
"lon": 13.2396615344498,
"asn": 199824,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "BT Italia S.p.A.",
"lat": 44.3478888546751,
"lon": 10.5904684452054,
"asn": 3313,
"customerConeSize": 14
},
{
"country": "BE",
"orgName": "The North Atlantic Treaty Organization",
"lat": 47.8673424434838,
"lon": 7.564978810404,
"asn": 21489,
"customerConeSize": 1
},
{
"country": "LT",
"orgName": "Uzdaroji akcine bendrove \"BLUE BRIDGE\"",
"lat": 54.6894,
"lon": 25.2799999,
"asn": 42774,
"customerConeSize": 1
},
{
"country": "LT",
"orgName": "SC \"LRTC\" Internet services",
"lat": 54.7236796974179,
"lon": 25.1783068496496,
"asn": 15419,
"customerConeSize": 3
},
{
"country": "LT",
"orgName": "Bank of Lithuania",
"lat": 54.6894,
"lon": 25.2800002,
"asn": 35135,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Elwico s.c.",
"lat": 50.3731009108282,
"lon": 18.8812381765804,
"asn": 51769,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "OF.PL SP. Z O.O.",
"lat": 50.341759766393,
"lon": 19.2764048476744,
"asn": 29305,
"customerConeSize": 4
},
{
"country": "PL",
"orgName": "Livenet Sp. z o.o.",
"lat": 51.2479255565488,
"lon": 18.9268264345107,
"asn": 59491,
"customerConeSize": 1
},
{
"country": "BE",
"orgName": "Ecoplast OOD",
"lat": 42.6656533710629,
"lon": 23.5746972145251,
"asn": 25147,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Aspilink Ltd.",
"lat": 42.58231521519,
"lon": 24.8204607887082,
"asn": 62386,
"customerConeSize": 1
},
{
"country": "MD",
"orgName": "Riscom AS",
"lat": 47.0262,
"lon": 28.8411999,
"asn": 8474,
"customerConeSize": 1
},
{
"country": "MD",
"orgName": "ARAX I.S.P.",
"lat": 47.0348442084857,
"lon": 28.8261620255937,
"asn": 15836,
"customerConeSize": 24
},
{
"country": "MD",
"orgName": "ICS Networks Solutions SRL",
"lat": 47.0107552510056,
"lon": 28.8534221947266,
"asn": 39526,
"customerConeSize": 3
},
{
"country": "IT",
"orgName": "Warian S.A.S. de Giordano Alfredo & C.",
"lat": 41.0589229726504,
"lon": 14.7732405128174,
"asn": 56911,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Telecomitalia s.p.a.",
"lat": 42.885284379598,
"lon": 12.2728819820169,
"asn": 20746,
"customerConeSize": 10
},
{
"country": "IT",
"orgName": "Poste Italiane SpA",
"lat": 42.0501350216849,
"lon": 12.3136011874135,
"asn": 43976,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "ACANTHO SPA",
"lat": 44.453998006658,
"lon": 11.4855547576552,
"asn": 21309,
"customerConeSize": 6
},
{
"country": "IT",
"orgName": "Redder Telco srl",
"lat": 45.4204433508912,
"lon": 11.9223950169085,
"asn": 33986,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Digital Telecommunication Services",
"lat": 43.3495387028837,
"lon": 11.2781317463098,
"asn": 49605,
"customerConeSize": 4
},
{
"country": "IT",
"orgName": "InAsset S.r.l.",
"lat": 46.0333218357416,
"lon": 13.2026187730875,
"asn": 47902,
"customerConeSize": 2
},
{
"country": "IT",
"orgName": "ITAL TBS S.P.A.",
"lat": 46.8167,
"lon": 10.5333,
"asn": 47646,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Emaze Networks S.p.A.",
"lat": 46.8167,
"lon": 10.5333001,
"asn": 20637,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Assicom S.p.A",
"lat": 46.8167,
"lon": 10.5332999,
"asn": 201410,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "I.C.Lo.S. srl",
"lat": 43.5703,
"lon": 10.3542,
"asn": 48862,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Telnet Systems s.r.l.",
"lat": 43.8462732814005,
"lon": 10.5047742437205,
"asn": 198320,
"customerConeSize": 1
},
{
"country": "SG",
"orgName": "ZONE TELECOM PTE LTD",
"lat": 1.30612,
"lon": 103.8330004,
"asn": 132526,
"customerConeSize": 1
},
{
"country": "SG",
"orgName": "ZONE RESOURCES LIMITED",
"lat": 1.30612,
"lon": 103.8329996,
"asn": 133190,
"customerConeSize": 1
},
{
"country": "SG",
"orgName": "ZONE TELECOM PTE LTD",
"lat": 1.30612,
"lon": 103.8330005,
"asn": 132731,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "Nawala Project - DNS Filtering Project",
"lat": -6.133,
"lon": 106.7500001,
"asn": 45719,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "INDOSAT Internet Network Provider",
"lat": -6.22383751402671,
"lon": 106.840643931477,
"asn": 17922,
"customerConeSize": 89
},
{
"country": "ID",
"orgName": "PT. Mitra Abdi Solusi",
"lat": -6.41697675423264,
"lon": 108.244427734583,
"asn": 38781,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "Sumidhaz Permata Bunda, PT",
"lat": 0.533,
"lon": 101.45,
"asn": 55652,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT Media Akses Global Indo, Internet Provider Jakarta",
"lat": -4.0442938433076,
"lon": 106.493188117161,
"asn": 18351,
"customerConeSize": 52
},
{
"country": "DK",
"orgName": "Region Sjaelland",
"lat": 55.4417,
"lon": 11.7957,
"asn": 43806,
"customerConeSize": 1
},
{
"country": "DK",
"orgName": "Solido Hosting A/S",
"lat": 55.6572592131037,
"lon": 10.750361528673,
"asn": 12617,
"customerConeSize": 4
},
{
"country": "DK",
"orgName": "Rockwool International A/S",
"lat": 55.6495,
"lon": 12.1994,
"asn": 198206,
"customerConeSize": 1
},
{
"country": "DK",
"orgName": "EET GROUP A/S",
"lat": 55.8477,
"lon": 12.4278,
"asn": 48726,
"customerConeSize": 1
},
{
"country": "DK",
"orgName": "Fujitsu Services A/S",
"lat": 55.7355558277331,
"lon": 12.3744250206418,
"asn": 35033,
"customerConeSize": 2
},
{
"country": "DK",
"orgName": "DanaWeb A/S",
"lat": 55.7228,
"lon": 12.4409,
"asn": 197927,
"customerConeSize": 1
},
{
"country": "NO",
"orgName": "Loqal AS",
"lat": 63.3853790324839,
"lon": 10.3448165810693,
"asn": 49455,
"customerConeSize": 1
},
{
"country": "NO",
"orgName": "Get AS",
"lat": 59.9280257840337,
"lon": 10.7401683301533,
"asn": 47853,
"customerConeSize": 1
},
{
"country": "NO",
"orgName": "Get AS. Old Smartcall AS",
"lat": 59.9268,
"lon": 10.7343,
"asn": 25400,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "KDDI Australia Pty. Ltd.",
"lat": -33.9555542234485,
"lon": 149.611149301511,
"asn": 18385,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Avid Communications, LLC",
"lat": 39.0262550680401,
"lon": -94.6255885347174,
"asn": 30359,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "KC NAP, LLC",
"lat": 39.0128553178122,
"lon": -94.3286522941563,
"asn": 31985,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Zoloti Vorota Corporation",
"lat": 50.4409,
"lon": 30.5272006,
"asn": 41586,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Navigator Online TOV",
"lat": 50.4409,
"lon": 30.5271994,
"asn": 13121,
"customerConeSize": 7
},
{
"country": "UA",
"orgName": "PP Plai",
"lat": 50.4409,
"lon": 30.5272007,
"asn": 44434,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "TOV Corporation Argo-Soyuz",
"lat": 48.4229,
"lon": 35.1379,
"asn": 30735,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "PAT \"Segodnya Multimedia\"",
"lat": 50.4409,
"lon": 30.5271993,
"asn": 198224,
"customerConeSize": 2
},
{
"country": "UA",
"orgName": "PJSC ArcelorMittal Kryviy Rih",
"lat": 48.4229,
"lon": 35.1379001,
"asn": 39644,
"customerConeSize": 1
},
{
"country": "SN",
"orgName": "Tigo Senegal",
"lat": 14.7910165531916,
"lon": -17.2877595838416,
"asn": 37649,
"customerConeSize": 1
},
{
"country": "GT",
"orgName": "Newcom Limited",
"lat": 12.5977787065257,
"lon": -86.1178756446803,
"asn": 20299,
"customerConeSize": 23
},
{
"country": "RW",
"orgName": "TIGO RWANDA S.A",
"lat": -1.951,
"lon": 30.059,
"asn": 37124,
"customerConeSize": 1
},
{
"country": "CO",
"orgName": "REDSI TELECOMUNICACIONES",
"lat": 5.574,
"lon": -73.333,
"asn": 263195,
"customerConeSize": 1
},
{
"country": "PE",
"orgName": "INTERNEXA PERU S.A",
"lat": -9.55241080789293,
"lon": -76.7493118924537,
"asn": 28032,
"customerConeSize": 23
},
{
"country": "CO",
"orgName": "EMTEL S.A. E.S.P.",
"lat": 8.14166983162668,
"lon": -76.2083251854128,
"asn": 27650,
"customerConeSize": 1
},
{
"country": "NI",
"orgName": "Cablenet S.A",
"lat": 12.1349400153076,
"lon": -86.2492300386607,
"asn": 27761,
"customerConeSize": 1
},
{
"country": "NI",
"orgName": "Amnet Telecomunicaciones S.A.",
"lat": 12.157492479367,
"lon": -86.2911480844094,
"asn": 27742,
"customerConeSize": 9
},
{
"country": "HN",
"orgName": "Banco del Pais",
"lat": 15.504,
"lon": -88.005,
"asn": 262205,
"customerConeSize": 1
},
{
"country": "ZM",
"orgName": "Zambia Telecommunications Company Ltd aka ZAMTEL",
"lat": -14.3805094733435,
"lon": 28.4018640591866,
"asn": 37154,
"customerConeSize": 1
},
{
"country": "ZA",
"orgName": "Vodacom",
"lat": -25.4505370190014,
"lon": 27.0054321355412,
"asn": 36994,
"customerConeSize": 50
},
{
"country": "ZA",
"orgName": "ABSA (Amalgamated Banks of South Africa)",
"lat": -26.1869,
"lon": 28.0050001,
"asn": 14115,
"customerConeSize": 1
},
{
"country": "ZA",
"orgName": "FastLight Data Distribution cc",
"lat": -25.725,
"lon": 28.1847,
"asn": 7154,
"customerConeSize": 1
},
{
"country": "ZA",
"orgName": "Africa Independent Network Exchange (Pty) LTD (AfricaINX)",
"lat": -26.4866651351806,
"lon": 27.7162591310275,
"asn": 37179,
"customerConeSize": 36
},
{
"country": "TD",
"orgName": "MILLICOM CHAD SA",
"lat": 12.113,
"lon": 15.026,
"asn": 327802,
"customerConeSize": 1
},
{
"country": "BJ",
"orgName": "SPACETEL BENIN SA",
"lat": 6.356,
"lon": 2.44,
"asn": 37424,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Spectrum Softtech Solutions P Ltd.",
"lat": 9.96683,
"lon": 76.2508,
"asn": 23957,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "RGV Akshay communication Pvt. Ltd.",
"lat": 12.7924026754936,
"lon": 77.8209051937506,
"asn": 132961,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Thinksoft Global Services Ltd",
"lat": 13.0976,
"lon": 80.2945001,
"asn": 131263,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "C/0 National Informatics Centre",
"lat": 28.6262,
"lon": 77.2181,
"asn": 9885,
"customerConeSize": 24
},
{
"country": "IN",
"orgName": "Pulse Telesystems Pvt Ltd",
"lat": 16.8560618803905,
"lon": 79.5375771779955,
"asn": 56272,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Chinetworks India Pvt. Ltd.",
"lat": 28.6262,
"lon": 77.2181001,
"asn": 132542,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Host Virtual, Inc",
"lat": 38.997860358717,
"lon": -116.860448502364,
"asn": 36236,
"customerConeSize": 41
},
{
"country": "IN",
"orgName": "Euronet Services India Pvt Ltd",
"lat": 18.9421,
"lon": 72.8353999,
"asn": 132571,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Oberthur Technology India Private limited",
"lat": 28.5658,
"lon": 77.3225,
"asn": 133292,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "NOIDA Software Technology Park Ltd",
"lat": 26.5993008675311,
"lon": 77.1678844789804,
"asn": 55526,
"customerConeSize": 3
},
{
"country": "IN",
"orgName": "",
"lat": 28.5658,
"lon": 77.3225001,
"asn": 132990,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CoreByte",
"lat": 52.935940933277,
"lon": -79.5593804733912,
"asn": 14207,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "U.S. COLO, LLC",
"lat": 34.2990897905744,
"lon": -118.04034204308,
"asn": 32743,
"customerConeSize": 17
},
{
"country": "US",
"orgName": "Internet Business Services, Inc.",
"lat": 34.0158702827986,
"lon": -118.142535738706,
"asn": 11247,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Les Schwab Tire Centers",
"lat": 44.0745941409253,
"lon": -121.300984361164,
"asn": 21561,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "WindWave Communications",
"lat": 45.2992808873439,
"lon": -118.772485765208,
"asn": 36222,
"customerConeSize": 4
},
{
"country": "US",
"orgName": "Navis",
"lat": 44.0982,
"lon": -121.289,
"asn": 19883,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Wildfire Broadband, LLC",
"lat": 37.3351205217171,
"lon": -113.368593479328,
"asn": 40603,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "SkyWire Fiber LLC",
"lat": 37.0888731667762,
"lon": -113.582229413617,
"asn": 393299,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "AWI Networks",
"lat": 37.3842963169856,
"lon": -113.345042295554,
"asn": 36143,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Voicestream Pty Ltd,",
"lat": -37.8143,
"lon": 144.963,
"asn": 9385,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Whitepages, Inc.",
"lat": 45.0246305726362,
"lon": -122.192365029278,
"asn": 33609,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Frank Russell",
"lat": 47.6184490303275,
"lon": -122.343875296839,
"asn": 7234,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "CSLOXINFO Project for IAG Insurance",
"lat": 13.74305115883,
"lon": 100.52399897149,
"asn": 17499,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "KSC Commercial Internet Co. Ltd.",
"lat": 13.6444624620644,
"lon": 100.474054114183,
"asn": 7693,
"customerConeSize": 31
},
{
"country": "TH",
"orgName": "TRUE INTERNET Co.,Ltd.",
"lat": 13.733,
"lon": 100.5000001,
"asn": 133764,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "998/3 Baan On Nuch Condominium",
"lat": 13.7344360215067,
"lon": 100.50342829825,
"asn": 56134,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "Samart Corporation Co., Ltd.",
"lat": 13.7858526850828,
"lon": 100.50023756089,
"asn": 4741,
"customerConeSize": 6
},
{
"country": "TH",
"orgName": "Milcom Co., Ltd. Internet Service Provider Bangkok",
"lat": 13.733,
"lon": 100.4999999,
"asn": 7636,
"customerConeSize": 2
},
{
"country": "NL",
"orgName": "Open Line BV",
"lat": 50.8563,
"lon": 5.69383,
"asn": 50399,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Open Peering Initiative, Amsterdam, The Netherlands",
"lat": 52.0721,
"lon": 4.39956,
"asn": 20562,
"customerConeSize": 879
},
{
"country": "NL",
"orgName": "Enne Solutions BV",
"lat": 51.2087993166682,
"lon": 5.99097560945551,
"asn": 21315,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "WILLUX.be N.V.",
"lat": 50.8785009595622,
"lon": 4.0358168619357,
"asn": 39641,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Bart Champagne",
"lat": 50.8155,
"lon": 5.18666,
"asn": 35701,
"customerConeSize": 5
},
{
"country": "BE",
"orgName": "Riffle Media BVBA",
"lat": 51.181224912967,
"lon": 3.64086629956213,
"asn": 31669,
"customerConeSize": 2
},
{
"country": "NL",
"orgName": "Globecomm Europe B.V.",
"lat": 49.3658208746264,
"lon": 5.76020621401934,
"asn": 13126,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Globecomm Europe B.V.",
"lat": 52.3567192846176,
"lon": -1.19447571780389,
"asn": 199734,
"customerConeSize": 2
},
{
"country": "OM",
"orgName": "Sama Telecommunications L.L.C",
"lat": 23.6011,
"lon": 58.5401002,
"asn": 197508,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Epic Information Solutions",
"lat": 49.878803492268,
"lon": -97.1147972387652,
"asn": 19053,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Air Canada",
"lat": 45.2738426569424,
"lon": -73.876695382212,
"asn": 3958,
"customerConeSize": 2
},
{
"country": "CA",
"orgName": "Palliser Furniture Upholstery Ltd.",
"lat": 49.9392,
"lon": -97.0962,
"asn": 32433,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Unibase Telecom Ltd",
"lat": 50.4314,
"lon": -104.556,
"asn": 4143,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "SaskEnergy Inc.",
"lat": 50.4470319139381,
"lon": -104.58204651046,
"asn": 30324,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "University of Regina",
"lat": 50.4253211314773,
"lon": -104.601685014428,
"asn": 26206,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Orlandonet ltd.",
"lat": 42.6976,
"lon": 23.3222998,
"asn": 34917,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "MEGABYTE INTERNET Ltd.",
"lat": 41.3947,
"lon": 23.0293,
"asn": 59742,
"customerConeSize": 2
},
{
"country": "BG",
"orgName": "KRAKRA AD",
"lat": 42.9379933271037,
"lon": 24.7057263183932,
"asn": 199048,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Petros Ltd.",
"lat": 42.6927011232994,
"lon": 23.3109315422534,
"asn": 41946,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "TSTGROUP Engineering Group EOOD",
"lat": 38.9127,
"lon": -77.0717,
"asn": 56389,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Pronet-COM LTD",
"lat": 42.7035634278441,
"lon": 23.3167787112892,
"asn": 197929,
"customerConeSize": 1
},
{
"country": "SG",
"orgName": "SecureAX Internet",
"lat": 1.29937500457731,
"lon": 103.835750021886,
"asn": 58436,
"customerConeSize": 7
},
{
"country": "ID",
"orgName": "PT 3D Tech",
"lat": 1.15,
"lon": 104.02,
"asn": 58553,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT. Total Info Kharisma",
"lat": -6.13446888724284,
"lon": 106.752187312196,
"asn": 9228,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "Solusindo Bintang Pratama, PT",
"lat": -1.60189183638436,
"lon": 106.299468847996,
"asn": 38753,
"customerConeSize": 5
},
{
"country": "ID",
"orgName": "Jogja Digital, PT",
"lat": -7.49496090287055,
"lon": 110.08010244305,
"asn": 45699,
"customerConeSize": 2
},
{
"country": "ID",
"orgName": "PT. Sahabat Prima Karya",
"lat": -7.233,
"lon": 112.75,
"asn": 132672,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT Xepia Prima",
"lat": -6.133,
"lon": 106.7499999,
"asn": 59148,
"customerConeSize": 2
},
{
"country": "ID",
"orgName": "PT. Beon Intermedia",
"lat": -7.233,
"lon": 112.7500001,
"asn": 55688,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "Oxieparabolen AB",
"lat": 39.8089508402277,
"lon": 3.17819126247775,
"asn": 42732,
"customerConeSize": 1
},
{
"country": "NO",
"orgName": "Nexthop As",
"lat": 60.4372385566121,
"lon": 10.8265810371944,
"asn": 49788,
"customerConeSize": 15
},
{
"country": "SE",
"orgName": "Artificial Solutions Scandinavia AB",
"lat": 59.3289,
"lon": 18.0649001,
"asn": 42499,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "Availo NetCamp AB",
"lat": 58.4103315285541,
"lon": 15.6198806248962,
"asn": 34556,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "Perspektiv Bredband AB",
"lat": 55.7188773157727,
"lon": 12.9714889228341,
"asn": 15782,
"customerConeSize": 6
},
{
"country": "NO",
"orgName": "Democratic Voice of Burma Foundation",
"lat": 59.9268,
"lon": 10.7343001,
"asn": 48306,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "Foreningen for digitala fri- och rattigheter",
"lat": 59.3289,
"lon": 18.0648999,
"asn": 198093,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "IT46 AB",
"lat": 59.4803,
"lon": 18.3108,
"asn": 197771,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "Karlstrom & Dahlstrand AB",
"lat": 59.3289,
"lon": 18.0649002,
"asn": 197339,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "Nynas AB (publ)",
"lat": 59.3004251477709,
"lon": 18.0809522329686,
"asn": 198848,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "Securitas Sverige AB",
"lat": 59.3289,
"lon": 18.0648998,
"asn": 198160,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "ReInfoCom Ltd.",
"lat": 51.2926418827726,
"lon": 37.7973303178197,
"asn": 43465,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "AVANT Ltd.",
"lat": 51.7517,
"lon": 36.2967,
"asn": 199020,
"customerConeSize": 4
},
{
"country": "RU",
"orgName": "RIA Link Ltd",
"lat": 53.2875,
"lon": 34.3806,
"asn": 49701,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Samotlor Telecom Ltd.",
"lat": 61.282884380265,
"lon": 47.7081905505481,
"asn": 44811,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "LLC Telecommunication Company Region Telecom",
"lat": 57.7751271333607,
"lon": 59.55614972554,
"asn": 31336,
"customerConeSize": 1
},
{
"country": "BY",
"orgName": "Transport Republican unitary enterprise \"Brest branch of Belarusian railway\"",
"lat": 52.0959,
"lon": 23.7028,
"asn": 47311,
"customerConeSize": 1
},
{
"country": "BY",
"orgName": "Business Network JV",
"lat": 53.82270023804,
"lon": 27.625258006471,
"asn": 12406,
"customerConeSize": 34
},
{
"country": "BY",
"orgName": "Unitarian company \"Ranak\"",
"lat": 52.417,
"lon": 31,
"asn": 48981,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Seagate Technology",
"lat": 46.0021440282966,
"lon": -93.7802534403475,
"asn": 18723,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "CSLOXINFO Project for IAG Insurance",
"lat": 13.7359,
"lon": 100.5270001,
"asn": 55864,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "CSLOXINFO Project for IAG Insurance",
"lat": 13.7252000848992,
"lon": 100.5065002159,
"asn": 55916,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Universitaet Graz",
"lat": 47.0679,
"lon": 15.4417,
"asn": 1114,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "Universitaet fuer Bodenkultur, Wien",
"lat": 48.241,
"lon": 16.3488,
"asn": 1117,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "McKinsey & Company Inc United Kingdom",
"lat": 47.3477213723619,
"lon": -67.4916309263462,
"asn": 31547,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Polycom, Inc.",
"lat": 54.9331075252314,
"lon": -134.921240175427,
"asn": 20464,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "AT&T Internet Services",
"lat": 41.2956,
"lon": -96.1091,
"asn": 3421,
"customerConeSize": 7
},
{
"country": "DE",
"orgName": "Knipp Medien und Kommunikation GmbH",
"lat": 51.4783601671236,
"lon": 7.46800399841978,
"asn": 8561,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "DOKOM Gesellschaft fuer Telekommunikation mbH",
"lat": 51.4719300176638,
"lon": 7.48260006914186,
"asn": 15763,
"customerConeSize": 14
},
{
"country": "DE",
"orgName": "PING e.V. - Verein zur Foerderung der privaten Internetnutzung",
"lat": 51.514,
"lon": 7.4757,
"asn": 31056,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "FMO Flughafen Muenster/Osnabrueck GmbH",
"lat": 52.09294886229,
"lon": 7.42296793935501,
"asn": 8454,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "RheiNet GmbH",
"lat": 52.2691232568633,
"lon": 7.45232057143336,
"asn": 196932,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "JSC Tyumen Telephone networks",
"lat": 57.1549,
"lon": 65.5156,
"asn": 44685,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OJSC MegaFon",
"lat": 56.9844641757756,
"lon": 56.6483540515151,
"asn": 29648,
"customerConeSize": 33
},
{
"country": "RU",
"orgName": "OJSC Perm Powersale Company",
"lat": 58.0201,
"lon": 56.2518,
"asn": 49003,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "HYPERNODE PTY. LTD.",
"lat": -33.8697,
"lon": 151.194,
"asn": 133538,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Exetel Pty Ltd",
"lat": -34.1242354996579,
"lon": 148.9340801104,
"asn": 10143,
"customerConeSize": 48
},
{
"country": "AU",
"orgName": "70 Eagle St",
"lat": -27.4609,
"lon": 153.024,
"asn": 45875,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "OZtell",
"lat": -33.8671,
"lon": 151.207,
"asn": 133175,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Primus Telecommunications",
"lat": -34.496269847437,
"lon": 145.870286986005,
"asn": 9443,
"customerConeSize": 30
},
{
"country": "AU",
"orgName": "EFTel Pty Ltd",
"lat": -34.4962743890054,
"lon": 146.824650041155,
"asn": 38285,
"customerConeSize": 27
},
{
"country": "AU",
"orgName": "Engin Pty Ltd, Voice over IP",
"lat": -34.1658801312211,
"lon": 150.235265670054,
"asn": 18192,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Toyota Tsusho America, Inc.",
"lat": 38.0491,
"lon": -84.717,
"asn": 30587,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Northern Kentucky University",
"lat": 39.1904340156102,
"lon": -87.8234557313323,
"asn": 33629,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Beyond Hosting, LLC",
"lat": 39.3408079752562,
"lon": -84.0189199882285,
"asn": 30152,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Troy City School District",
"lat": 40.0078285606496,
"lon": -84.226627874385,
"asn": 53421,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DataCenter.BZ, LLC",
"lat": 40.3760133863286,
"lon": -81.3737956702494,
"asn": 40715,
"customerConeSize": 8
},
{
"country": "US",
"orgName": "Country Connections LLC",
"lat": 39.6113157183583,
"lon": -83.4134394327001,
"asn": 25943,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "QX.Net",
"lat": 38.0111059296357,
"lon": -84.4829467428179,
"asn": 13776,
"customerConeSize": 4
},
{
"country": "US",
"orgName": "Cros.net, Inc.",
"lat": 41.4021360601093,
"lon": -83.3651055719242,
"asn": 15081,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DRS LLC",
"lat": 40.9428200029491,
"lon": -80.4387795268781,
"asn": 32976,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Next Jump, Inc.",
"lat": 40.9115050396649,
"lon": -73.7023291040348,
"asn": 14073,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Unica Corporation",
"lat": 38.2221209772474,
"lon": -76.4422083800869,
"asn": 39982,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Alabanza, Inc.",
"lat": 42.5893771682371,
"lon": -71.2486186739428,
"asn": 11022,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "China Mobile Hong Kong Company Limited",
"lat": 22.2934546250693,
"lon": 114.162576833347,
"asn": 9231,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "VNPT Corp",
"lat": 19.0945218019127,
"lon": 106.191631340816,
"asn": 45899,
"customerConeSize": 95
},
{
"country": "HK",
"orgName": "TeleTeleOne (HK) Limited",
"lat": 22.3595670225033,
"lon": 113.570538032341,
"asn": 4609,
"customerConeSize": 3
},
{
"country": "IN",
"orgName": "Cyberoam Technologies Pvt. Ltd.",
"lat": 23.0326,
"lon": 72.5981,
"asn": 58976,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "116 MADHAV DARSHAN",
"lat": 21.9755805197422,
"lon": 71.8248251544915,
"asn": 131215,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Gandhi Nagar",
"lat": 17.6726,
"lon": 83.2797,
"asn": 58457,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "DLF Building, Tower D",
"lat": 30.7206,
"lon": 76.8317,
"asn": 45850,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Internet Service Providers",
"lat": 12.9706,
"lon": 77.6002002,
"asn": 9796,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "YOU Broadband & Cable India Ltd.",
"lat": 19.7754382552798,
"lon": 74.6654211445041,
"asn": 18207,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Hindustan Petroleum Corporation Limited",
"lat": 18.9421,
"lon": 72.8354002,
"asn": 9836,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "Tokyo Denki University",
"lat": 35.6759,
"lon": 139.7699999,
"asn": 17943,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "Asia Pacific Advanced Network - Japan",
"lat": 35.4988933840206,
"lon": 137.62235072634,
"asn": 7660,
"customerConeSize": 14
},
{
"country": "JP",
"orgName": "Kanazawa Institute of Technology",
"lat": 36.5975,
"lon": 136.598,
"asn": 24264,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "KOGAKUIN University",
"lat": 35.6803721538562,
"lon": 139.75776138077,
"asn": 55904,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "QGPOP",
"lat": 33.6186,
"lon": 130.423,
"asn": 56218,
"customerConeSize": 2
},
{
"country": "JP",
"orgName": "Cable TV Corporation",
"lat": 36.333031023599,
"lon": 139.733792535763,
"asn": 18278,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "OBIS",
"lat": 34.6487,
"lon": 133.923,
"asn": 23642,
"customerConeSize": 4
},
{
"country": "JP",
"orgName": "Japan Communication Inc.",
"lat": 35.6757216887709,
"lon": 139.76934868093,
"asn": 55387,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Rosetta Stone, LTD.",
"lat": 63.5195094203305,
"lon": -81.7041003331247,
"asn": 53590,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "ROCKWELL AUTOMATION BV",
"lat": 43.0817735769882,
"lon": -87.9602632286987,
"asn": 59248,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Quartet Service Ltd.",
"lat": 43.6993221950209,
"lon": -79.4287494726668,
"asn": 32900,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Universal Consulting",
"lat": 40.2349537034628,
"lon": -74.3436216133615,
"asn": 14753,
"customerConeSize": 4
},
{
"country": "CA",
"orgName": "SwitchWorks Technologies Inc.",
"lat": 43.6893283355115,
"lon": -79.4617003657971,
"asn": 14387,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Royal Bank of Canada",
"lat": 43.6447992056453,
"lon": -79.3873916762217,
"asn": 16729,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Q9 Networks Inc.",
"lat": 43.7643057814734,
"lon": -83.0200897077235,
"asn": 36031,
"customerConeSize": 4
},
{
"country": "CA",
"orgName": "MacLaren McCann Canada Inc.",
"lat": 48.0190564417178,
"lon": -92.6369030193874,
"asn": 33326,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "EnCana Corporation",
"lat": 51.0229204258558,
"lon": -113.992104045114,
"asn": 19869,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Q9 Networks Inc.",
"lat": 47.9787736273459,
"lon": -93.1199622211596,
"asn": 36030,
"customerConeSize": 2
},
{
"country": "CA",
"orgName": "Pason Systems Corp",
"lat": 51.1534643776733,
"lon": -114.031310321614,
"asn": 19566,
"customerConeSize": 1
},
{
"country": "PK",
"orgName": "Telecard Limited",
"lat": 24.8667,
"lon": 67.05,
"asn": 38488,
"customerConeSize": 1
},
{
"country": "AF",
"orgName": "AFGHANTELECOM GOVERNMENT COMMUNICATION NETWORK",
"lat": 34.3222694082217,
"lon": 68.4675440320424,
"asn": 55330,
"customerConeSize": 34
},
{
"country": "PK",
"orgName": "Telecard Limited",
"lat": 24.8667,
"lon": 67.0500001,
"asn": 55340,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Florian Moschner",
"lat": 48.1409,
"lon": 11.5690999,
"asn": 199438,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Web2Objects LLC",
"lat": 64.7866896751402,
"lon": -33.8220199800663,
"asn": 62874,
"customerConeSize": 5
},
{
"country": "GB",
"orgName": "The Liechtenstein Connect Limited",
"lat": 47.1411,
"lon": 9.52148,
"asn": 198412,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Chapin Long Distance, Inc.",
"lat": 43.1400061791295,
"lon": -84.2552498545149,
"asn": 63083,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "FreedomNet",
"lat": 42.8301014319598,
"lon": -85.1145719835778,
"asn": 40720,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Central Michigan Communication, Co.",
"lat": 43.5780622753587,
"lon": -85.0308110502552,
"asn": 62968,
"customerConeSize": 1
},
{
"country": "SG",
"orgName": "ASIA ACCESS TELECOM PTE LTD",
"lat": 1.30612,
"lon": 103.8329995,
"asn": 58948,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "New Skies Satellites, Hong Kong Teleport",
"lat": -3.78979206104667,
"lon": 125.742447629997,
"asn": 23649,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Nextgen Networks",
"lat": -36.054663428856,
"lon": 146.26096989136,
"asn": 38809,
"customerConeSize": 128
},
{
"country": "AU",
"orgName": "State Revenue Office Victoria",
"lat": -37.779088439397,
"lon": 144.803115096243,
"asn": 133081,
"customerConeSize": 1
},
{
"country": "NZ",
"orgName": "Global-Gateway Internet",
"lat": -37.1920732774623,
"lon": 176.078281419608,
"asn": 4648,
"customerConeSize": 106
},
{
"country": "AU",
"orgName": "Uecomm Ltd",
"lat": -35.3419614576078,
"lon": 147.926030152095,
"asn": 10223,
"customerConeSize": 65
},
{
"country": "US",
"orgName": "Digitalglobe, Inc.",
"lat": 40.5238023134078,
"lon": -104.971547261046,
"asn": 18874,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "SIERRA TRADING POST, Inc.",
"lat": 41.1431,
"lon": -104.793,
"asn": 40380,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Fast-Air Internet, Inc.",
"lat": 46.060360569635,
"lon": -88.6891814704281,
"asn": 55183,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "College of Charleston",
"lat": 32.7837,
"lon": -79.9392,
"asn": 13548,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Clemson University",
"lat": 34.6731,
"lon": -82.824,
"asn": 12148,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "The Citadel",
"lat": 32.7942,
"lon": -79.9608,
"asn": 53257,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Neonova Network Services",
"lat": 40.1623629580151,
"lon": -89.3973355890748,
"asn": 6250,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Mainline Information Systems Inc.",
"lat": 30.4831692112555,
"lon": -84.1969987915025,
"asn": 36467,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Talquin Electric Coop, Inc",
"lat": 30.4831,
"lon": -84.3243,
"asn": 53931,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Carolina West Wireless",
"lat": 35.9758157030618,
"lon": -82.0297562455075,
"asn": 46347,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Vishay Intertechnology, Inc.",
"lat": 40.0414,
"lon": -75.5371,
"asn": 62541,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "WSFS Bank",
"lat": 39.6046,
"lon": -75.7463,
"asn": 53291,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DoD Network Information Center",
"lat": 39.4243543162906,
"lon": -85.6942248400729,
"asn": 5927,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DoD Network Information Center",
"lat": 52.820680163914,
"lon": -73.8257086833992,
"asn": 27153,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DoD Network Information Center",
"lat": 41.8763199889415,
"lon": 37.0236775503112,
"asn": 6034,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Raw Bandwidth Communications, Inc.",
"lat": 37.5399814663771,
"lon": -122.192766846405,
"asn": 7961,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "Eastern Washington University",
"lat": 47.4394,
"lon": -117.627,
"asn": 3935,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Western Washington University",
"lat": 48.7342610212487,
"lon": -122.495277105837,
"asn": 15199,
"customerConeSize": 1
},
{
"country": null,
"orgName": null,
"lat": 47.8950449428028,
"lon": -122.252913416164,
"asn": 30075,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "NNMT",
"lat": 36.0408823225639,
"lon": -105.228747002062,
"asn": 26196,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "TULAROSA COMMUNICATIONS, INC.",
"lat": 32.8274028063337,
"lon": -105.830456897844,
"asn": 11711,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Delcom, Inc.",
"lat": 31.6630083790524,
"lon": -104.365365270586,
"asn": 23546,
"customerConeSize": 1
},
{
"country": null,
"orgName": null,
"lat": 19.4,
"lon": -99.1499999,
"asn": 64097,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "United States Postal Service.",
"lat": 35.9434423060617,
"lon": -78.6751828808765,
"asn": 5774,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Housing and Urban Development",
"lat": 38.8453382279254,
"lon": -77.4434267948353,
"asn": 8076,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "U. S. Department of Transportation",
"lat": 39.2520772582855,
"lon": -79.8054316237677,
"asn": 2576,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "ADAMS BANK & TRUST",
"lat": 41.155,
"lon": -101.677,
"asn": 53663,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "PROPHET SYSTEMS INNOVATION",
"lat": 41.155,
"lon": -101.6769999,
"asn": 16615,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Rural Nebraska Healthcare Network",
"lat": 41.5025290146778,
"lon": -102.312629675215,
"asn": 54342,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DC WIRELESS ISP INC",
"lat": 43.1399145265547,
"lon": -123.265859406647,
"asn": 13377,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "InfoStructure",
"lat": 42.2878463692332,
"lon": -122.830924779554,
"asn": 6296,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Trail Blazers, Inc.",
"lat": 45.2904516792682,
"lon": -122.830414574286,
"asn": 23408,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "Rayaneh Pardazan Baran Co. Ltd.",
"lat": 35.6896,
"lon": 51.4140002,
"asn": 50558,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "Azadnetrasaneh Private Joint Stock Company",
"lat": 35.6896,
"lon": 51.4139998,
"asn": 24631,
"customerConeSize": 13
},
{
"country": "IR",
"orgName": "ARIA VID RAYAN CO.LTD.",
"lat": 35.6896,
"lon": 51.4140003,
"asn": 44691,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "Bank Refah Kargaran",
"lat": 35.6896,
"lon": 51.4139997,
"asn": 49433,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "CallWithMe",
"lat": 35.0310500627424,
"lon": 51.2636926974946,
"asn": 47843,
"customerConeSize": 10
},
{
"country": "IR",
"orgName": "SHETAB INFORMATION PROCESSING CO",
"lat": 35.6896,
"lon": 51.4140004,
"asn": 50177,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "GuilaNet",
"lat": 37.2058,
"lon": 50.0023,
"asn": 50269,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Ricola AG",
"lat": 47.4214,
"lon": 7.49948,
"asn": 48776,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Init7 (Switzerland) Ltd.",
"lat": 48.0289115146683,
"lon": 6.83307529626603,
"asn": 13030,
"customerConeSize": 1240
},
{
"country": "CH",
"orgName": "National Zeitung und Basler Nachrichten AG",
"lat": 47.5596,
"lon": 7.5806101,
"asn": 28874,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "PA Sport UK Ltd",
"lat": 51.5116,
"lon": -0.1632,
"asn": 29202,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "MDNX Internet Limited",
"lat": 53.7943240461599,
"lon": -15.5458604576166,
"asn": 8190,
"customerConeSize": 10
},
{
"country": "NL",
"orgName": "Quinsy B.V.",
"lat": 52.0864912369183,
"lon": 4.98913382186016,
"asn": 34581,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "The Communication Gateway Ltd",
"lat": 51.998,
"lon": -0.98587,
"asn": 24705,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "TSOne Ltd",
"lat": 55.8591,
"lon": -4.24668,
"asn": 48204,
"customerConeSize": 4
},
{
"country": "GB",
"orgName": "Dimasoft Limited",
"lat": 55.0488,
"lon": -1.45269,
"asn": 43057,
"customerConeSize": 1
},
{
"country": "FR",
"orgName": "HASGARD s.a.r.l.",
"lat": 45.7593,
"lon": 4.8291,
"asn": 199627,
"customerConeSize": 1
},
{
"country": "IE",
"orgName": "Cork Community Broadband Limited",
"lat": 51.9162605885911,
"lon": -8.40632454536143,
"asn": 15947,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "INTERSHOP Communications AG",
"lat": 50.9373512119488,
"lon": 11.6006544325455,
"asn": 49885,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "CISEL Informatique SA",
"lat": 46.8025,
"lon": 7.15128,
"asn": 200173,
"customerConeSize": 1
},
{
"country": "SK",
"orgName": "LAST MILE spol. s r.o.",
"lat": 48.2223940689391,
"lon": 18.1915601356534,
"asn": 56800,
"customerConeSize": 1
},
{
"country": "SK",
"orgName": "VNET a.s. Bratislava, Slovakia, SK",
"lat": 48.2579611841891,
"lon": 17.6145893357865,
"asn": 29405,
"customerConeSize": 42
},
{
"country": "SK",
"orgName": "ZSR ZT Bratislava",
"lat": 48.2852478705355,
"lon": 18.6770887492755,
"asn": 25496,
"customerConeSize": 2
},
{
"country": "AT",
"orgName": "IMD -Informations-, Medien- und Datenverarbeitung GmbH",
"lat": 48.2092,
"lon": 16.3727998,
"asn": 42257,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "United Nations Industrial Development Organization",
"lat": 48.2092,
"lon": 16.3728003,
"asn": 28848,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "HXS GmbH",
"lat": 48.216014119461,
"lon": 16.128166299691,
"asn": 62156,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "FIBER Network s.r.o.",
"lat": 50.082191626035,
"lon": 14.4458692747537,
"asn": 51800,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "KABELOVA TELEVIZE CZ s.r.o.",
"lat": 49.7322628414367,
"lon": 15.2274744393671,
"asn": 49101,
"customerConeSize": 2
},
{
"country": "CZ",
"orgName": "Visual Unity a.s.",
"lat": 50.0583,
"lon": 14.4372,
"asn": 41711,
"customerConeSize": 1
},
{
"country": "HU",
"orgName": "JuPiNet Kft.",
"lat": 46.9238059895001,
"lon": 16.7874604543686,
"asn": 42367,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "Sat-Trakt D.O.O.",
"lat": 45.7218716809467,
"lon": 19.7619104576131,
"asn": 41897,
"customerConeSize": 4
},
{
"country": "PL",
"orgName": "Podkarpacki.net Rafal Czarny",
"lat": 50.3026790532143,
"lon": 21.5945368998467,
"asn": 16110,
"customerConeSize": 2
},
{
"country": "BR",
"orgName": "INFOBY - CASA DA INFORMATICA LTDA - ME",
"lat": -27.2199293564299,
"lon": -48.614163815307,
"asn": 263368,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Quick Soft Sistemas de Informacao Ltda",
"lat": -26.3667828818797,
"lon": -48.7992223255649,
"asn": 28176,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Atualnet Provedor de Internet Ltda.",
"lat": -11.3078881467772,
"lon": -39.5181982979146,
"asn": 262727,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Ultranet Telecomunicações Ltda",
"lat": -11.4910381128805,
"lon": -53.1964017755923,
"asn": 262706,
"customerConeSize": 11
},
{
"country": "BR",
"orgName": "Tribunal Regional do Trabalho da 7a Regiao",
"lat": -3.72429,
"lon": -38.5434,
"asn": 52996,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "COREIT - DATA CENTER, SERV GER E INFRA TI LTDA",
"lat": -3.72429,
"lon": -38.5433999,
"asn": 263606,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "ONLINE PROVEDOR DE ACESSO A INTERNET LTDA",
"lat": -5.69951680310326,
"lon": -42.25528924658,
"asn": 263327,
"customerConeSize": 8
},
{
"country": "BR",
"orgName": "Jet Link telecomunicacoes LTDA",
"lat": -29.1731,
"lon": -54.8558,
"asn": 61695,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Redetell Tecnologia em Informática Ltda",
"lat": -29.700214533537,
"lon": -53.8686026441597,
"asn": 53015,
"customerConeSize": 2
},
{
"country": "BR",
"orgName": "claubert dadier kochhann cia ltda",
"lat": -24.1509744334885,
"lon": -47.5485189099562,
"asn": 52734,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "ANA ALICE NAZARIO DE OLIVEIRA - ME",
"lat": -7.26448431416494,
"lon": -38.0102251311695,
"asn": 263522,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "OndaNet Ltda",
"lat": -11.4443744803368,
"lon": -38.7878917710284,
"asn": 262773,
"customerConeSize": 8
},
{
"country": "BR",
"orgName": "L GONZAGA JUNIOR SERVICOS DE INTERNET - ME",
"lat": -6.16619052418552,
"lon": -37.7887944527627,
"asn": 263383,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "STAER International SA",
"lat": 47.6146,
"lon": 23.4735,
"asn": 59735,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Ringier Print SRL",
"lat": 44.4641202039085,
"lon": 26.129880987755,
"asn": 12672,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "ING BANK NV AMSTERDAM BUCHAREST BRANCH",
"lat": 44.4526,
"lon": 26.0927,
"asn": 34022,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Orange Romania S.A.",
"lat": 44.5585594726837,
"lon": 26.119866670855,
"asn": 8338,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "ICANN",
"lat": 33.9773255523499,
"lon": -118.432749351549,
"asn": 26710,
"customerConeSize": 1
},
{
"country": "CL",
"orgName": "NIC Chile",
"lat": -33.4254,
"lon": -70.5665,
"asn": 27678,
"customerConeSize": 8
},
{
"country": "CZ",
"orgName": "Marias sro",
"lat": 50.0672,
"lon": 14.4644001,
"asn": 20701,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "IT Systems Solutii Profesionale SRL",
"lat": 44.4599,
"lon": 26.1333008,
"asn": 42950,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Impact Networks SRL",
"lat": 44.4155,
"lon": 26.1471,
"asn": 35576,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Secure Data Systems SRL",
"lat": 44.4599,
"lon": 26.1332992,
"asn": 3210,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "NETBYTE TELECOM SRL",
"lat": 44.5853324789392,
"lon": 25.9174946520627,
"asn": 39900,
"customerConeSize": 9
},
{
"country": "BA",
"orgName": "Raiffeisen Bank D.D. Bosnia and Herzegovina",
"lat": 43.8564,
"lon": 18.4134,
"asn": 43947,
"customerConeSize": 1
},
{
"country": "SI",
"orgName": "Akton Autonomous System",
"lat": 44.7065700840821,
"lon": 17.8044439545841,
"asn": 25467,
"customerConeSize": 8
},
{
"country": "BA",
"orgName": "University of Sarajevo",
"lat": 43.8564,
"lon": 18.4134001,
"asn": 8670,
"customerConeSize": 1
},
{
"country": "MD",
"orgName": "Inet Expres S.R.L.",
"lat": 47.0056,
"lon": 28.8575,
"asn": 47729,
"customerConeSize": 1
},
{
"country": "MD",
"orgName": "Nexui-SW S.R.L.",
"lat": 47.0262,
"lon": 28.8412002,
"asn": 50560,
"customerConeSize": 1
},
{
"country": "MD",
"orgName": "Urscom-TV S.R.L.",
"lat": 48.1558,
"lon": 28.2975,
"asn": 57776,
"customerConeSize": 1
},
{
"country": "MD",
"orgName": "NEOMATRIX SRL",
"lat": 45.1392,
"lon": 24.6792,
"asn": 61062,
"customerConeSize": 1
},
{
"country": "MD",
"orgName": "ITNS. NET SRL",
"lat": 47.0262,
"lon": 28.8411998,
"asn": 35346,
"customerConeSize": 4
},
{
"country": "PL",
"orgName": "Societatea Comerciala \"ACER-COM\" S.R.L.",
"lat": 53.1874543296837,
"lon": 34.0062030325751,
"asn": 57713,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Infopardall Ltda me",
"lat": -26.3563420685103,
"lon": -48.4022161707073,
"asn": 263051,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "MHNET TELECOM",
"lat": -26.8992613024822,
"lon": -53.0090228181596,
"asn": 28146,
"customerConeSize": 37
},
{
"country": "BR",
"orgName": "Internet Servicos Ltda.",
"lat": -27.2038255604164,
"lon": -51.8722877687043,
"asn": 262746,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Cubo Networks Ltda.",
"lat": -27.326536136303,
"lon": -49.3269331033632,
"asn": 262782,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "ROALNET SOLUÇÕES WEB LTDA",
"lat": -29.4692,
"lon": -52.0885,
"asn": 262315,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "MUNICIPIO DE NOVO HAMBURGO",
"lat": -29.7097,
"lon": -51.1324,
"asn": 61903,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Joao Marcelo Kasper",
"lat": -28.0391914877547,
"lon": -53.3747375466483,
"asn": 262416,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Universidade Federal do Rio Grande do Sul",
"lat": -30.1933382154297,
"lon": -51.2677005152497,
"asn": 2716,
"customerConeSize": 8
},
{
"country": "BR",
"orgName": "BALSAS NET LTDA - ME",
"lat": -7.53292,
"lon": -46.035,
"asn": 61658,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "CLICK NET BRASIL INFORMATICA E TELECOMUNICACOES LT",
"lat": -16.9884508739598,
"lon": -47.7418568282281,
"asn": 262989,
"customerConeSize": 8
},
{
"country": "BR",
"orgName": "A. C. VERA FILHO TELECOMUNICACOES E INFORMATICA -",
"lat": -5.53089819597934,
"lon": -47.2922638545922,
"asn": 262975,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Eyes Nwhere Sistemas Inteligentes de Imagem Ltda",
"lat": -6.38598286377184,
"lon": -57.7762324779819,
"asn": 263098,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "ARANET COMUNICAÇÃO LTDA",
"lat": -6.36674731260293,
"lon": -48.5437766015631,
"asn": 262462,
"customerConeSize": 7
},
{
"country": "BR",
"orgName": "Isaque Oliveira de Santana",
"lat": -10.6509263096039,
"lon": -37.9168107666767,
"asn": 52860,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Visão Informática & Telecomunicações EIRELI - ME",
"lat": -18.952827581652,
"lon": -55.4227621334337,
"asn": 263113,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Italnet Telecomunicações Ltda",
"lat": -29.1371609822376,
"lon": -51.4494514112798,
"asn": 28599,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "BAU E DORL LTDA",
"lat": -24.371372801149,
"lon": -50.9946732784651,
"asn": 262911,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Ampernet Telecomunicações Ltda",
"lat": -25.8636870111641,
"lon": -52.8572249222886,
"asn": 28158,
"customerConeSize": 10
},
{
"country": "BR",
"orgName": "Force Telecom Ltda",
"lat": -25.7346,
"lon": -53.0585,
"asn": 262411,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "World Line Ltda",
"lat": -25.2060234100208,
"lon": -51.319478145555,
"asn": 28285,
"customerConeSize": 5
},
{
"country": "BR",
"orgName": "GOX INTERNET",
"lat": -20.07,
"lon": -44.5826999,
"asn": 263623,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "MINAS WI FI TELECOMUNICAÇÕES LTDA",
"lat": -21.0982612601152,
"lon": -44.8996633349233,
"asn": 262314,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "NET.COM TELECOMUNICACOES LTDA",
"lat": -23.0852635456991,
"lon": -46.6587055715736,
"asn": 263305,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Center Prestadora Serviços S/C Ltda",
"lat": -21.7445920964802,
"lon": -46.5308734854641,
"asn": 53059,
"customerConeSize": 12
},
{
"country": "BR",
"orgName": "Info House Informática e Papeis Ltda",
"lat": -23.0773473747579,
"lon": -46.1918520041277,
"asn": 52918,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "DAVOI ISP - Provedor de sol. e ac. a internet Ltl",
"lat": -22.5899048017572,
"lon": -48.7831902400559,
"asn": 262622,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Noroestecom Telecomunicacoes Ltda",
"lat": -21.2339047130973,
"lon": -49.6864803485932,
"asn": 52579,
"customerConeSize": 18
},
{
"country": "BR",
"orgName": "Aonet Provedor de Internet LTDA - ME",
"lat": -22.3935853286806,
"lon": -49.4740831793708,
"asn": 262755,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Oquei Soluções em TI",
"lat": -21.0392845500529,
"lon": -49.6652509942708,
"asn": 61937,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "FOX Internet Banda Larga",
"lat": -20.87700977563,
"lon": -49.1707331969275,
"asn": 262699,
"customerConeSize": 4
},
{
"country": "BR",
"orgName": "USINA COLOMBO S/A - AÇÚCAR E ÁLCOOL",
"lat": -22.1445730646321,
"lon": -49.0342377493048,
"asn": 28324,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Sntech Brasil Telecom Ltda ME",
"lat": -23.5337,
"lon": -46.6289001,
"asn": 263491,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Wireless Comm Services LTDA",
"lat": -23.1703005067485,
"lon": -46.4287678283692,
"asn": 28165,
"customerConeSize": 3
},
{
"country": "BR",
"orgName": "Clearing House S/A",
"lat": -23.5309213060578,
"lon": -46.6690717583435,
"asn": 53208,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "KOREA BANKING INSTITUTE",
"lat": 37.5632,
"lon": 126.9929998,
"asn": 17867,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "Daum Communication Co.,LTD",
"lat": 37.2253835122135,
"lon": 127.09880544963,
"asn": 9764,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "SK Networks",
"lat": 37.5632,
"lon": 126.9930003,
"asn": 23575,
"customerConeSize": 5
},
{
"country": "KR",
"orgName": "Korea Telecom-PUBNET",
"lat": 37.5101615102959,
"lon": 126.992064543658,
"asn": 45400,
"customerConeSize": 17
},
{
"country": "KR",
"orgName": "DACOM",
"lat": 37.5406470857458,
"lon": 126.979469856236,
"asn": 9950,
"customerConeSize": 8
},
{
"country": "BR",
"orgName": "Procuradoria Geral de Justiça de Minas Gerais",
"lat": -19.8682,
"lon": -43.9189,
"asn": 263406,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Teranet comunicacoes multimidia ltda",
"lat": -19.2242133073229,
"lon": -46.0219757560251,
"asn": 264362,
"customerConeSize": 11
},
{
"country": "BR",
"orgName": "ALOL - América Latina On Line",
"lat": -22.3933237719398,
"lon": -45.7672209678787,
"asn": 53077,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Bahianet Ltda.",
"lat": -14.256045844343,
"lon": -39.2270602856377,
"asn": 262373,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Infortel Telecomunicações e Serviços Ltda.",
"lat": -14.1824875848388,
"lon": -38.8771142105586,
"asn": 53180,
"customerConeSize": 3
},
{
"country": "BR",
"orgName": "GERAIS ON LINE INFORMATICA LTDA - ME",
"lat": -12.146,
"lon": -44.993,
"asn": 61904,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OOO Smart-Processing",
"lat": 59.939,
"lon": 30.3157994,
"asn": 198155,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CrossMix Ltd.",
"lat": 59.939,
"lon": 30.3158007,
"asn": 201861,
"customerConeSize": 4
},
{
"country": "RU",
"orgName": "OOO Harmony",
"lat": 59.939,
"lon": 30.3157993,
"asn": 198907,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Planet ltd.",
"lat": 47.9872,
"lon": 37.7621997,
"asn": 41875,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "The Joint-Stock Commercial Bank CentroCredit.",
"lat": 55.7589246048648,
"lon": 37.6269917372064,
"asn": 15984,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Limited Liability Company Sviaz Industriya",
"lat": 55.7539936872009,
"lon": 37.6487967452644,
"asn": 50471,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Bospor-Telecom LLC",
"lat": 45.3729,
"lon": 36.4805,
"asn": 42238,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Freenet Ltd.",
"lat": 50.2455445864464,
"lon": 30.377387574006,
"asn": 31148,
"customerConeSize": 12
},
{
"country": "UA",
"orgName": "PE Ovchinnikov Aleksandr Anatolevich",
"lat": 45.1442,
"lon": 34.2368,
"asn": 43822,
"customerConeSize": 1
},
{
"country": "VG",
"orgName": "Yes Networks Unlimited Ltd",
"lat": 52.1406575661414,
"lon": 3.98493215943773,
"asn": 61316,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "LLC \"WNET UKRAINE\"",
"lat": 50.4409,
"lon": 30.5272008,
"asn": 41540,
"customerConeSize": 4
},
{
"country": "UA",
"orgName": "UKRAINIAN INTERNET NAMES CENTER.LTD",
"lat": 50.3241867804266,
"lon": 32.4483935792123,
"asn": 49227,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Complex Communication Systems Ltd",
"lat": 46.4791,
"lon": 30.7271999,
"asn": 29475,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Rzeszow University of Technology",
"lat": 50.0423,
"lon": 22.007,
"asn": 39873,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Technical University of Gdansk, Academic Computer Center TASK",
"lat": 54.3541891279897,
"lon": 18.5796950523274,
"asn": 12831,
"customerConeSize": 50
},
{
"country": "PL",
"orgName": "POZMAN-EDU",
"lat": 52.4108598808584,
"lon": 16.8784762724438,
"asn": 9112,
"customerConeSize": 4
},
{
"country": "UA",
"orgName": "Prominvest Bank",
"lat": 50.4409,
"lon": 30.5271992,
"asn": 31489,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "TOV Teleradiocompany TV Plus Kino",
"lat": 50.4409,
"lon": 30.5272009,
"asn": 42918,
"customerConeSize": 3
},
{
"country": "UA",
"orgName": "National Security and Defence Council of Ukraine Staff",
"lat": 50.4409,
"lon": 30.5271991,
"asn": 56978,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "\"Commercial House Inter Trading Plus\" LTD",
"lat": 48.4229,
"lon": 35.1378999,
"asn": 5530,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Dnepronet Ltd.",
"lat": 49.2601362433328,
"lon": 33.2119780571218,
"asn": 51069,
"customerConeSize": 2
},
{
"country": "UA",
"orgName": "Solar Unity Ltd",
"lat": 48.4229,
"lon": 35.1379002,
"asn": 24609,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Slaska Siec Metropolitalna Sp. z o.o.",
"lat": 50.2795,
"lon": 18.6993,
"asn": 197274,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "G-Net S.C. T. Serwatka, W. Rakoniewski",
"lat": 50.2234517468842,
"lon": 18.604657669332,
"asn": 197588,
"customerConeSize": 5
},
{
"country": "PL",
"orgName": "Czarnet s.c. Krzysztof Szymura Andrzej Owczarek",
"lat": 50.2138159653622,
"lon": 18.7317004562691,
"asn": 196729,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Sklepy Komfort S.A.",
"lat": 53.4274,
"lon": 14.562,
"asn": 43058,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "ISD Huta Czestochowa Sp. z o.o.",
"lat": 50.8075,
"lon": 19.1196,
"asn": 48248,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Urzad Marszalkowski Wojewodztwa Lubelskiego",
"lat": 51.2464,
"lon": 22.5685,
"asn": 198788,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "NOVUM Spolka Akcyjna",
"lat": 52.2735518059031,
"lon": 20.489663902077,
"asn": 47128,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "WASKO S.A.",
"lat": 52.1884,
"lon": 21.0116003,
"asn": 42564,
"customerConeSize": 3
},
{
"country": "PL",
"orgName": "WASKO S.A.",
"lat": 50.3085332183099,
"lon": 18.766501963223,
"asn": 20491,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Klimenko Anna.Aleksandrovna PE",
"lat": 47.2583,
"lon": 39.8183002,
"asn": 52022,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Megamarket, ltd",
"lat": 47.2583,
"lon": 39.8182998,
"asn": 49679,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Military Unit 3034",
"lat": 47.2583,
"lon": 39.8183003,
"asn": 61074,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OJSC Dimitrovgrad Automobile Units Plant",
"lat": 54.2236,
"lon": 49.6151,
"asn": 58090,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OJSC \"Petrol Stock Company Bashneft\"",
"lat": 54.7298,
"lon": 56.0555001,
"asn": 51397,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Ltd. \"SPA\"Impulse\"",
"lat": 58.0901604714339,
"lon": 56.2747487478487,
"asn": 41034,
"customerConeSize": 11
},
{
"country": "RU",
"orgName": "Innovative Solutions Ltd",
"lat": 58.0201,
"lon": 56.2518001,
"asn": 13296,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Storm Systems LLC",
"lat": 44.5777,
"lon": 38.0802,
"asn": 59796,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "LLC \"Foratelecom\"",
"lat": 55.7616,
"lon": 37.6411018,
"asn": 57420,
"customerConeSize": 4
},
{
"country": "RU",
"orgName": "\"Info-content\" LLC",
"lat": 55.7616,
"lon": 37.6410982,
"asn": 60347,
"customerConeSize": 1
},
{
"country": "KZ",
"orgName": "JSC Kaspi Bank",
"lat": 43.25,
"lon": 76.9500001,
"asn": 35673,
"customerConeSize": 1
},
{
"country": "KZ",
"orgName": "JSC \"Kaztranscom\"",
"lat": 48.250098484851,
"lon": 68.2346591949234,
"asn": 35104,
"customerConeSize": 26
},
{
"country": "KZ",
"orgName": "Aspan telecom",
"lat": 43.25,
"lon": 76.9499999,
"asn": 8720,
"customerConeSize": 1
},
{
"country": "UZ",
"orgName": "BUZTON J.V.",
"lat": 40.8130782618222,
"lon": 67.7193631256887,
"asn": 29385,
"customerConeSize": 1
},
{
"country": "UZ",
"orgName": "TEXNOPROSISTEM",
"lat": 41.295477865036,
"lon": 69.2730319369747,
"asn": 34718,
"customerConeSize": 16
},
{
"country": "UZ",
"orgName": "JV \"UNITECH\" AS NUMBER",
"lat": 41.3105,
"lon": 69.2953001,
"asn": 30728,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "ZAO EnergoGarantService",
"lat": 53.9809817473566,
"lon": 47.1797726071884,
"asn": 197708,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CJSC Togliatti Telecom",
"lat": 53.6792741340587,
"lon": 48.827064678819,
"asn": 8249,
"customerConeSize": 7
},
{
"country": "RU",
"orgName": "CJSC \"Avantel\"",
"lat": 53.8215346853209,
"lon": 48.8336194091968,
"asn": 197235,
"customerConeSize": 1
},
{
"country": "KG",
"orgName": "AKNET Educational and Science Network",
"lat": 42.8709,
"lon": 74.5882001,
"asn": 12764,
"customerConeSize": 2
},
{
"country": "KG",
"orgName": "Saimanet Telecomunications",
"lat": 42.8703013878968,
"lon": 74.5779152918536,
"asn": 29061,
"customerConeSize": 5
},
{
"country": "KG",
"orgName": "ASIAINFO TE",
"lat": 42.8709,
"lon": 74.5881999,
"asn": 8511,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "ANRO, Inc.",
"lat": 39.9425,
"lon": -75.598,
"asn": 30288,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "triVIN Inc / General Systems Solutions",
"lat": 41.352587926907,
"lon": -72.0440694478674,
"asn": 22036,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Iconn LLC",
"lat": 41.3106,
"lon": -72.9229,
"asn": 6266,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "99MAIN NETWORK SERVICES",
"lat": 41.5431262572362,
"lon": -72.1332075076932,
"asn": 13527,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Universal Tax Systems Inc",
"lat": 34.1588473705682,
"lon": -84.9099735022254,
"asn": 10891,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Systems & Methods, Inc.",
"lat": 33.5899,
"lon": -85.1208,
"asn": 13710,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Flint River Services LLC.",
"lat": 31.5587,
"lon": -84.0903,
"asn": 21700,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Sainsbury's Supermarkets Ltd",
"lat": 51.5346585931946,
"lon": -0.0931910729556524,
"asn": 39060,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Level 3 Communications, Inc.",
"lat": 36.023026628203,
"lon": -88.3649892886005,
"asn": 1,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "Bard College at Simon's Rock",
"lat": 42.1837,
"lon": -73.364,
"asn": 19345,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Select Staffing",
"lat": 33.7172715019433,
"lon": -115.177928581696,
"asn": 27379,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "City of Santa Barbara",
"lat": 34.4205476879833,
"lon": -119.781757059194,
"asn": 26402,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Chumash Casino Resort",
"lat": 34.6512,
"lon": -120.436,
"asn": 33161,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "AgStar Financial Services, FLCA",
"lat": 44.0742561392498,
"lon": -93.4331871036395,
"asn": 19284,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Jostens",
"lat": 44.8744312197761,
"lon": -93.3436137794538,
"asn": 40238,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "South Dakota State University",
"lat": 44.3067,
"lon": -96.786,
"asn": 11607,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "South Dakota School of Mines and Technology",
"lat": 44.0809,
"lon": -103.173,
"asn": 11602,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Black Hills State University",
"lat": 44.4852,
"lon": -103.859,
"asn": 22215,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "RMI Physician Services Corp.",
"lat": 29.6047,
"lon": -95.3862,
"asn": 16636,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Leidos CBSNSOC (commercial Business Services Network Security Operations Center)",
"lat": 34.7506386392199,
"lon": -92.3102758581203,
"asn": 25945,
"customerConeSize": 1
},
{
"country": "ZM",
"orgName": "Post Newspapers Ltd",
"lat": -15.418,
"lon": 28.288,
"asn": 37043,
"customerConeSize": 1
},
{
"country": "GH",
"orgName": "Comsys (GH) Limited",
"lat": 5.56159749533272,
"lon": -0.175534365652386,
"asn": 37012,
"customerConeSize": 7
},
{
"country": "CD",
"orgName": "IBURST RDC",
"lat": 24.6084210008388,
"lon": 14.609874099224,
"asn": 32842,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "LIGO Livingston Observatory",
"lat": 30.4461,
"lon": -90.7588,
"asn": 14940,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Aunt Millie's Bakeries",
"lat": 41.4906207844988,
"lon": -85.084546172013,
"asn": 32427,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Nobis Technology Group, LLC",
"lat": 39.1857019099998,
"lon": -113.991423083078,
"asn": 15003,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "Data-Vision, Inc.",
"lat": 41.722851831609,
"lon": -86.6898618874955,
"asn": 19325,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Anaglyph Consulting, Inc.",
"lat": 40.6828,
"lon": -89.6019,
"asn": 54207,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Shawn Kleinart Consulting",
"lat": 39.6599,
"lon": -104.837,
"asn": 54144,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Digital Crossing Networks, LLC",
"lat": 35.9204341585858,
"lon": -83.9603318500736,
"asn": 54725,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "The Nexus Group, Inc.",
"lat": 36.197349166836,
"lon": -86.2090921084703,
"asn": 6203,
"customerConeSize": 4
},
{
"country": "US",
"orgName": "Gibson Electric Membership Corporation",
"lat": 36.2081709366909,
"lon": -89.053290852665,
"asn": 30257,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Northeast Louisiana Telephone Company, Inc.",
"lat": 32.7562848464662,
"lon": -91.769080500165,
"asn": 22464,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "New Wave Communications",
"lat": 30.6628353482262,
"lon": -94.325881125656,
"asn": 16923,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "R.R. Donnelley and Sons, Co.",
"lat": 41.7930081585627,
"lon": -88.1653071003575,
"asn": 14328,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Pressa Networks Ltda",
"lat": -24.2122808776717,
"lon": -47.2194906476221,
"asn": 53023,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "telna Mobile",
"lat": 35.9926,
"lon": -115.12,
"asn": 36060,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Hughes Network Systems, Inc.",
"lat": 39.18072587603,
"lon": -77.2276190888183,
"asn": 1358,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CISP",
"lat": 41.5179356249654,
"lon": -83.4217337611448,
"asn": 16617,
"customerConeSize": 4
},
{
"country": "US",
"orgName": "Rowe Wireless Networks LLC",
"lat": 39.9609,
"lon": -81.5442,
"asn": 25787,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "U.S. Dept. of Health and Human Services",
"lat": 38.9763407214446,
"lon": -77.5542475600528,
"asn": 26810,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "National Institutes of Health",
"lat": 38.398407280591,
"lon": -77.4695010603874,
"asn": 3527,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "U.S. Center For Disease Control and Prevention",
"lat": 33.920677659032,
"lon": -84.4291292657595,
"asn": 13611,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "ALTURA CREDIT UNION",
"lat": 33.9763,
"lon": -117.33,
"asn": 26866,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Vector Data Systems LLC",
"lat": 38.9704795341715,
"lon": -76.9029716171039,
"asn": 11362,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Ivanteevskie telcommunicacii ISP",
"lat": 55.8891082293532,
"lon": 37.8133520117422,
"asn": 48149,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OJSC Infolink Technology",
"lat": 55.7494261422734,
"lon": 37.7739512267349,
"asn": 35539,
"customerConeSize": 5
},
{
"country": "RU",
"orgName": "CJSC Enginet+",
"lat": 55.9595541906282,
"lon": 37.9204177432204,
"asn": 61380,
"customerConeSize": 1
},
{
"country": "BO",
"orgName": "Nuevatel PCS de Bolivia S.A.",
"lat": -16.5,
"lon": -68.15,
"asn": 28024,
"customerConeSize": 2
},
{
"country": "RU",
"orgName": "OST CJSC",
"lat": 55.7616,
"lon": 37.6411019,
"asn": 61141,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "JSC Ul-Com-Media",
"lat": 55.7616,
"lon": 37.6410981,
"asn": 198297,
"customerConeSize": 13
},
{
"country": "RU",
"orgName": "Joint Stock Company \"Company Group \"Sanna\"",
"lat": 55.7616,
"lon": 37.641102,
"asn": 196811,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Alfa Ltd.",
"lat": 55.5368883465543,
"lon": 37.7506927521713,
"asn": 34277,
"customerConeSize": 4
},
{
"country": "RU",
"orgName": "ProfSnabIT Ltd",
"lat": 55.7616,
"lon": 37.641098,
"asn": 61271,
"customerConeSize": 1
},
{
"country": "LT",
"orgName": "ERGO LIETUVA, UADB",
"lat": 54.6894,
"lon": 25.2799998,
"asn": 42380,
"customerConeSize": 1
},
{
"country": "LT",
"orgName": "UAB Proservis",
"lat": 54.8859,
"lon": 23.9316,
"asn": 56413,
"customerConeSize": 1
},
{
"country": "LT",
"orgName": "Kauno Technologijos Universitetas",
"lat": 54.8859,
"lon": 23.9316001,
"asn": 44358,
"customerConeSize": 1
},
{
"country": "LT",
"orgName": "\"Plius\" UAB",
"lat": 54.6894,
"lon": 25.2800003,
"asn": 61091,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "JSCB Agrocombank",
"lat": 50.4409,
"lon": 30.527201,
"asn": 49710,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Miratel Ltd",
"lat": 46.4791,
"lon": 30.7272002,
"asn": 48243,
"customerConeSize": 3
},
{
"country": "RU",
"orgName": "\"Tez Tour\", Ltd.",
"lat": 53.1578851185484,
"lon": 33.8361669092715,
"asn": 5531,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Elektranet Ltd.",
"lat": 55.883,
"lon": 38.7804,
"asn": 199933,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "DTS LLC",
"lat": 55.7573961149492,
"lon": 37.6264108384323,
"asn": 34898,
"customerConeSize": 9
},
{
"country": "RU",
"orgName": "VAENGA Ltd.",
"lat": 67.3906953510849,
"lon": 34.2590981383333,
"asn": 197670,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OOO Alternativa",
"lat": 51.5431,
"lon": 45.9986999,
"asn": 50647,
"customerConeSize": 2
},
{
"country": "RU",
"orgName": "OJSK Federal Grid Company of Unified Energy System",
"lat": 55.7616,
"lon": 37.6411021,
"asn": 42809,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OJSC OGK-4",
"lat": 55.7328,
"lon": 37.4111,
"asn": 197273,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Research and Production Enterprise Robis Ltd",
"lat": 55.7616,
"lon": 37.6410979,
"asn": 60464,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Forum-Telecom Ltd.",
"lat": 59.939,
"lon": 30.3158008,
"asn": 201763,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Westcom Ltd",
"lat": 59.939,
"lon": 30.3157992,
"asn": 48370,
"customerConeSize": 2
},
{
"country": "RU",
"orgName": "\"Golas\" LLC",
"lat": 59.939,
"lon": 30.3158009,
"asn": 51789,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Federal State-owned Enterprise Russian Television and Radio Broadcasting Network",
"lat": 55.7616,
"lon": 37.6411022,
"asn": 57767,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Open JSC Krasnoyarskenergosbit",
"lat": 56.0013,
"lon": 92.8856,
"asn": 50787,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "SOLVO ltd",
"lat": 59.939,
"lon": 30.3157991,
"asn": 48890,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "VKS-internet Ltd",
"lat": 56.6374,
"lon": 66.6636,
"asn": 47654,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Connect LLC",
"lat": 56.6374,
"lon": 66.6636001,
"asn": 50158,
"customerConeSize": 2
},
{
"country": "RU",
"orgName": "Sever-Svyaz",
"lat": 56.6374,
"lon": 66.6635999,
"asn": 43849,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Ural Security System Center Ltd.",
"lat": 56.8428,
"lon": 60.5893998,
"asn": 199259,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Commercial Bank Uralfinance LLC",
"lat": 56.8428,
"lon": 60.5894003,
"asn": 198693,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "State Educational Institution of Higher Professional Education MATI Russian State University of Aviation Technology named after K.E. Tsiolkovsky. \"MATI\" Russian State University of Aviation Technology named after K.E. Tsiolkovsky.",
"lat": 55.7616,
"lon": 37.6410978,
"asn": 31707,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "LLC SETEL",
"lat": 55.7720053702518,
"lon": 37.604582791857,
"asn": 35808,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "2COM Co Ltd.",
"lat": 55.7567694201133,
"lon": 37.6307301902846,
"asn": 8334,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "Hewlett Packard Europe S.A.S.",
"lat": 51.5514330854827,
"lon": -1.35930452474584,
"asn": 1889,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Hewlett-Packard Company",
"lat": 11.7524659888385,
"lon": 94.6666599279114,
"asn": 151,
"customerConeSize": 1
},
{
"country": "CN",
"orgName": "GOLD SEA COMMUNICATIONS CO.,LTD",
"lat": 22.5502,
"lon": 114.122,
"asn": 56008,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "Unit 12 -15 , 23/F , Tower B , SouthMark",
"lat": 23.8654724560482,
"lon": 114.443426798404,
"asn": 55361,
"customerConeSize": 3
},
{
"country": "KR",
"orgName": "TBROAD Dongdaemun cable networks,Inc.",
"lat": 37.5687159870513,
"lon": 127.010612841625,
"asn": 9971,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "Qrixseodaemuncable, Inc.",
"lat": 37.5619631975455,
"lon": 126.995973122495,
"asn": 38095,
"customerConeSize": 3
},
{
"country": "KR",
"orgName": "TBROAD Saerom Broadcasting",
"lat": 37.478369849307,
"lon": 126.650312326162,
"asn": 17597,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "8th Floor ELJ Communications Center",
"lat": 14.6143289802331,
"lon": 121.019998743975,
"asn": 45351,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "Clear Path Networks Inc",
"lat": 14.5407522189517,
"lon": 121.087600084667,
"asn": 45754,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "Skycable Corporation",
"lat": 14.6250008099123,
"lon": 121.052502217957,
"asn": 59348,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "TRI.ph AS Inter-Island Information Systems, Inc., AS Internet Service Provider and Internet Data Center, Manila PH",
"lat": 14.554725474683,
"lon": 121.012504211431,
"asn": 24306,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "Mosaic Communications Inc.",
"lat": 14.1123855887063,
"lon": 121.359400904015,
"asn": 6163,
"customerConeSize": 2
},
{
"country": "RU",
"orgName": "LLC Sound.Event.Technology",
"lat": 55.7616,
"lon": 37.6411023,
"asn": 61411,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Joint Stock Commercial Bank \"Rosinterbank\"",
"lat": 55.7616,
"lon": 37.6410977,
"asn": 61063,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "eHouse Holding SA",
"lat": 55.7616,
"lon": 37.6411024,
"asn": 24925,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Telematics LLC",
"lat": 55.1599,
"lon": 61.4025999,
"asn": 42219,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "\"NSV Auto Rus\" Limited Liability Company",
"lat": 55.7616,
"lon": 37.6410976,
"asn": 51593,
"customerConeSize": 1
},
{
"country": "SD",
"orgName": "Vision Valley",
"lat": 15.5787,
"lon": 35.5237998,
"asn": 37211,
"customerConeSize": 1
},
{
"country": "SD",
"orgName": "Sudanese Research and Education Network",
"lat": 15.2093395798928,
"lon": 35.4390330940453,
"asn": 37197,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "Delta M d.o.o.",
"lat": 44.833,
"lon": 20.5,
"asn": 34404,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "Dunav osiguranje a.d.o",
"lat": 44.833,
"lon": 20.5000001,
"asn": 47663,
"customerConeSize": 1
},
{
"country": "MK",
"orgName": "NEOTEL DOO export-import Skopje",
"lat": 41.8371589446158,
"lon": 21.5618310389364,
"asn": 34772,
"customerConeSize": 27
},
{
"country": "SI",
"orgName": "Telemach Rotovz d.d.",
"lat": 46.5384052325331,
"lon": 15.6433071066001,
"asn": 3212,
"customerConeSize": 75
},
{
"country": "RS",
"orgName": "JUBMES banka a.d. Beograd",
"lat": 44.833,
"lon": 20.4999999,
"asn": 49486,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "Mainstream doo",
"lat": 44.8372332549195,
"lon": 20.4815891586291,
"asn": 51859,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Terna S.p.A.",
"lat": 41.896,
"lon": 12.5136,
"asn": 21014,
"customerConeSize": 1
},
{
"country": "MT",
"orgName": "Vodafone Malta Limited",
"lat": 35.8953496164382,
"lon": 14.496098427324,
"asn": 33874,
"customerConeSize": 13
},
{
"country": "IT",
"orgName": "GRANDI NAVI VELOCI SPA",
"lat": 44.4096,
"lon": 8.97859,
"asn": 57525,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "SETA S.R.L.",
"lat": 38.9214,
"lon": 16.2493,
"asn": 198898,
"customerConeSize": 1
},
{
"country": "MT",
"orgName": "Melita plc.",
"lat": 31.5133647053399,
"lon": 7.70166856325565,
"asn": 12709,
"customerConeSize": 8
},
{
"country": "SI",
"orgName": "Istarska kreditna banka Umag d.d.",
"lat": 45.4331,
"lon": 13.5202,
"asn": 30841,
"customerConeSize": 1
},
{
"country": "HR",
"orgName": "Hrvatska posta d.d.",
"lat": 45.7627,
"lon": 16.0042,
"asn": 196622,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "KCM SA",
"lat": 42.5149731808075,
"lon": 23.800857873336,
"asn": 43943,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Noblecom Ltd.",
"lat": 43.1781614285474,
"lon": 22.9191336047023,
"asn": 48262,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Eco Clean BG Ltd",
"lat": 42.6976,
"lon": 23.3223003,
"asn": 197516,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "NETISSAT",
"lat": 42.6212124421419,
"lon": 23.3267077501751,
"asn": 9127,
"customerConeSize": 11
},
{
"country": "ES",
"orgName": "BVOX WORLD S.L.U.",
"lat": 40.4591465270652,
"lon": -3.77134287246159,
"asn": 50478,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "Producmedia,S.L.U.",
"lat": 39.6806394687752,
"lon": -1.04532441206961,
"asn": 43833,
"customerConeSize": 21
},
{
"country": "ES",
"orgName": "IBERMATICA S.A.",
"lat": 40.6272508847211,
"lon": -2.18343940729342,
"asn": 51678,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "Informatica El Corte Ingles SA",
"lat": 40.3397990967572,
"lon": -3.17287538374602,
"asn": 48846,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "Prored Comunicaciones, S.L.",
"lat": 39.4506922699658,
"lon": -0.378786871269372,
"asn": 31577,
"customerConeSize": 3
},
{
"country": "NZ",
"orgName": "Auckland University of Technology",
"lat": -36.8469,
"lon": 174.768,
"asn": 24398,
"customerConeSize": 1
},
{
"country": "NZ",
"orgName": "NZ Forest Research Institute Ltd",
"lat": -38.1374,
"lon": 176.249,
"asn": 38140,
"customerConeSize": 1
},
{
"country": "NZ",
"orgName": "REANNZ National Research and Education Network",
"lat": -41.272260710636,
"lon": 174.782405574661,
"asn": 38299,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "National Oceanic and Atmospheric Administration",
"lat": 40.3838566286082,
"lon": -98.7229857303809,
"asn": 26100,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Pacific Disaster Center",
"lat": 20.7331,
"lon": -156.45,
"asn": 16538,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Hawaii Department of Education",
"lat": 21.265449475656,
"lon": -157.776047070994,
"asn": 25640,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "ZAM ZAM NET",
"lat": 28.6167359262266,
"lon": 77.2145163502212,
"asn": 132969,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Inet Infra",
"lat": 28.6262,
"lon": 77.2180999,
"asn": 133596,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "453 Ladplacout Jorakhaebua",
"lat": 13.733,
"lon": 100.5000002,
"asn": 56067,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "POPIDC powered by CSLoxinfo",
"lat": 13.733,
"lon": 100.4999998,
"asn": 131447,
"customerConeSize": 3
},
{
"country": "TH",
"orgName": "Bangmod Enterprise Co., Ltd.",
"lat": 13.6876419126957,
"lon": 100.562207528236,
"asn": 58955,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Center for Satellite Television DonSatTV plus Ltd",
"lat": 47.9872,
"lon": 37.7622004,
"asn": 197287,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "PE Bedniy Alexander Sergeevich",
"lat": 47.5951,
"lon": 37.4831,
"asn": 62028,
"customerConeSize": 3
},
{
"country": "RU",
"orgName": "Teleradiocompany MIR Ltd",
"lat": 47.9872,
"lon": 37.7621996,
"asn": 39726,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "CJSC \"DONETSKSTEEL\" - IRON AND STEEL WORKS\"",
"lat": 47.75140962,
"lon": 32.6632490192877,
"asn": 42485,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "AITEX s.r.o.",
"lat": 49.6968,
"lon": 13.4175,
"asn": 201625,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "itself s.r.o.",
"lat": 49.1959065925018,
"lon": 16.4039507950639,
"asn": 12570,
"customerConeSize": 11
},
{
"country": "CZ",
"orgName": "Altnet s.r.o.",
"lat": 50.2115179168817,
"lon": 14.0637664352602,
"asn": 50163,
"customerConeSize": 1
},
{
"country": "GE",
"orgName": "JSC Wissol Petroleum Georgia",
"lat": 41.7215,
"lon": 44.7828,
"asn": 199872,
"customerConeSize": 1
},
{
"country": "AM",
"orgName": "Armenia Telephone Company",
"lat": 40.1822676280635,
"lon": 44.516622708816,
"asn": 12297,
"customerConeSize": 9
},
{
"country": "GE",
"orgName": "\"Global-Erty\" JSC",
"lat": 41.7215,
"lon": 44.7828001,
"asn": 34666,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Technical Solutions Ltd.",
"lat": 42.6976,
"lon": 23.3222997,
"asn": 44564,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "TOXITY records OOD.",
"lat": 42.6976,
"lon": 23.3223004,
"asn": 199132,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "\"Makeyevskie telesistemy\" ltd",
"lat": 49.2509,
"lon": 34.2389,
"asn": 47638,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "CITY.NET Ltd.",
"lat": 48.654752246345,
"lon": 36.1284956421887,
"asn": 52131,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Online Technologies Ltd",
"lat": 48.6324775453419,
"lon": 36.0225781892068,
"asn": 42959,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "ANS Group plc",
"lat": 52.7426471593403,
"lon": -1.41116122301857,
"asn": 57156,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Scotnet",
"lat": 56.8801672818241,
"lon": -4.51131687401478,
"asn": 28757,
"customerConeSize": 1
},
{
"country": "BE",
"orgName": "Ingenico Financial Solutions S.A.",
"lat": 50.8467,
"lon": 4.3524901,
"asn": 6716,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "BAN M. ADRIAN PERSOANA FIZICA AUTORIZATA",
"lat": 44.4599,
"lon": 26.1333009,
"asn": 43474,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "SIL-MIRO COM SRL",
"lat": 44.4599,
"lon": 26.1332991,
"asn": 35797,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Dainet Telecom SRL",
"lat": 44.4599,
"lon": 26.133301,
"asn": 35450,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "BEONET",
"lat": 44.833,
"lon": 20.5000002,
"asn": 56452,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "DRUSTVO ZA TELEKOMUNIKACIJE VERAT DOO BEOGRAD (SAVSKI VENAC)",
"lat": 44.7975875606091,
"lon": 20.468709898179,
"asn": 15982,
"customerConeSize": 5
},
{
"country": "RS",
"orgName": "TRUF d.o.o.",
"lat": 44.833,
"lon": 20.4999998,
"asn": 52026,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "EDSI-Tech Sarl",
"lat": 46.5395,
"lon": 6.64618,
"asn": 202194,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "DATAWIRE AG",
"lat": 47.1774040782383,
"lon": 8.50295074029404,
"asn": 48971,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "MediaMath Inc",
"lat": 59.5613875294646,
"lon": -59.6238209239853,
"asn": 30419,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "Cong ty CP sang tao Truyen thong VietNam",
"lat": 15.8967820607828,
"lon": 106.28540147363,
"asn": 56147,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "VNPT Corp",
"lat": 19.9026315877916,
"lon": 105.969769374235,
"asn": 7643,
"customerConeSize": 60
},
{
"country": "VN",
"orgName": "ICSOFT Joint Stock Company",
"lat": 21.017,
"lon": 105.8670002,
"asn": 131403,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "Gtel Mobile Joint Stock Company",
"lat": 14.6133764623417,
"lon": 106.386691207327,
"asn": 45546,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "Minh Tu Telecom Limited Company",
"lat": 10.6755952773286,
"lon": 106.407565610622,
"asn": 55309,
"customerConeSize": 11
},
{
"country": "VN",
"orgName": "ADTEC Media Joint Stock Company",
"lat": 9.8683,
"lon": 106.356,
"asn": 45540,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "United Gameserver GmbH",
"lat": 50.3209006124216,
"lon": 11.1777312984528,
"asn": 13301,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "euNetworks Managed Services GmbH",
"lat": 50.4678971708976,
"lon": 8.58752770215725,
"asn": 13237,
"customerConeSize": 354
},
{
"country": "DE",
"orgName": "HNS UG (haftungsbeschrankt)",
"lat": 51.2578,
"lon": 6.90792,
"asn": 62100,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "MS-NET MICHAL SLUSARCZYK",
"lat": 51.7547,
"lon": 18.0776,
"asn": 199322,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "KERAMNET MAREK KUROWSKI",
"lat": 49.9738349312292,
"lon": 20.0370270775046,
"asn": 198927,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "AirCity Krzysztof Janukowicz",
"lat": 52.416784855586,
"lon": 16.8700058560151,
"asn": 57643,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "FUNDACJA UNIWERSYTETU IM. ADAMA MICKIEWICZA W POZNANIU",
"lat": 52.4107,
"lon": 16.8785,
"asn": 60158,
"customerConeSize": 2
},
{
"country": "PL",
"orgName": "mantykora.net",
"lat": 52.4107,
"lon": 16.8785001,
"asn": 44666,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "CityNet Telekom Ltd.",
"lat": 41.0136,
"lon": 28.9634995,
"asn": 59895,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "Eser Telekom",
"lat": 38.3539206553298,
"lon": 39.0700301277035,
"asn": 9000,
"customerConeSize": 2
},
{
"country": "TR",
"orgName": "LIMON YAZILIM VE BILISIM DANISMANLIK HIZMETLERI LIMITED SIRKETI",
"lat": 41.0136,
"lon": 28.9635006,
"asn": 199419,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "KOC SISTEM BILGI VE ILETISIM HIZMETLERI ANONIM SIRKETI",
"lat": 38.0086,
"lon": 43.0596,
"asn": 9074,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "Teknoser A.S",
"lat": 41.0136,
"lon": 28.9634994,
"asn": 44713,
"customerConeSize": 1
},
{
"country": "TR",
"orgName": "Ergo Isvicre Sigorta A.S.",
"lat": 41.0136,
"lon": 28.9635007,
"asn": 43856,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Doylestown Communications Inc",
"lat": 41.0058574633683,
"lon": -81.7190629751028,
"asn": 23141,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "TEXAS LONE STAR NETWORK, LLC",
"lat": 31.6999203569319,
"lon": -98.6766920589496,
"asn": 46849,
"customerConeSize": 30
},
{
"country": "US",
"orgName": "MBO Video, LLC",
"lat": 35.5896921973412,
"lon": -95.7266092390483,
"asn": 17049,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Northern Hospital District of Surry County",
"lat": 36.4906,
"lon": -80.6289,
"asn": 27394,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "MyPoints.com, Inc.",
"lat": 34.1929,
"lon": -118.823,
"asn": 53540,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Carnegie Telephone Company, Inc.",
"lat": 35.1032105591832,
"lon": -98.6190754783893,
"asn": 63100,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Atos Origin Information Technology GmbH",
"lat": 48.2092,
"lon": 16.3727997,
"asn": 44250,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "MAGNA STEYR Fahrzeugtechnik AG und Co KG",
"lat": 47.7143145143708,
"lon": 14.7865046441414,
"asn": 12766,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Sozialversicherungs-Chipkarten Betriebs- und Errichtungsgesellschaft m.b.H - SVC",
"lat": 48.218,
"lon": 16.3904,
"asn": 39879,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "SALZBURG AG fur Energie, Verkehr und Telekommunikation",
"lat": 47.6302627168545,
"lon": 13.0605883146637,
"asn": 8445,
"customerConeSize": 9
},
{
"country": "US",
"orgName": "QAD, Inc.",
"lat": 35.9320514739218,
"lon": -118.455316366355,
"asn": 6448,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Tele 2 Nederland B.V.",
"lat": 52.283068232793,
"lon": 4.89501418522286,
"asn": 15670,
"customerConeSize": 3
},
{
"country": "NL",
"orgName": "Telindus BV",
"lat": 52.0927,
"lon": 5.1158,
"asn": 47829,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "SSH Sp. z o.o.",
"lat": 50.333866006252,
"lon": 18.9684359644886,
"asn": 42935,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Silesian University of Technology, Computer Centre",
"lat": 50.2795,
"lon": 18.6993001,
"asn": 199279,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Szczecinski Park Naukowo - Technologiczny Sp. z o.o.",
"lat": 53.4494,
"lon": 14.538,
"asn": 60323,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Speedmedia Sp z o.o.",
"lat": 53.5057316215554,
"lon": 14.6725661567977,
"asn": 43803,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "Baloot Communication Network Private Limited Company",
"lat": 38.0815,
"lon": 46.2908,
"asn": 58081,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "ASMANFARAZ SEPAHAN ISDP (PJS)",
"lat": 32.6517,
"lon": 51.6793,
"asn": 44375,
"customerConeSize": 2
},
{
"country": "IR",
"orgName": "Shabakeh Gostar Dorna Cooperative Co.",
"lat": 35.8173301144389,
"lon": 51.0119779472273,
"asn": 48592,
"customerConeSize": 1
},
{
"country": "IQ",
"orgName": "FastLine For Communication And Information Technology Ltd",
"lat": 35.56,
"lon": 45.451,
"asn": 3178,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Sofia Connect EOOD",
"lat": 42.7617586030943,
"lon": 24.6012354632544,
"asn": 47872,
"customerConeSize": 12
},
{
"country": "IQ",
"orgName": "Dar Alsalam Company For Internet services And Information Technology W.L.L.",
"lat": 33.3406,
"lon": 44.4009,
"asn": 58336,
"customerConeSize": 1
},
{
"country": "IQ",
"orgName": "Al Lawn Al Akhdar International Company for Communications and Information Technology Ltd.",
"lat": 33.5996066426744,
"lon": 44.3663655451593,
"asn": 57324,
"customerConeSize": 3
},
{
"country": "UA",
"orgName": "SPD Tsyipchenko Vitaliy Gennadievich",
"lat": 48.4229,
"lon": 35.1378998,
"asn": 56817,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Internet Invest Ltd.",
"lat": 50.4409,
"lon": 30.527199,
"asn": 28907,
"customerConeSize": 7
},
{
"country": "UA",
"orgName": "CHP Poddubny Sergey Valentynovich",
"lat": 48.4229,
"lon": 35.1379003,
"asn": 56932,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "4 SIWI, LLC",
"lat": 37.7597909527867,
"lon": -88.926959807121,
"asn": 36019,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Systems Solutions of Paducah, Inc.",
"lat": 37.0892478701929,
"lon": -88.5060311364134,
"asn": 22002,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "Micro Technology Solutions, Inc.",
"lat": 41.6946,
"lon": -71.1298,
"asn": 33399,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Qnet Telecom",
"lat": -23.5597498373835,
"lon": -52.7706449839806,
"asn": 262688,
"customerConeSize": 14
},
{
"country": "BR",
"orgName": "REBUSSI E AZEVEDO LTDA ME",
"lat": -15.5396,
"lon": -47.3406,
"asn": 61725,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "NetOeste Telecomunicações Ltda",
"lat": -26.9228511165353,
"lon": -52.1788711262377,
"asn": 28621,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Dez Solucoes em Telecomunicacoes LTDA",
"lat": -25.2145234690955,
"lon": -52.0597506245974,
"asn": 263616,
"customerConeSize": 2
},
{
"country": "BR",
"orgName": "SUDONET - INFORMATICA LTDA - ME",
"lat": -24.7252887320182,
"lon": -49.6326556859118,
"asn": 52616,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "DONATO JUNIOR E CIA LTDA",
"lat": -15.9561,
"lon": -54.9632,
"asn": 61794,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "Hong Kong University of Science and Technology",
"lat": 22.276,
"lon": 114.1669995,
"asn": 3363,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "The University of Hong Kong",
"lat": 22.276,
"lon": 114.1670006,
"asn": 4528,
"customerConeSize": 2
},
{
"country": "HK",
"orgName": "City University of Hong Kong",
"lat": 22.276,
"lon": 114.1669994,
"asn": 4158,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "25/F TungWai Commercial Building",
"lat": 22.276,
"lon": 114.1670007,
"asn": 45908,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "i4HK Limited",
"lat": 23.5938249813086,
"lon": 116.143439829931,
"asn": 58779,
"customerConeSize": 7
},
{
"country": "TW",
"orgName": "Diyixian.com (TW) Limited",
"lat": 24.3347262673921,
"lon": 119.509818562915,
"asn": 9244,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Magistrat Graz",
"lat": 47.0621092961253,
"lon": 15.434863900147,
"asn": 29143,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Raiffeisen Rechenzentrum GmbH",
"lat": 47.1172139615874,
"lon": 15.5269533595047,
"asn": 48339,
"customerConeSize": 3
},
{
"country": "AT",
"orgName": "Grazer Wechselseitige Versicherung AG",
"lat": 47.0679,
"lon": 15.4417001,
"asn": 35646,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "BFA-Telecom Ltd",
"lat": 59.939,
"lon": 30.315801,
"asn": 51478,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Senator Telecom Ltd.",
"lat": 59.939,
"lon": 30.315799,
"asn": 48223,
"customerConeSize": 3
},
{
"country": "RU",
"orgName": "\"You Online\" LLC",
"lat": 59.939,
"lon": 30.3158011,
"asn": 198580,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Foundation for Assistance for Internet Technologies and Infrastructure Development",
"lat": 55.7616,
"lon": 37.6411025,
"asn": 199472,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Autonomous Non-commercial Organization \"Regional Network Information Center\"",
"lat": 55.7689335167752,
"lon": 37.5756646031302,
"asn": 25535,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Concorde Ltd.",
"lat": 58.4192147844761,
"lon": 34.5130188514486,
"asn": 35295,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Multex Systems, Inc.",
"lat": 40.742016584115,
"lon": -74.0591962627756,
"asn": 6917,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Applicable Ltd",
"lat": 51.4537,
"lon": -2.59465,
"asn": 21122,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "Produban Servicios Informaticos Generales, S.L.",
"lat": 40.4262,
"lon": -3.6851399,
"asn": 20760,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Abbey National Treasury services PLC",
"lat": 51.5232256523558,
"lon": -0.113061653055198,
"asn": 25006,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Wirelesslogic Ltd",
"lat": 51.5639510093683,
"lon": -0.732671193560493,
"asn": 51320,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Assocloud srl",
"lat": 45.5892,
"lon": 9.20035,
"asn": 59419,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Rational Services Ltd",
"lat": 51.5147,
"lon": -0.0832897,
"asn": 43338,
"customerConeSize": 2
},
{
"country": "IT",
"orgName": "AGACTEL S.p.a.",
"lat": 44.8172544702026,
"lon": 10.2174927787337,
"asn": 33942,
"customerConeSize": 1
},
{
"country": "LT",
"orgName": "Laisvas ir nepriklausomas kanalas, UAB",
"lat": 54.6894,
"lon": 25.2799997,
"asn": 50320,
"customerConeSize": 1
},
{
"country": "LT",
"orgName": "Sintagma, UAB",
"lat": 54.6894,
"lon": 25.2800004,
"asn": 42181,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Media Systems Anna Frankiewicz",
"lat": 50.3479,
"lon": 19.3283,
"asn": 43290,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "WEBTEAM s.c. Igor Kwiecien, Adrian Pysz",
"lat": 50.346856909277,
"lon": 19.288149113518,
"asn": 57524,
"customerConeSize": 2
},
{
"country": "PL",
"orgName": "Dabrowskie Sieci Internetowe - Stowarzyszenie",
"lat": 50.3565750721105,
"lon": 19.2503733848388,
"asn": 49753,
"customerConeSize": 1
},
{
"country": "MD",
"orgName": "Scortel SRL",
"lat": 47.0262,
"lon": 28.8412003,
"asn": 61208,
"customerConeSize": 1
},
{
"country": "MD",
"orgName": "Netinfo SRL",
"lat": 47.0262,
"lon": 28.8411997,
"asn": 49691,
"customerConeSize": 1
},
{
"country": "MD",
"orgName": "I.C.S \"BOOM-INFO\" S.R.L.",
"lat": 46.9298982769616,
"lon": 28.1623079935908,
"asn": 34645,
"customerConeSize": 2
},
{
"country": "IT",
"orgName": "Italiaonline S.r.l.",
"lat": 45.272945945137,
"lon": 9.33406335811931,
"asn": 8660,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Telecom Italia S.p.A.",
"lat": 42.6979109166529,
"lon": 11.7019253718033,
"asn": 20580,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Web Farm of Computer Design in a multi-homed infrastructure",
"lat": 45.4727,
"lon": 9.1871601,
"asn": 20658,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Logos S.P.A.",
"lat": 44.6797500000981,
"lon": 10.9272498470657,
"asn": 15923,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "DIGIBYTE SRL",
"lat": 44.5299,
"lon": 11.3623,
"asn": 196966,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "E-Mind Srl",
"lat": 44.3585859989172,
"lon": 11.7306598981515,
"asn": 49535,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Utility Line Italia S.r.l.",
"lat": 45.6797669697652,
"lon": 9.27014743034259,
"asn": 9026,
"customerConeSize": 3
},
{
"country": "IT",
"orgName": "LV3 Soc. Coop.",
"lat": 46.0649,
"lon": 13.2307,
"asn": 59755,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "Bagian Bina Program - Pemerintah Kota Surabaya",
"lat": -7.233,
"lon": 112.7499999,
"asn": 45770,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "Network Access Provider and Internet Service Provider",
"lat": -5.64539786538106,
"lon": 107.357559573063,
"asn": 4800,
"customerConeSize": 38
},
{
"country": "ID",
"orgName": "PT Fajar Techno System",
"lat": -4.11000472192238,
"lon": 119.594716216129,
"asn": 56245,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT. Inet Global Indo",
"lat": -6.31127375575611,
"lon": 107.87162312578,
"asn": 24532,
"customerConeSize": 15
},
{
"country": "ID",
"orgName": "PT. TUJUH DELAPAN SEMBILAN NET",
"lat": -1.25,
"lon": 116.833,
"asn": 59149,
"customerConeSize": 1
},
{
"country": "DK",
"orgName": "FTF",
"lat": 55.6763,
"lon": 12.5693,
"asn": 61253,
"customerConeSize": 1
},
{
"country": "DK",
"orgName": "BullGuard ApS",
"lat": 55.6763,
"lon": 12.5693001,
"asn": 41474,
"customerConeSize": 1
},
{
"country": "DK",
"orgName": "Atea A/S",
"lat": 55.9228203617232,
"lon": 11.3973600112753,
"asn": 51251,
"customerConeSize": 1
},
{
"country": "DK",
"orgName": "Fujitsu Services A/S",
"lat": 55.7271881787711,
"lon": 12.3804889653041,
"asn": 3272,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Showingtime.com, Inc.",
"lat": 41.7377779547127,
"lon": -90.5964501448403,
"asn": 14739,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "PP 3FON NETWORKS",
"lat": 50.4409,
"lon": 30.5272011,
"asn": 49995,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "PJSC \"Starokievsky bank\"",
"lat": 50.4409,
"lon": 30.5271989,
"asn": 12837,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "LLC \"Supportio\"",
"lat": 50.4409,
"lon": 30.5272012,
"asn": 57995,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "TOV Digital Screens",
"lat": 50.4409,
"lon": 30.5271988,
"asn": 3202,
"customerConeSize": 1
},
{
"country": "CR",
"orgName": "Critical Colocation, S.A.",
"lat": 9.9249,
"lon": -84.0781,
"asn": 52342,
"customerConeSize": 1
},
{
"country": "CR",
"orgName": "Corporacion Hostarica S.A.",
"lat": 9.9249,
"lon": -84.0780999,
"asn": 16973,
"customerConeSize": 1
},
{
"country": "PE",
"orgName": "GLG PERU SAC",
"lat": -16.3277,
"lon": -71.5959,
"asn": 263189,
"customerConeSize": 1
},
{
"country": "AR",
"orgName": "Transamerican Telecomunication S.A.",
"lat": -24.4712713906867,
"lon": -62.7291742217847,
"asn": 262195,
"customerConeSize": 97
},
{
"country": "PE",
"orgName": "COLINANET SRL.",
"lat": -12.0436,
"lon": -77.0212,
"asn": 262168,
"customerConeSize": 1
},
{
"country": "NI",
"orgName": "ALFANUMERIC",
"lat": 12.1364,
"lon": -86.2514,
"asn": 19447,
"customerConeSize": 1
},
{
"country": "NI",
"orgName": "IBW Communications",
"lat": 12.1281204684734,
"lon": -86.2471724550582,
"asn": 25607,
"customerConeSize": 2
},
{
"country": "NI",
"orgName": "Banco ProCredit Nicaragua",
"lat": 12.1364,
"lon": -86.2513999,
"asn": 27811,
"customerConeSize": 1
},
{
"country": "ZA",
"orgName": "Vodacom",
"lat": -29.281072382355,
"lon": 25.8081296183154,
"asn": 29975,
"customerConeSize": 1
},
{
"country": "GH",
"orgName": "VODAFONE GHANA AS INTERNATIONAL TRANSIT",
"lat": 5.75779176847697,
"lon": -0.416853305882819,
"asn": 29614,
"customerConeSize": 17
},
{
"country": "ZA",
"orgName": "Ariviakom (Pty) Ltd",
"lat": -26.205,
"lon": 28.0497,
"asn": 37121,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "OpenDNS, LLC",
"lat": 45.9521045967745,
"lon": -116.787370497555,
"asn": 36692,
"customerConeSize": 1
},
{
"country": "ZA",
"orgName": "Netwide Internet Services cc",
"lat": -33.7191358904787,
"lon": 19.047143613948,
"asn": 37225,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "NKN Core Network",
"lat": 23.8163509672763,
"lon": 82.9535528619615,
"asn": 55847,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "NKN Core Network",
"lat": 24.4181505203236,
"lon": 78.0626127174401,
"asn": 55824,
"customerConeSize": 26
},
{
"country": "IN",
"orgName": "National Informatics Centre",
"lat": 28.0513512181472,
"lon": 77.5023436931545,
"asn": 4758,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Hetzner Online AG",
"lat": 49.1241516713176,
"lon": 10.8247827713391,
"asn": 24940,
"customerConeSize": 36
},
{
"country": "DE",
"orgName": "Profihost AG",
"lat": 52.0903926645728,
"lon": 9.92189184290462,
"asn": 34432,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Impetus Infotech India Pvt Ltd",
"lat": 26.508055564436,
"lon": 79.5103695396017,
"asn": 132927,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Secure IP",
"lat": 34.0534,
"lon": -118.265,
"asn": 14105,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "WifiCity",
"lat": 14.6209250178555,
"lon": 121.003321860207,
"asn": 18187,
"customerConeSize": 20
},
{
"country": "US",
"orgName": "Internet Exchange Technology, Inc.",
"lat": 34.1423,
"lon": -118.126,
"asn": 11728,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Treasure Valley Community College",
"lat": 44.0754,
"lon": -116.902,
"asn": 30543,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Synergy Data Center & Services",
"lat": 44.7797,
"lon": -117.834,
"asn": 53607,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "INTERNET EFFECTS",
"lat": 37.0847,
"lon": -113.586,
"asn": 36815,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Texaco Group, Inc.",
"lat": 38.9815264531268,
"lon": -117.536855163112,
"asn": 7862,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "General Motors Thailand, Rayong",
"lat": 1.30612,
"lon": 103.8330006,
"asn": 132380,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "KSC Commercial Internet Co. Ltd.",
"lat": 13.7249,
"lon": 100.515,
"asn": 45471,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "One to One Contacts Public Company Limited.",
"lat": 13.7818570215052,
"lon": 100.558987674039,
"asn": 23925,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "Proimage Engineering and Communication Co.,Ltd.",
"lat": 13.7895194794708,
"lon": 100.485072074762,
"asn": 23884,
"customerConeSize": 3
},
{
"country": "TH",
"orgName": "One to One Contacts Public Company Limited.",
"lat": 13.733,
"lon": 100.5000003,
"asn": 17901,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "Milcom Co., Ltd. Internet Service Provider Bangkok",
"lat": 13.733,
"lon": 100.4999997,
"asn": 23927,
"customerConeSize": 1
},
{
"country": "BE",
"orgName": "Stone Internet Services bvba",
"lat": 50.9891315048647,
"lon": 3.98881385975308,
"asn": 39234,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "World-ICT B.V.",
"lat": 51.8759,
"lon": 4.62001,
"asn": 59560,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Schiphol Telematics B.V.",
"lat": 52.3705322499905,
"lon": 4.89203912382783,
"asn": 42517,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "NotuBiz Nederland B.V.",
"lat": 51.9201,
"lon": 4.48146,
"asn": 52144,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Tribion B.V.",
"lat": 51.7135107918558,
"lon": 4.88689105262109,
"asn": 52102,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Shaw Communications Inc.",
"lat": 50.7207638870858,
"lon": -115.155459310946,
"asn": 6327,
"customerConeSize": 240
},
{
"country": "BE",
"orgName": "Lambrechts Data Services VOF",
"lat": 33.545660658799,
"lon": -116.605048400008,
"asn": 62383,
"customerConeSize": 1
},
{
"country": "BE",
"orgName": "Boxed IT Ltd.",
"lat": 50.8627,
"lon": 4.62923,
"asn": 50156,
"customerConeSize": 3
},
{
"country": "BE",
"orgName": "FreeBIX VZW / ASBL",
"lat": 50.8792,
"lon": 4.50422,
"asn": 29533,
"customerConeSize": 1
},
{
"country": "BE",
"orgName": "Ithagi BVBA",
"lat": 51.1411,
"lon": 5.59762,
"asn": 41778,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "WorldLinx Telecommunications, Inc.",
"lat": 46.600059639013,
"lon": -79.3533175266346,
"asn": 3848,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Electrostroy Ltd.",
"lat": 41.5394941726883,
"lon": 23.0612673876977,
"asn": 197214,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Pretecs New Media Inc.",
"lat": 49.0575931119984,
"lon": -116.381428580136,
"asn": 39962,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Beyond.pl sp. z o.o.",
"lat": 52.4107,
"lon": 16.8784999,
"asn": 60217,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT Citra Media Solusindo",
"lat": -7.983,
"lon": 112.7500002,
"asn": 58391,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT. Medianusa Permana",
"lat": -4.31500512994867,
"lon": 106.064760604632,
"asn": 131746,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT Trimegah Securities Tbk",
"lat": -6.20745018367639,
"lon": 106.814000864189,
"asn": 46048,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT.KALBE FARMA Tbk",
"lat": -6.133,
"lon": 106.7500002,
"asn": 131721,
"customerConeSize": 1
},
{
"country": "NO",
"orgName": "Ole Andreas Hermansen",
"lat": 59.9268,
"lon": 10.7342999,
"asn": 51886,
"customerConeSize": 1
},
{
"country": "NO",
"orgName": "IT PAYS AS",
"lat": 59.9268,
"lon": 10.7343002,
"asn": 50562,
"customerConeSize": 2
},
{
"country": "NO",
"orgName": "DATEK INSTALLASJON AS",
"lat": 59.9268,
"lon": 10.7342998,
"asn": 202008,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "nym networks",
"lat": 55.7589,
"lon": 13.2793,
"asn": 34936,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "Loopback HB",
"lat": 56.0465,
"lon": 12.6945,
"asn": 44297,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "Axis Communications AB",
"lat": 55.6695572024847,
"lon": 13.2371040164032,
"asn": 39731,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "KurskSSU",
"lat": 51.7517,
"lon": 36.2967001,
"asn": 20772,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OOO SALON 2116 Electronic Post Office",
"lat": 51.7517,
"lon": 36.2966999,
"asn": 34033,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Kompanon LLC.",
"lat": 51.7517,
"lon": 36.2967002,
"asn": 57233,
"customerConeSize": 1
},
{
"country": "BY",
"orgName": "Flynet Ltd",
"lat": 53.9008,
"lon": 27.5587,
"asn": 49711,
"customerConeSize": 1
},
{
"country": "BY",
"orgName": "Business Network JV",
"lat": 53.9008,
"lon": 27.5587001,
"asn": 31345,
"customerConeSize": 1
},
{
"country": "BY",
"orgName": "Belorussian-Russian Belgazprombank Joint Stock",
"lat": 53.9008,
"lon": 27.5586999,
"asn": 56742,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Juniper Networks International B.V.",
"lat": 52.3387452801101,
"lon": 4.77902632942533,
"asn": 24652,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Open Text Corporation",
"lat": 42.88599376454,
"lon": -80.8060799952987,
"asn": 26704,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "BAIN AND COMPANY INC UNITED KINGDOM",
"lat": 51.4629,
"lon": -0.28422,
"asn": 56640,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Manfred Casper trading as EURO-SAT",
"lat": 49.3258166560793,
"lon": 8.34597756504365,
"asn": 61244,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Schlueter-Systems KG",
"lat": 51.3724,
"lon": 7.71817,
"asn": 43455,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "NORDWEST Handel AG",
"lat": 51.3697,
"lon": 7.4744,
"asn": 57443,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "LLC \"IT-GROUP\"",
"lat": 55.7616,
"lon": 37.6410975,
"asn": 56342,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "ZAO Prestige-Internet",
"lat": 56.8723187842181,
"lon": 62.0873699540202,
"asn": 12772,
"customerConeSize": 4
},
{
"country": "RU",
"orgName": "JSC \"TGC-10\"",
"lat": 58.1087,
"lon": 69.1559,
"asn": 49845,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "RackCorp",
"lat": -31.3070632672623,
"lon": 140.266483299844,
"asn": 56038,
"customerConeSize": 3
},
{
"country": "AU",
"orgName": "CMS INFORMATION TECHNOLOGY PTY LIMITED",
"lat": -33.9204,
"lon": 151.203,
"asn": 131182,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Gold Fields Australia Pty Ltd",
"lat": -31.9554,
"lon": 115.859,
"asn": 133212,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "139 Wacol Station Road",
"lat": -27.540101680646,
"lon": 152.983668479693,
"asn": 56072,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "EFTel Pty Ltd",
"lat": -33.5687297572097,
"lon": 150.871144480337,
"asn": 9482,
"customerConeSize": 23
},
{
"country": "AU",
"orgName": "EFTel Pty Ltd",
"lat": -34.6241640206399,
"lon": 145.120136310173,
"asn": 10113,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "Bob Evans Farms, Inc.",
"lat": 39.9570499908256,
"lon": -82.9114925663841,
"asn": 19857,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "2checkout.com",
"lat": 40.0139088146891,
"lon": -82.9715785034054,
"asn": 32734,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "OPERS",
"lat": 39.9379,
"lon": -82.8871,
"asn": 26830,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "BLUEGRASS REGIONAL MENTAL HEALTH-MENTAL RETARDATION BOARD, INC.",
"lat": 38.0023841264235,
"lon": -84.4810247988719,
"asn": 32057,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Symbiotix, Inc.",
"lat": 38.0154,
"lon": -84.5938,
"asn": 14914,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CBOSS INC",
"lat": 41.0417,
"lon": -80.6856,
"asn": 14532,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Omnicity, Inc.",
"lat": 39.7764037093108,
"lon": -84.9052906361149,
"asn": 40022,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "LienViet Joint Stock Commercial Bank",
"lat": 10.75,
"lon": 106.667,
"asn": 55311,
"customerConeSize": 1
},
{
"country": "MO",
"orgName": "SmarTone Mobile Communications (Macau) Limited",
"lat": 22.203,
"lon": 113.545,
"asn": 45918,
"customerConeSize": 1
},
{
"country": "MO",
"orgName": "University of Macau",
"lat": 22.203,
"lon": 113.5450001,
"asn": 7582,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "The University of Tokyo Interfaculty Initiative in Information Studies",
"lat": 35.4134,
"lon": 136.76,
"asn": 45688,
"customerConeSize": 1
},
{
"country": "CN",
"orgName": "Computer Network Information Center",
"lat": 30.9106772255399,
"lon": 122.743191615307,
"asn": 7497,
"customerConeSize": 15
},
{
"country": "US",
"orgName": "Cisco Systems, Inc.",
"lat": 38.854,
"lon": -77.2591,
"asn": 3943,
"customerConeSize": 2
},
{
"country": "JP",
"orgName": "JSPS 163rd Committee on Internet Technology",
"lat": 35.4134,
"lon": 136.7600001,
"asn": 2523,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "Kurashiki Cable TV",
"lat": 34.6255620767316,
"lon": 133.84626403656,
"asn": 9622,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "Tamashima TV Inc.",
"lat": 34.6346407705803,
"lon": 133.849247555284,
"asn": 23775,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "Ibara Broadcasting Company",
"lat": 34.5872068930388,
"lon": 133.470070854076,
"asn": 23618,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Instinet",
"lat": 40.9394917679149,
"lon": -73.6926411414341,
"asn": 3762,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Chi-X Canada ATS Ltd.",
"lat": 43.6483,
"lon": -79.3819,
"asn": 32791,
"customerConeSize": 2
},
{
"country": null,
"orgName": null,
"lat": 40.747,
"lon": -74.0053,
"asn": 47049,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Long View Systems Corporation (USA)",
"lat": 39.7494,
"lon": -104.994,
"asn": 55117,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Loyalty Management Group, Inc.",
"lat": 43.6563129929851,
"lon": -79.3860988063117,
"asn": 26567,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Descartes Systems Group",
"lat": 43.4957504607322,
"lon": -80.5472867860684,
"asn": 23034,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Alliance Pipeline Ltd.",
"lat": 51.053,
"lon": -114.161,
"asn": 31934,
"customerConeSize": 1
},
{
"country": "AF",
"orgName": "Multinet Afghanistan AS in Mazar-E-Sharif",
"lat": 34.376,
"lon": 62.182,
"asn": 45784,
"customerConeSize": 1
},
{
"country": "AF",
"orgName": "Etisalat Afghan",
"lat": 34.4922900125718,
"lon": 69.1399589762753,
"asn": 131284,
"customerConeSize": 5
},
{
"country": "AF",
"orgName": "NetZone Limited",
"lat": 34.5169,
"lon": 69.147,
"asn": 133141,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "FIXITY LLC",
"lat": 42.8909020713779,
"lon": 24.8431877742601,
"asn": 60092,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "SimpleLink LLC",
"lat": 49.412480055368,
"lon": -69.2462625503814,
"asn": 22400,
"customerConeSize": 2
},
{
"country": "DE",
"orgName": "Christian Huber",
"lat": 50.2228553139651,
"lon": 7.48400530252996,
"asn": 62387,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "PPG Industries, Inc.",
"lat": 40.4128098032637,
"lon": -80.1820178609481,
"asn": 17011,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Optus Customer Network",
"lat": -33.3723191594297,
"lon": 151.413667989953,
"asn": 10221,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Darwin City Council",
"lat": -12.4606941533696,
"lon": 130.842164117663,
"asn": 55870,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "TATA COMMUNICATIONS (AMERICA) INC",
"lat": -2.07965007289935,
"lon": 110.252415418347,
"asn": 6421,
"customerConeSize": 17
},
{
"country": "NZ",
"orgName": "Fairfax NZ SDC",
"lat": -33.5978,
"lon": 150.753,
"asn": 133599,
"customerConeSize": 1
},
{
"country": "NZ",
"orgName": "Layer2.co.nz",
"lat": -36.4743844402412,
"lon": 174.738779509312,
"asn": 45177,
"customerConeSize": 69
},
{
"country": "NZ",
"orgName": "96-98 Anzac Avenue",
"lat": -36.8482000669591,
"lon": 174.771999932067,
"asn": 131168,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Dun & Bradstreet (Australia) Pty Ltd",
"lat": -37.8375,
"lon": 144.974,
"asn": 45803,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Symantec Inc",
"lat": -33.8671,
"lon": 151.2070001,
"asn": 17812,
"customerConeSize": 2
},
{
"country": "AU",
"orgName": "Epworth Hospital",
"lat": -37.8113074919611,
"lon": 144.989007377812,
"asn": 24480,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Powerlink Queensland",
"lat": -27.3695,
"lon": 153.062,
"asn": 24316,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Optus Customer Network",
"lat": -33.7968,
"lon": 151.124,
"asn": 9243,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "SonicNet Inc.",
"lat": 45.8592757165699,
"lon": -89.7585920047183,
"asn": 22436,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "BBN Technologies Corp. - Global Environment for Network Innovations (GENI)",
"lat": 33.7697,
"lon": -84.3772,
"asn": 47065,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "DoD Network Information Center",
"lat": 32.6222278107795,
"lon": -109.014532372023,
"asn": 334,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Headquarters, USAISC",
"lat": 41.8456619085082,
"lon": -100.872667763116,
"asn": 1502,
"customerConeSize": 1
},
{
"country": "EU",
"orgName": "UK Defence Research Agency",
"lat": 51.1451095085985,
"lon": -1.72785854764365,
"asn": 7,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "MATI",
"lat": 33.5410017554552,
"lon": -105.86175695736,
"asn": 40198,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "TDS TELECOM",
"lat": 33.0762207141365,
"lon": -106.940773837699,
"asn": 20357,
"customerConeSize": 2
},
{
"country": "US",
"orgName": "Comnet Marketing Group, Inc.",
"lat": 42.3354,
"lon": -122.837,
"asn": 393328,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "Petiak System",
"lat": 35.6896,
"lon": 51.4139996,
"asn": 51469,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "Aryan Satellite Co. (Private Joint Stock)",
"lat": 35.6896,
"lon": 51.4140005,
"asn": 56632,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "Information Technology ArmaNet",
"lat": 35.6896,
"lon": 51.4139995,
"asn": 50259,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "Erfan Net Fars Internet and Support Services Company (Private Joint Stock)",
"lat": 29.6014,
"lon": 52.5316,
"asn": 59481,
"customerConeSize": 3
},
{
"country": "IR",
"orgName": "Sky Dragon Company With Limited Liability",
"lat": 29.6014,
"lon": 52.5316001,
"asn": 58249,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Sitrox AG",
"lat": 47.369,
"lon": 8.5380302,
"asn": 48027,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Trixit Holding B.V.",
"lat": 52.319813539873,
"lon": 5.06222135704275,
"asn": 34968,
"customerConeSize": 5
},
{
"country": "CH",
"orgName": "cyon GmbH",
"lat": 47.5596,
"lon": 7.5806099,
"asn": 47302,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Orange Personal Communications Services",
"lat": 51.951536278424,
"lon": -1.34547463431578,
"asn": 12576,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "u-blox AG",
"lat": 47.2944,
"lon": 8.56345,
"asn": 41590,
"customerConeSize": 1
},
{
"country": "HR",
"orgName": "NTH Media d.o.o.",
"lat": 47.3132917648547,
"lon": 8.04705701878248,
"asn": 51778,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "ith Kommunikationstechnik GmbH",
"lat": 48.7586409141529,
"lon": 12.989901384289,
"asn": 15933,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "NIU SOLUTIONS Limited",
"lat": 51.6604926121813,
"lon": -0.45427248734287,
"asn": 39633,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Crosspoint Colocation Limited",
"lat": 51.2648237839018,
"lon": -0.535378492743114,
"asn": 42040,
"customerConeSize": 2
},
{
"country": "GB",
"orgName": "CI-Net Limited",
"lat": 51.749849956447,
"lon": -0.458383654098836,
"asn": 8844,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Solstice Technology Ltd",
"lat": 51.5147,
"lon": -0.0832903,
"asn": 48686,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "TxRx Communications Ltd",
"lat": 51.2561803973004,
"lon": -1.09786104080349,
"asn": 198722,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Appstal Limited",
"lat": 51.5147,
"lon": -0.0832896,
"asn": 50419,
"customerConeSize": 1
},
{
"country": "SI",
"orgName": "eServer s.r.o.",
"lat": 48.3132,
"lon": 18.0892,
"asn": 61424,
"customerConeSize": 1
},
{
"country": "SK",
"orgName": "Trestel SK, a.s.",
"lat": 48.0383592167589,
"lon": 17.1960873546224,
"asn": 38949,
"customerConeSize": 15
},
{
"country": "SK",
"orgName": "IMAFEX, spol. s r.o.",
"lat": 49.0147425218778,
"lon": 19.4973366159631,
"asn": 58328,
"customerConeSize": 1
},
{
"country": "SK",
"orgName": "booTIS s.r.o.",
"lat": 49.2095,
"lon": 18.7559,
"asn": 202224,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "GTT a.s.",
"lat": 49.8905519565789,
"lon": 15.0644227160721,
"asn": 51731,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "Voysat D.O.O",
"lat": 45.8025,
"lon": 20.1258,
"asn": 61439,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "RADIJUS VEKTOR DOO",
"lat": 44.7982517952751,
"lon": 20.4556152879654,
"asn": 41937,
"customerConeSize": 3
},
{
"country": "RU",
"orgName": "JKP Informatika",
"lat": 45.2713137858996,
"lon": 19.8434216903297,
"asn": 48580,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "CITYNET MARCIN SOBALA - PIOTR MISIUDA",
"lat": 50.0418757198728,
"lon": 22.0144751981244,
"asn": 197572,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Braslink Network Informatica Ltda",
"lat": -23.5337,
"lon": -46.6288998,
"asn": 263301,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "CORPORATIVA TELECOMUNICACOES EIRELI ME",
"lat": -21.7631555594319,
"lon": -45.6118228245551,
"asn": 263432,
"customerConeSize": 5
},
{
"country": "BR",
"orgName": "FMBRASTEL - Brasil Telecomunicacoes Ltda",
"lat": -23.5337,
"lon": -46.6289002,
"asn": 262701,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "COPYNET SERVIÇOS DE PROVEDORES LTDA",
"lat": -3.98681790282344,
"lon": -40.7914541097921,
"asn": 61837,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "DELTA CONNECT",
"lat": -2.90254,
"lon": -41.7824,
"asn": 61876,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "IR TECNOLOGIA LTDA ME",
"lat": -5.35212,
"lon": -49.1376,
"asn": 264496,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "TELLFREE BRASIL TELEFONIA IP S.A.",
"lat": -22.7946897224235,
"lon": -46.0186134568598,
"asn": 28278,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "TORPEDOLINK TELECOM",
"lat": -6.76885,
"lon": -37.7957,
"asn": 263302,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Link Net Informática",
"lat": -12.7925881605753,
"lon": -43.7609437686627,
"asn": 263259,
"customerConeSize": 2
},
{
"country": "BR",
"orgName": "CPnet (Seu Provedor Banda Larga)",
"lat": -7.8915,
"lon": -37.1169,
"asn": 263564,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "BRD-Groupe Societe Generale SA",
"lat": 44.4646,
"lon": 26.0691,
"asn": 42790,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Internet Systems Consortium, Inc.",
"lat": 33.6142,
"lon": -84.4971,
"asn": 33075,
"customerConeSize": 1
},
{
"country": "PE",
"orgName": "Red Cientifica Peruana",
"lat": -12.0436,
"lon": -77.0211999,
"asn": 3132,
"customerConeSize": 5
},
{
"country": "CL",
"orgName": "NIC Chile",
"lat": -33.4254,
"lon": -70.5664999,
"asn": 52234,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Level Network SRL",
"lat": 44.4599,
"lon": 26.133299,
"asn": 50884,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Bestnet Service SRL",
"lat": 44.4935808306438,
"lon": 25.9318947619937,
"asn": 28684,
"customerConeSize": 4
},
{
"country": "RO",
"orgName": "AVA TELECOM INTERNATIONAL SRL",
"lat": 44.4599,
"lon": 26.1333011,
"asn": 48563,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "Informatika a.d.",
"lat": 44.8325860598182,
"lon": 20.4912708675889,
"asn": 8534,
"customerConeSize": 3
},
{
"country": "GB",
"orgName": "CS Network Solutions Limited",
"lat": 51.5147,
"lon": -0.0832904,
"asn": 201683,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "REPROMON TV SRL",
"lat": 47.0056,
"lon": 28.8575001,
"asn": 59996,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Larom TV SRL",
"lat": 47.0262,
"lon": 28.8412004,
"asn": 57916,
"customerConeSize": 1
},
{
"country": "MD",
"orgName": "VIDEOMAG SRL",
"lat": 46.0708677490416,
"lon": 28.2893168164624,
"asn": 62281,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Ana Paula Hubner ME",
"lat": -25.4085763563505,
"lon": -49.2873809128782,
"asn": 263659,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Tche Turbo Provedor de Internet LTDA",
"lat": -27.4534591460141,
"lon": -53.5632140293444,
"asn": 53169,
"customerConeSize": 11
},
{
"country": "BR",
"orgName": "Millenium Com de Mat e Sist de Inf. Ltda",
"lat": -26.4891224091966,
"lon": -50.5391793529321,
"asn": 52952,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "PONTIFICIA UNIVERSID CATOLICA DO RIO GRANDE DO SUL",
"lat": -31.3135560569604,
"lon": -51.7905504846359,
"asn": 28623,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Fund. Vale do Taquari de Educ. e Desenvolv. Social",
"lat": -29.5801179760259,
"lon": -51.7879812414896,
"asn": 262441,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Associação Antônio Vieira - Unisinos",
"lat": -23.9041937811515,
"lon": -46.8813537870368,
"asn": 19611,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Ti5 Tecnologia e Inovacao",
"lat": -15.7913067447911,
"lon": -47.9726085673041,
"asn": 52655,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "A & G Serviços em TI",
"lat": -20.6749740669598,
"lon": -47.0934474506797,
"asn": 52858,
"customerConeSize": 2
},
{
"country": "BR",
"orgName": "INFOR DF TEL E INFORMATICA LTDA",
"lat": -22.5744210075822,
"lon": -46.8114757179301,
"asn": 53024,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Coelho Tecnologia",
"lat": -6.49737,
"lon": -49.8784,
"asn": 264525,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "k s ferreira-ME",
"lat": -7.19587,
"lon": -48.2126,
"asn": 264465,
"customerConeSize": 2
},
{
"country": "BR",
"orgName": "TRANS KOTHE TRANSPORTES RODOVIARIOS S/A",
"lat": -7.19587,
"lon": -48.2125999,
"asn": 61804,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "MONISAT SISTEMA DE INFORMAÇÃO E MONITORAMENTO",
"lat": -23.5337,
"lon": -46.6288997,
"asn": 61892,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "M.A. Informática Ltda.",
"lat": -24.1086815226524,
"lon": -50.9047315688835,
"asn": 262841,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Adriano Telecomunicacoes Ltda Me",
"lat": -18.1399952155158,
"lon": -49.9350082942332,
"asn": 52724,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Edilso Fuchter & Cia Ltda",
"lat": -23.5337,
"lon": -46.6289003,
"asn": 263419,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "WIIP TELECOM SERVIÇOS DE INTERNET LTDA",
"lat": -25.4729191681095,
"lon": -52.3879631084398,
"asn": 262434,
"customerConeSize": 3
},
{
"country": "BR",
"orgName": "WI - Provedor de Telecomunicações Ltda.",
"lat": -23.8851222372074,
"lon": -52.2539697788265,
"asn": 28620,
"customerConeSize": 2
},
{
"country": "BR",
"orgName": "Nha Chica Provedor de Internet Resendenet Ltda",
"lat": -21.1234890396312,
"lon": -46.4976777257953,
"asn": 53114,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "MAX TELECOM PROVEDOR DE ACESSO A INTERNET LTDA",
"lat": -21.5517,
"lon": -45.4386,
"asn": 52787,
"customerConeSize": 3
},
{
"country": "BR",
"orgName": "Cangere Online Provedor de Internet Ltda.",
"lat": -22.7236127731847,
"lon": -46.5097429923009,
"asn": 53216,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "CEDNET PROVEDOR DE INTERNET LTDA.",
"lat": -23.0391215252307,
"lon": -49.7271404099449,
"asn": 263347,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "ATALINK TELECOMUNICACOES",
"lat": -21.018989291349,
"lon": -51.1604150097363,
"asn": 263314,
"customerConeSize": 5
},
{
"country": "BR",
"orgName": "Perola Provedores de Internet Ltda",
"lat": -22.6426533803139,
"lon": -48.2069254695729,
"asn": 52563,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "REDE GLOBAL TECNOLOGIA LTDA ME",
"lat": -20.8448711605658,
"lon": -48.3120842240229,
"asn": 263535,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "MT.NET - Serviços de Internet Ltda-ME",
"lat": -20.7877605518161,
"lon": -49.2382949961832,
"asn": 262461,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "AMARO & AMARO COMUNICAO LTDA - ME",
"lat": -20.7276,
"lon": -48.0539,
"asn": 263266,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "POLOTEL TELECOM LOCAÇÃO E DES. DE. SITES LTDA",
"lat": -24.0001,
"lon": -46.2672,
"asn": 264473,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "SPINT PROVEDOR DE INTERNET LTDA",
"lat": -23.8102,
"lon": -47.7134,
"asn": 61823,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "KYONGGIDO WOMEN CENTER",
"lat": 37.0793960470526,
"lon": 126.885299404672,
"asn": 9773,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "ANYSAT",
"lat": 37.404063470765,
"lon": 126.962943385561,
"asn": 10051,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "Korea Transportation Safety Authority",
"lat": 37.5632,
"lon": 126.9929997,
"asn": 45999,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "MND Welfare Agency",
"lat": 37.5632,
"lon": 126.9930004,
"asn": 45986,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "Korea Information Security Agency",
"lat": 37.5632,
"lon": 126.9929996,
"asn": 55603,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "The Office of Waterworks Seoul Metropolitan Go",
"lat": 37.5517502696829,
"lon": 126.98499877243,
"asn": 38432,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "KOREA CUSTOMS SERVICE",
"lat": 37.4355876423799,
"lon": 126.883351532667,
"asn": 10165,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "Ministry of Information and Communication",
"lat": 37.490438796804,
"lon": 127.506892801734,
"asn": 10043,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "WI-MAX INTERNET LTDA",
"lat": -20.4412,
"lon": -44.7584,
"asn": 52673,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "LSOFT - INFORMATICA E INTERNET LTDA - ME",
"lat": -19.8885976962052,
"lon": -44.9179281794125,
"asn": 263401,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "DEDICA BRASIL INTERNET LTDA",
"lat": -19.7834,
"lon": -45.6814,
"asn": 263299,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "WKVE Asses. em Serviços de Inform. e Telecom. Ltda",
"lat": -17.4765818880192,
"lon": -43.8173489778346,
"asn": 28360,
"customerConeSize": 14
},
{
"country": "RU",
"orgName": "Managing company \"Realty of Petersburg Ltd\"",
"lat": 59.9326,
"lon": 30.323,
"asn": 34843,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "BiteCom LTD.",
"lat": 59.939,
"lon": 30.3157989,
"asn": 60212,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "JSC \"Grant-Telecom\"",
"lat": 59.939,
"lon": 30.3158012,
"asn": 196754,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "World of Communications Ltd",
"lat": 50.4409,
"lon": 30.5272013,
"asn": 25174,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Trans Traffic Ltd.",
"lat": 50.4409,
"lon": 30.5271987,
"asn": 35524,
"customerConeSize": 2
},
{
"country": "UA",
"orgName": "Softjourn-Ukraine Ltd.",
"lat": 49.8277,
"lon": 24.0087001,
"asn": 198238,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Elenkom LLC",
"lat": 49.5820440326842,
"lon": 31.704955925495,
"asn": 24685,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Zhytlocomfort LLC",
"lat": 50.4409,
"lon": 30.5272014,
"asn": 44526,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Private Enterprise A2",
"lat": 50.4409,
"lon": 30.5271986,
"asn": 29693,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "JP-Telekom Sp z o.o.",
"lat": 54.184313784794,
"lon": 18.6619617919006,
"asn": 51976,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "LIMES s.c.",
"lat": 54.4001641000068,
"lon": 18.5527972250863,
"asn": 29649,
"customerConeSize": 13
},
{
"country": "PL",
"orgName": "Metalzbyt Sp. z o.o",
"lat": 54.4379,
"lon": 18.5704,
"asn": 197396,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "URZAD MARSZALKOWSKI WOJEWODZTWA WIELKOPOLSKIEGO",
"lat": 52.4107,
"lon": 16.8785002,
"asn": 196887,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Urzad Miejski w Koninie",
"lat": 52.2289,
"lon": 18.2486,
"asn": 41385,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Servcom Sp. z o.o.",
"lat": 52.648162605539,
"lon": 17.9008567778095,
"asn": 41256,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Television studio \"News service\" LLC",
"lat": 50.4409,
"lon": 30.5272015,
"asn": 47315,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Private Joint-Stock Company \"INTER TV-CHANNEL\"",
"lat": 50.4409,
"lon": 30.5271985,
"asn": 31360,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "PE Podobed Ganna Michaylovna",
"lat": 48.4554954065285,
"lon": 34.96924793985,
"asn": 50479,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "F.P.H.U. \"GESA\" Stanislaw Kubica",
"lat": 50.2359043009654,
"lon": 18.6927784132895,
"asn": 198374,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Multiplay Sp. z o.o. Sp. K.",
"lat": 50.5410085849244,
"lon": 18.1684025041091,
"asn": 199551,
"customerConeSize": 2
},
{
"country": "PL",
"orgName": "WASKO S.A.",
"lat": 52.186923542268,
"lon": 21.0111644749862,
"asn": 39168,
"customerConeSize": 2
},
{
"country": "RU",
"orgName": "ZAO \"Zakamskaya Telephone Company\"",
"lat": 58.0201,
"lon": 56.2517999,
"asn": 60856,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Komisvyazinvest LLC",
"lat": 59.8371909517844,
"lon": 45.9372813827935,
"asn": 61382,
"customerConeSize": 2
},
{
"country": "RU",
"orgName": "FORA-BANK Joint-Stock Commercial Bank",
"lat": 55.7616,
"lon": 37.6411026,
"asn": 60437,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "InvestResurs Ltd.",
"lat": 55.7721898546324,
"lon": 37.6630619939788,
"asn": 48739,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "ZVI Telecom",
"lat": 55.7533801751234,
"lon": 37.6378172399148,
"asn": 31626,
"customerConeSize": 1
},
{
"country": "KG",
"orgName": "Nurtelecom LLC.",
"lat": 42.8709,
"lon": 74.5882002,
"asn": 47237,
"customerConeSize": 1
},
{
"country": "KZ",
"orgName": "ORBITA-PLUS Autonomous System",
"lat": 48.2279504941319,
"lon": 73.4238082314778,
"asn": 21299,
"customerConeSize": 14
},
{
"country": "KZ",
"orgName": "National information technologies JSC",
"lat": 51.167,
"lon": 71.5000001,
"asn": 15549,
"customerConeSize": 1
},
{
"country": "UZ",
"orgName": "Mediabay Asia LLC",
"lat": 55.7616,
"lon": 37.6410974,
"asn": 61019,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Lit-Tel LLC",
"lat": 41.3105,
"lon": 69.2952999,
"asn": 47141,
"customerConeSize": 2
},
{
"country": "UZ",
"orgName": "Department of Diplomatic Services of the Ministry of Foreign Affairs of the Republic of Uzbekistan",
"lat": 41.3105,
"lon": 69.2953002,
"asn": 197917,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CJSC Togliatti Telecom",
"lat": 53.5652,
"lon": 49.3082,
"asn": 43675,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "IntellCom Ltd",
"lat": 53.3320867202823,
"lon": 50.3324104376691,
"asn": 41101,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "FGBOU VPO \"Tolyattinskiy gosudarstvennyiy universitet\"",
"lat": 53.5652,
"lon": 49.3082001,
"asn": 59561,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "Mobile & Television Communications LLC",
"lat": 42.8709,
"lon": 74.5881998,
"asn": 56988,
"customerConeSize": 1
},
{
"country": "KG",
"orgName": "Optima Telecom Ltd.",
"lat": 42.8709,
"lon": 74.5882003,
"asn": 39819,
"customerConeSize": 1
},
{
"country": "KG",
"orgName": "Demir Kyrgyz International Bank CJSC",
"lat": 41,
"lon": 75,
"asn": 61196,
"customerConeSize": 1
},
{
"country": "KG",
"orgName": "Aktel Ltd.",
"lat": 42.8709,
"lon": 74.5881997,
"asn": 50251,
"customerConeSize": 1
},
{
"country": "KG",
"orgName": "comintech",
"lat": 42.8709,
"lon": 74.5882004,
"asn": 39214,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "National Exchange Carrier Association, Inc.",
"lat": 40.733,
"lon": -74.4035,
"asn": 21616,
"customerConeSize": 1
},
{
"country": "GH",
"orgName": "DiscoveryTel Communications Ghana",
"lat": 5.559,
"lon": -0.201,
"asn": 37237,
"customerConeSize": 1
},
{
"country": "GH",
"orgName": "Zenith Bank Ghana Ltd",
"lat": 5.559,
"lon": -0.2009999,
"asn": 37212,
"customerConeSize": 1
},
{
"country": "GH",
"orgName": "Ghana Community Network Services Limited",
"lat": 5.559,
"lon": -0.2010001,
"asn": 37162,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "The Nexus Group, Inc.",
"lat": 35.973,
"lon": -83.9865,
"asn": 31941,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Passport Health Communications, Inc.",
"lat": 36.7029241793392,
"lon": -87.2958634582223,
"asn": 20187,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "UnitedHealth Group Incorporated",
"lat": 40.6333209129554,
"lon": -89.8662065812523,
"asn": 35896,
"customerConeSize": 1
},
{
"country": "FR",
"orgName": "SDI ROCA SARL",
"lat": 50.7864646262752,
"lon": -54.8525391674022,
"asn": 61015,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Adecco RPO",
"lat": 41.707,
"lon": -83.6497,
"asn": 40814,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Metalink Technologies, Inc.",
"lat": 41.3475668215664,
"lon": -84.3986722165104,
"asn": 13638,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Time Clock Solutions, LLC",
"lat": 41.6197,
"lon": -83.7268,
"asn": 21953,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "National Cancer Institute/Frederick Cancer Research",
"lat": 39.4852394629266,
"lon": -77.4457330551379,
"asn": 6150,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Computers and Peripherals Ltd.",
"lat": 55.7838591270699,
"lon": 38.3658362845901,
"asn": 33993,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "OOO Stalnet",
"lat": 55.7867237727819,
"lon": 38.2043662338516,
"asn": 50553,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OZ-WEB LLC",
"lat": 55.8022198521574,
"lon": 38.8207881667283,
"asn": 56802,
"customerConeSize": 1
},
{
"country": "BO",
"orgName": "Comteco Ltda",
"lat": -17.3622543622601,
"lon": -66.2170546728238,
"asn": 27839,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Play-Telecom LLC.",
"lat": 55.7616,
"lon": 37.6411027,
"asn": 59975,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CJSC TransVostokTelecom",
"lat": 55.2098287669295,
"lon": 38.5939976208102,
"asn": 44678,
"customerConeSize": 2
},
{
"country": "RU",
"orgName": "JSC \"European Media Group\"",
"lat": 55.7197163494121,
"lon": 37.7028209440565,
"asn": 31183,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "LLC First Expedition Kompany UK",
"lat": 55.7616,
"lon": 37.6410973,
"asn": 197756,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CJSC Comfortel",
"lat": 52.9795,
"lon": 36.1125,
"asn": 48946,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Limited Liability Company \"VimSvyaz\"",
"lat": 55.7754,
"lon": 37.6878,
"asn": 49244,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "\"PG Trade\" Subsidiary of \"Palma Group S. A.\" (Switzerland)\"",
"lat": 46.4791,
"lon": 30.7271998,
"asn": 56688,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "\"Avers\" Company Limited",
"lat": 46.4791,
"lon": 30.7272003,
"asn": 197781,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "\"Garastel\" Limited Liability Company",
"lat": 55.9438121166645,
"lon": 36.7700940203301,
"asn": 51547,
"customerConeSize": 2
},
{
"country": "RU",
"orgName": "Korol Divanov LLC.",
"lat": 51.5431,
"lon": 45.9987002,
"asn": 61264,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Grid Dynamics LLC",
"lat": 58.8771377788382,
"lon": 32.9855569750827,
"asn": 57031,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "\"State Institution of the Yamal-Nenets autonomous district Multifunctional Centre of state and municipal services\"",
"lat": 56.6374,
"lon": 66.6636002,
"asn": 201835,
"customerConeSize": 1
},
{
"country": "CN",
"orgName": "UPNET Technologies Co., Ltd",
"lat": 36.6653,
"lon": 116.995,
"asn": 17773,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "UPNET TECHNOLOGY INTERNATIONAL LIMITED",
"lat": 22.276,
"lon": 114.1669993,
"asn": 133205,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "Qrixjongrojunggucable, Inc.",
"lat": 37.5625421875599,
"lon": 126.993279105137,
"asn": 38097,
"customerConeSize": 2
},
{
"country": "PH",
"orgName": "EvoServe is a content and online access Internet provider company",
"lat": 7.16398025018775,
"lon": 124.704380869231,
"asn": 4759,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "ASSECO SEE d.o.o",
"lat": 42,
"lon": 21.467,
"asn": 61332,
"customerConeSize": 1
},
{
"country": "AL",
"orgName": "ABCOM Shpk",
"lat": 41.34514080915,
"lon": 19.8011774329073,
"asn": 21183,
"customerConeSize": 15
},
{
"country": "SI",
"orgName": "Optisis d.o.o.",
"lat": 46.5577,
"lon": 15.6509001,
"asn": 56513,
"customerConeSize": 1
},
{
"country": "SI",
"orgName": "Stelkom d.o.o.",
"lat": 46.1394822195756,
"lon": 14.5746031749879,
"asn": 43061,
"customerConeSize": 35
},
{
"country": "SI",
"orgName": "Slovenske zeleznice, d.o.o.",
"lat": 46.0513,
"lon": 14.5030999,
"asn": 48653,
"customerConeSize": 1
},
{
"country": "MT",
"orgName": "Solutions & Infrustructure Services Ltd.",
"lat": 35.8993159494662,
"lon": 14.5061428795781,
"asn": 42108,
"customerConeSize": 1
},
{
"country": "MT",
"orgName": "Alert Communications Limited",
"lat": 35.8974478608076,
"lon": 14.5081217415673,
"asn": 35134,
"customerConeSize": 1
},
{
"country": "MT",
"orgName": "Smart IP (SIP) Limited",
"lat": 35.9122,
"lon": 14.5042,
"asn": 200127,
"customerConeSize": 1
},
{
"country": "SE",
"orgName": "Obenetwork AB",
"lat": 50.8881822063588,
"lon": 83.9352760010106,
"asn": 57567,
"customerConeSize": 2
},
{
"country": "BG",
"orgName": "DragoNET - Lyuba Pesheva",
"lat": 42.8099672076231,
"lon": 23.1265552749704,
"asn": 62323,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "APIS BULGARIA Ltd.",
"lat": 42.6976,
"lon": 23.3222996,
"asn": 198283,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Demax JSC",
"lat": 42.6976,
"lon": 23.3223005,
"asn": 199512,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "TRIUNFO TELECOMUNICACIONES, S.L.",
"lat": 42.0680705597125,
"lon": -2.08048440148913,
"asn": 41343,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "VISOVISION S.L.",
"lat": 38.0014147026573,
"lon": -5.32587262819504,
"asn": 48427,
"customerConeSize": 2
},
{
"country": "ES",
"orgName": "Televideo Novelda S.A. (Unipersonal)",
"lat": 38.3781348675148,
"lon": -0.730121543451352,
"asn": 35394,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "Digital Value Autonomous System, Valencia (Spain)",
"lat": 39.4813205401359,
"lon": -0.40203873733153,
"asn": 25487,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "Infortelecom Hosting S.L.",
"lat": 39.5568613925981,
"lon": -0.761421775107597,
"asn": 50926,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "SheepLink Co.,Ltd.",
"lat": 13.733,
"lon": 100.5000004,
"asn": 45441,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "ServeNET Solution Limited Partnership",
"lat": 13.733,
"lon": 100.4999996,
"asn": 133751,
"customerConeSize": 1
},
{
"country": "BY",
"orgName": "GrimNet Ltd",
"lat": 53.9008,
"lon": 27.5587002,
"asn": 56410,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "PE Scherban Evgeniy Aleksandrovich",
"lat": 48.0888339636917,
"lon": 37.3179418352176,
"asn": 57460,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "SATT a.s.",
"lat": 49.8857228900384,
"lon": 15.8801989686007,
"asn": 56566,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "Net-Connect s.r.o.",
"lat": 48.8657908461597,
"lon": 17.1887530103562,
"asn": 197798,
"customerConeSize": 1
},
{
"country": "AM",
"orgName": "\"Republic of Armenia Government staff\" Public administration Institution.",
"lat": 40.1811,
"lon": 44.5136,
"asn": 197497,
"customerConeSize": 1
},
{
"country": "AM",
"orgName": "Institute for Informatics and Automation Problems of National Academy of Sciences of the Republic of Armenia",
"lat": 40.1811,
"lon": 44.5136001,
"asn": 47623,
"customerConeSize": 2
},
{
"country": "AM",
"orgName": "AsterNet Ltd.",
"lat": 39.2011,
"lon": 46.415,
"asn": 60548,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "Alpha Bank Srbija A.D.",
"lat": 44.833,
"lon": 20.5000003,
"asn": 34096,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "METRO Cash & Carry l.t.d.",
"lat": 51.2006,
"lon": 6.84072,
"asn": 41874,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "CNL CentralNet GmbH",
"lat": 47.0457,
"lon": 8.30824,
"asn": 51889,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "Ha Noi University of Technology",
"lat": 21.017,
"lon": 105.8669998,
"asn": 38727,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "CMC Telecom Infrastructure Company",
"lat": 16.9920099350467,
"lon": 106.428565108848,
"asn": 45903,
"customerConeSize": 17
},
{
"country": "VN",
"orgName": "Golden Dragon Company",
"lat": 10.75,
"lon": 106.6670001,
"asn": 55312,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "Vietnam Bank for industry and trade securities JSC",
"lat": 21.017,
"lon": 105.8670003,
"asn": 55323,
"customerConeSize": 1
},
{
"country": "KH",
"orgName": "ANGKOR DATA COMMUNICATION",
"lat": 11.583,
"lon": 104.917,
"asn": 38235,
"customerConeSize": 11
},
{
"country": "VN",
"orgName": "An Binh Bank",
"lat": 10.75,
"lon": 106.6669999,
"asn": 55317,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "Vietnam Brewery Limited",
"lat": 10.75,
"lon": 106.6670002,
"asn": 45551,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "Viet Online trading service corporation",
"lat": 9.8683,
"lon": 106.3560001,
"asn": 131367,
"customerConeSize": 1
},
{
"country": "IE",
"orgName": "Ripple Communications Ltd",
"lat": 52.8916477930736,
"lon": -7.94314692493915,
"asn": 35226,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "TELECITYGROUP INTERNATIONAL LIMITED",
"lat": 51.5383406982505,
"lon": 1.95960219456923,
"asn": 15830,
"customerConeSize": 75
},
{
"country": "DE",
"orgName": "LF.net GmbH",
"lat": 49.4750576631803,
"lon": 8.52537710070455,
"asn": 12374,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "BOEAG Boersen AG",
"lat": 53.5551,
"lon": 9.94844,
"asn": 43305,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "M-net Telekommunikations GmbH",
"lat": 48.6797080833217,
"lon": 11.0581510094465,
"asn": 8767,
"customerConeSize": 72
},
{
"country": "DE",
"orgName": "envia Tel GmbH",
"lat": 50.9555504826697,
"lon": 12.6096650168007,
"asn": 21413,
"customerConeSize": 26
},
{
"country": "DE",
"orgName": "arvato direct services GmbH",
"lat": 51.916,
"lon": 8.37439,
"asn": 197127,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "MK Netzdienste GmbH & Co. KG",
"lat": 51.6967550526752,
"lon": 9.1477324167726,
"asn": 25394,
"customerConeSize": 17
},
{
"country": "PL",
"orgName": "FUNDACJA UNIWERSYTETU IM. ADAMA MICKIEWICZA W POZNANIU",
"lat": 52.4470385495632,
"lon": 16.9282128563774,
"asn": 42594,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "SKYLOGIC S.P.A.",
"lat": 45.4835052683086,
"lon": 9.41469666404871,
"asn": 29286,
"customerConeSize": 3
},
{
"country": "US",
"orgName": "South Plains Telephone Cooperative, Inc.",
"lat": 33.6446942548014,
"lon": -101.891592883998,
"asn": 46694,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "west central wireless",
"lat": 31.5357483229333,
"lon": -99.6619843432018,
"asn": 18618,
"customerConeSize": 7
},
{
"country": "US",
"orgName": "SANTA ROSA TELEPHONE COOPERATIVE INC",
"lat": 33.8583533342028,
"lon": -99.3056213660905,
"asn": 32391,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "Salzburger Flughafen GmbH",
"lat": 47.8005,
"lon": 13.0444,
"asn": 44392,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "conova communications GmbH",
"lat": 47.9016324974687,
"lon": 13.0088015127281,
"asn": 5404,
"customerConeSize": 4
},
{
"country": "AT",
"orgName": "Wirtschaftskammer Oesterreich",
"lat": 47.8005,
"lon": 13.0444001,
"asn": 38967,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Connect Data Solutions B.V.",
"lat": 52.2698797780937,
"lon": 5.14824792567345,
"asn": 34430,
"customerConeSize": 2
},
{
"country": "IR",
"orgName": "Age of Telecommunication and Data transfer Sepahan PLC",
"lat": 32.6517,
"lon": 51.6793001,
"asn": 52210,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "\"ASNICOM\" EOOD",
"lat": 42.6571269016827,
"lon": 23.6576636052604,
"asn": 62052,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Daticum JSC",
"lat": 42.6558430195341,
"lon": 23.4271362537656,
"asn": 47748,
"customerConeSize": 2
},
{
"country": "IQ",
"orgName": "National Investment Commission",
"lat": 33.3406,
"lon": 44.4009001,
"asn": 60145,
"customerConeSize": 1
},
{
"country": "IQ",
"orgName": "Al-Hadetha for software and Automation Ltd",
"lat": 33.3406,
"lon": 44.4008999,
"asn": 201272,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "\"Allied Standart Limited\" LLC",
"lat": 50.4409,
"lon": 30.5272016,
"asn": 21343,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Synergy Concern LLC",
"lat": 48.4229,
"lon": 35.1378997,
"asn": 48641,
"customerConeSize": 2
},
{
"country": "UA",
"orgName": "TOV \"Smarty Media\"",
"lat": 50.4409,
"lon": 30.5271984,
"asn": 43580,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "CREDIT BUREAU SYSTEMS",
"lat": 37.0376,
"lon": -88.7102,
"asn": 26839,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Digital Provedor de Internet Ltda",
"lat": -24.093980944445,
"lon": -54.2279770218446,
"asn": 52670,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "F1NET LTDA",
"lat": -22.7603147060999,
"lon": -52.2223704813891,
"asn": 262806,
"customerConeSize": 3
},
{
"country": "BR",
"orgName": "Newparce Telecomunicações Ltda ME",
"lat": -23.0652,
"lon": -54.1906,
"asn": 262290,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Ciss Consultoria em Informatica Serv e Soft Ltda",
"lat": -25.7346,
"lon": -53.0584999,
"asn": 52656,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "The Open University of Hong Kong",
"lat": 22.276,
"lon": 114.1670008,
"asn": 17764,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "Eric Tam",
"lat": 35.672200413109,
"lon": 139.759999536984,
"asn": 133027,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "Tele Asia Limited",
"lat": 33.5158633090415,
"lon": 107.166127037605,
"asn": 133398,
"customerConeSize": 2
},
{
"country": "HK",
"orgName": "Netsolutions Limited",
"lat": 30.0920277607876,
"lon": 126.471077835614,
"asn": 132818,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "NTS Netzwerk Telekom Service AG",
"lat": 47.0679,
"lon": 15.4416999,
"asn": 44329,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "ZAO Mobi.Dengi",
"lat": 59.939,
"lon": 30.3157988,
"asn": 51376,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Jentek SPb Ltd",
"lat": 59.939,
"lon": 30.3158013,
"asn": 48079,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Rational Services Ltd",
"lat": 53.3439,
"lon": -6.26871,
"asn": 48536,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "TIME-NET S.R.L.",
"lat": 43.9498542285145,
"lon": 11.4379766366942,
"asn": 51580,
"customerConeSize": 3
},
{
"country": "ID",
"orgName": "PT Pelabuhan Indonesia II",
"lat": -6.39,
"lon": 106.8,
"asn": 131761,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT DES Teknologi Informasi",
"lat": -6.94747864137776,
"lon": 110.347831840123,
"asn": 45302,
"customerConeSize": 3
},
{
"country": "ID",
"orgName": "INTI INFORMATIKA, PT",
"lat": -2.983,
"lon": 104.75,
"asn": 38523,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT. Maxima Data",
"lat": -8.117,
"lon": 113.75,
"asn": 38509,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT Cyber Network Indonesia",
"lat": -6.13914547076808,
"lon": 106.786021423716,
"asn": 38496,
"customerConeSize": 26
},
{
"country": "ID",
"orgName": "Indonesia SIRT",
"lat": -6.2620531685021,
"lon": 107.514811931642,
"asn": 38775,
"customerConeSize": 1
},
{
"country": "AR",
"orgName": "Techtel LMDS Comunicaciones Interactivas S.A.",
"lat": -34.1798937498784,
"lon": -59.2717102953956,
"asn": 11664,
"customerConeSize": 69
},
{
"country": "AR",
"orgName": "DSR Comunicaciones S.A.",
"lat": -34.6118,
"lon": -58.4173,
"asn": 27769,
"customerConeSize": 1
},
{
"country": "GH",
"orgName": "Social Security And National Insurance Trust",
"lat": 5.559,
"lon": -0.2009998,
"asn": 37392,
"customerConeSize": 1
},
{
"country": "GH",
"orgName": "K-Net",
"lat": 5.62547958018135,
"lon": -0.284421077994578,
"asn": 33786,
"customerConeSize": 2
},
{
"country": "GH",
"orgName": "Network Computer Systems Automomous System",
"lat": 5.58091634547645,
"lon": -0.269839296703126,
"asn": 15825,
"customerConeSize": 1
},
{
"country": "IN",
"orgName": "Education and Research Network",
"lat": 25.8263482700024,
"lon": 77.5559737623552,
"asn": 2697,
"customerConeSize": 2
},
{
"country": "IN",
"orgName": "Saha Institute of Nuclear Physics",
"lat": 30.3283,
"lon": 76.9609,
"asn": 133313,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Andreas Otto und Sebastian Reimers are trading as \"AOIT\" GbR",
"lat": 49.4255,
"lon": 11.0146,
"asn": 199644,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "AutoScout24 GmbH",
"lat": 48.0952485806582,
"lon": 11.6034092340404,
"asn": 44355,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "Ateneo de Manila University",
"lat": 7.083,
"lon": 125.633,
"asn": 132844,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "University of the Philippines Visayas, Iloilo Campus",
"lat": 14.2752958696219,
"lon": 121.263943635184,
"asn": 9821,
"customerConeSize": 15
},
{
"country": "PH",
"orgName": "iManila",
"lat": 14.6531981867787,
"lon": 121.04505532519,
"asn": 9334,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "19 Fl., Tonson Tower, 900 Ploenchit Rd.,",
"lat": 13.733,
"lon": 100.5000005,
"asn": 55522,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "Netway Communication Co.,Ltd.",
"lat": 13.7540437718282,
"lon": 100.516874722394,
"asn": 18362,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Calgary Catholic School District",
"lat": 51.1229,
"lon": -114.189,
"asn": 54520,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Cybera Inc",
"lat": 52.9776230908369,
"lon": -114.338101391332,
"asn": 15296,
"customerConeSize": 28
},
{
"country": "CA",
"orgName": "Manitoba Hydro International LTD",
"lat": 49.8715,
"lon": -97.1142,
"asn": 19041,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Innovation Place",
"lat": 50.4415700125112,
"lon": -104.612818650599,
"asn": 393607,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "TeraGo Networks Inc.",
"lat": 47.1195929480603,
"lon": -89.22343474608,
"asn": 20161,
"customerConeSize": 24
},
{
"country": "CA",
"orgName": "Planet Telecom",
"lat": 53.5969687656453,
"lon": -113.537878737548,
"asn": 46737,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Hydro One Telecom Inc.",
"lat": 43.8060549129369,
"lon": -79.1017045405678,
"asn": 19752,
"customerConeSize": 19
},
{
"country": "US",
"orgName": "DNS-OARC",
"lat": 37.4924,
"lon": -122.204,
"asn": 112,
"customerConeSize": 1
},
{
"country": "BE",
"orgName": "Tom Laermans",
"lat": 50.8627,
"lon": 4.6292301,
"asn": 35627,
"customerConeSize": 1
},
{
"country": "NO",
"orgName": "NAME UNIT LIMITED",
"lat": 59.9268,
"lon": 10.7343003,
"asn": 51850,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Mir Detstva Ltd.",
"lat": 43.1307,
"lon": 131.924,
"asn": 59672,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "CJSC Caspian Pipeline Consortium",
"lat": 55.7225009882249,
"lon": 37.6567155949039,
"asn": 61206,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Unmetered Servers Pty Ltd",
"lat": -33.8671,
"lon": 151.2069999,
"asn": 133521,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "CNCNA Pty Ltd",
"lat": -33.8671,
"lon": 151.2070002,
"asn": 133050,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Planet Ozi Pty Ltd",
"lat": -32.6020901574144,
"lon": 151.405587399947,
"asn": 18221,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Micron21 Melbourne Australia Datacentre. Co-Location Dedicated Servers Web Hosting",
"lat": -37.3396766668075,
"lon": 146.078776398119,
"asn": 38880,
"customerConeSize": 11
},
{
"country": "AU",
"orgName": "Net2000 Pty Ltd",
"lat": -37.8864353750206,
"lon": 145.178799146057,
"asn": 9461,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Central Data Pty Ltd.",
"lat": -32.2522409624996,
"lon": 117.185872643298,
"asn": 18065,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Department of Education and Early Childhood Development",
"lat": -37.8143,
"lon": 144.9630001,
"asn": 56105,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "The MITRE Corporation",
"lat": 42.3738,
"lon": -70.9805,
"asn": 120,
"customerConeSize": 1
},
{
"country": "CN",
"orgName": "CNLink Networks Ltd.",
"lat": 50.7057100028142,
"lon": 116.463083436678,
"asn": 24134,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "The Chinese University of Hong Kong",
"lat": 22.276,
"lon": 114.1669992,
"asn": 4641,
"customerConeSize": 9
},
{
"country": "CN",
"orgName": "Beijing XiRang Media Cultural Co., Ltd.",
"lat": 38.5193323345799,
"lon": 115.921305610993,
"asn": 17430,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Prall, Inc., David C",
"lat": 38.8172,
"lon": -77.1226,
"asn": 16881,
"customerConeSize": 1
},
{
"country": "AF",
"orgName": "Neda Telecommunications",
"lat": 34.5169,
"lon": 69.1470001,
"asn": 55745,
"customerConeSize": 1
},
{
"country": "AF",
"orgName": "RANA Technologies,Kabul",
"lat": 34.5169,
"lon": 69.1469999,
"asn": 55732,
"customerConeSize": 1
},
{
"country": "AF",
"orgName": "Giganor ISP",
"lat": 34.5169,
"lon": 69.1470002,
"asn": 133457,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "TeleCurve, LLC",
"lat": 40.8668622880176,
"lon": -74.1351447346396,
"asn": 19264,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Marco Sandro Naf",
"lat": 50.8155,
"lon": 8.10395,
"asn": 201882,
"customerConeSize": 1
},
{
"country": "HK",
"orgName": "iAdvantage Limited",
"lat": 22.2763556785107,
"lon": 114.16683622769,
"asn": 9729,
"customerConeSize": 8
},
{
"country": "IN",
"orgName": "SATYAM COMPUTER SERVICES LTD",
"lat": 17.3028387748217,
"lon": 78.4311706224582,
"asn": 45432,
"customerConeSize": 1
},
{
"country": "NZ",
"orgName": "WebSlice Limited",
"lat": -36.8469,
"lon": 174.7680001,
"asn": 132919,
"customerConeSize": 1
},
{
"country": "NZ",
"orgName": "Online Republic Limited",
"lat": -36.8469,
"lon": 174.7679999,
"asn": 133404,
"customerConeSize": 1
},
{
"country": null,
"orgName": null,
"lat": -33.8671,
"lon": 151.2069998,
"asn": 64001,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "TDS TELECOM",
"lat": 40.2403999064102,
"lon": -105.091910829178,
"asn": 19391,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "Pishgam Shabakeh Jahrom Company (Private Joint Stock)",
"lat": 29.6014,
"lon": 52.5315999,
"asn": 58250,
"customerConeSize": 1
},
{
"country": "IR",
"orgName": "Poyan Pishro Larestan",
"lat": 27.6659,
"lon": 54.2994,
"asn": 58216,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "UnifiedRoot S & M B V",
"lat": 52.5114,
"lon": 4.94809,
"asn": 44928,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Bitbrains Nederland BV",
"lat": 52.3262564795387,
"lon": 4.8862975660048,
"asn": 48645,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Stichting Digitale Snelweg Kennemerland",
"lat": 52.3785195845577,
"lon": 4.87302730464708,
"asn": 47863,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Pirum Systems Limited",
"lat": 51.5147,
"lon": -0.0832895,
"asn": 200008,
"customerConeSize": 1
},
{
"country": "SK",
"orgName": "S.A. NET",
"lat": 48.0643670964609,
"lon": 17.361321920799,
"asn": 21019,
"customerConeSize": 1
},
{
"country": "SK",
"orgName": "eustream as",
"lat": 48.0308,
"lon": 17.1995999,
"asn": 57414,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "COMUTEL d.o.o.",
"lat": 44.833,
"lon": 20.4999997,
"asn": 49167,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "Saga d.o.o. Beograd",
"lat": 44.833,
"lon": 20.5000004,
"asn": 62420,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "DTC Informatica e Telecomunicações LTDA",
"lat": -22.6099144803935,
"lon": -45.9600785645426,
"asn": 263591,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "GUTEMBERG GONCALVES BARBALHO - ME",
"lat": -8.07439,
"lon": -37.2646,
"asn": 263399,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "ICANN",
"lat": 33.9746,
"lon": -118.426,
"asn": 20144,
"customerConeSize": 1
},
{
"country": "PE",
"orgName": "The American School of Lima",
"lat": -12.0436,
"lon": -77.0212001,
"asn": 26136,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Núcleo de Inf. e Coord. do Ponto BR - NIC.BR",
"lat": -23.5337,
"lon": -46.6288996,
"asn": 14650,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "MAR - MIR ROB SRL",
"lat": 44.4599,
"lon": 26.1332989,
"asn": 44421,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Xplor Network SRL",
"lat": 44.8901926352579,
"lon": 25.9377514758524,
"asn": 35622,
"customerConeSize": 1
},
{
"country": "RO",
"orgName": "Swap Technologies SRL",
"lat": 44.4599,
"lon": 26.1333012,
"asn": 35772,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "Srpska banka A.D.",
"lat": 44.833,
"lon": 20.4999996,
"asn": 58266,
"customerConeSize": 1
},
{
"country": "RS",
"orgName": "JP Elektromreza Srbije Beograd",
"lat": 44.833,
"lon": 20.5000005,
"asn": 44287,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "GLP Telecomunicações Ltda.",
"lat": -26.4225184220226,
"lon": -53.6073573862137,
"asn": 262399,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "GLOBO INFORMATICA LTDA - ME",
"lat": -27.7158191282808,
"lon": -54.168549486917,
"asn": 61666,
"customerConeSize": 4
},
{
"country": "BR",
"orgName": "BrPhonia Provedor Ip Ltda",
"lat": -27.8625,
"lon": -54.4571,
"asn": 263649,
"customerConeSize": 3
},
{
"country": "BR",
"orgName": "NETCERTTO INFORMATICA LTDA.",
"lat": -25.1854946068836,
"lon": -52.4775065723811,
"asn": 53226,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Dvoranem E Fernandes Ltda",
"lat": -23.6665614643376,
"lon": -54.0117207601168,
"asn": 61910,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Alexandre Alvarenga Informatica -ME",
"lat": -20.771487680643,
"lon": -49.4033975525247,
"asn": 262986,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "VELOZ INTERNET LTDA.",
"lat": -22.9653,
"lon": -49.8926,
"asn": 263572,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Granadanet Servicos de Informatica S/C. Ltda.",
"lat": -20.5541508092787,
"lon": -49.3145242060497,
"asn": 262702,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "ISOTELCO LTDA",
"lat": -11.2316130738927,
"lon": -47.2203413841954,
"asn": 52936,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "STIW Sistema de Telecom. Inf e Wireless LTDA",
"lat": -17.6986416716203,
"lon": -42.5692798841376,
"asn": 263099,
"customerConeSize": 4
},
{
"country": "BR",
"orgName": "GIGASAT SERVIÇOS DE PROCESSAMENTOS DE DADOS LTDA",
"lat": -16.7970066529476,
"lon": -38.9783416484642,
"asn": 263252,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "Ukrainian Hydrometeorological Center",
"lat": 50.4409,
"lon": 30.5272017,
"asn": 198108,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Dom Finansowy QS Sp. z o.o.",
"lat": 54.3201,
"lon": 18.5865001,
"asn": 34546,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "Marek Michalkiewicz",
"lat": 54.3894,
"lon": 18.5344,
"asn": 56523,
"customerConeSize": 2
},
{
"country": "PL",
"orgName": "WYDAWNICTWO MULTIMEDIALNE KOWALEWSKI I WOLFF SPOLKA CYWILNA PIOTR GLADKI KRZYSZTOF KOWALEWSKI MACIEJ MANSKI",
"lat": 54.4417,
"lon": 18.5656001,
"asn": 51075,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "Joint-stock company ParmaTel",
"lat": 61.6417,
"lon": 50.8383,
"asn": 44572,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "PS Internet Company LLC",
"lat": 43.25,
"lon": 76.9500002,
"asn": 48716,
"customerConeSize": 3
},
{
"country": "KZ",
"orgName": "Satti Telecom Ltd.",
"lat": 46.994034732369,
"lon": 67.3296950533653,
"asn": 31525,
"customerConeSize": 1
},
{
"country": "UZ",
"orgName": "INFONET-SERVIS LTD",
"lat": 41.3105,
"lon": 69.2952998,
"asn": 49171,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "OTK LLC.",
"lat": 55.7616,
"lon": 37.6411028,
"asn": 59917,
"customerConeSize": 1
},
{
"country": "RU",
"orgName": "LLC \"Telekonika\"",
"lat": 55.6979,
"lon": 36.2034,
"asn": 57571,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "kyowonkumon",
"lat": 37.5410397459927,
"lon": 126.924292534037,
"asn": 46005,
"customerConeSize": 1
},
{
"country": "AL",
"orgName": "Banka Credins",
"lat": 41.3311,
"lon": 19.8318,
"asn": 58166,
"customerConeSize": 1
},
{
"country": "AL",
"orgName": "MC NETWORKING Sh.p.k.",
"lat": 41.3311,
"lon": 19.8318001,
"asn": 56468,
"customerConeSize": 2
},
{
"country": "AL",
"orgName": "Intercom Data Service sh.p.k",
"lat": 41.3311,
"lon": 19.8317999,
"asn": 202179,
"customerConeSize": 1
},
{
"country": "SI",
"orgName": "Alcad podjetje za projektiranje, trgovino in storitve d.o.o.",
"lat": 46.3921,
"lon": 15.5724,
"asn": 197843,
"customerConeSize": 1
},
{
"country": "SI",
"orgName": "Business Solutions d.o.o.",
"lat": 45.946,
"lon": 13.6549,
"asn": 15664,
"customerConeSize": 1
},
{
"country": "ES",
"orgName": "Universal Telecom Experts S.L",
"lat": 37.3042358279161,
"lon": -5.89237904071362,
"asn": 43528,
"customerConeSize": 1
},
{
"country": "AM",
"orgName": "\"Internet Society\" Public Organisation",
"lat": 40.1811,
"lon": 44.5135999,
"asn": 51090,
"customerConeSize": 2
},
{
"country": "VN",
"orgName": "Customs IT and Statistics Department - General Department of Vietnam Customs",
"lat": 21.017,
"lon": 105.8669997,
"asn": 131381,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "Netnam Company",
"lat": 21.007028911856,
"lon": 105.867822127074,
"asn": 24173,
"customerConeSize": 7
},
{
"country": "VN",
"orgName": "KienLong commercial joint stock bank",
"lat": 10.75,
"lon": 106.6669998,
"asn": 131345,
"customerConeSize": 1
},
{
"country": "KH",
"orgName": "Khmer tower Russia load Sangkat toul Thla Khan sensok",
"lat": 11.583,
"lon": 104.9170001,
"asn": 59351,
"customerConeSize": 1
},
{
"country": "TH",
"orgName": "NTTCTNET",
"lat": 13.4325353313229,
"lon": 101.172071400373,
"asn": 38566,
"customerConeSize": 3
},
{
"country": null,
"orgName": null,
"lat": 11.583,
"lon": 104.9169999,
"asn": 55769,
"customerConeSize": 1
},
{
"country": "FR",
"orgName": "VeriFone Systems France SAS",
"lat": 45.8653641524591,
"lon": 3.05875943026639,
"asn": 50845,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Leader Capital LTD",
"lat": 51.9728551010328,
"lon": 2.38735209117015,
"asn": 199843,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Archway S.r.l",
"lat": 43.4354044296711,
"lon": 17.3246618620873,
"asn": 8261,
"customerConeSize": 3
},
{
"country": "DE",
"orgName": "Cortal Consors S.A.",
"lat": 49.4574038009419,
"lon": 11.0491038730777,
"asn": 31450,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Erdenreich Datentechnik GmbH",
"lat": 48.7773725380649,
"lon": 11.3357870749995,
"asn": 13247,
"customerConeSize": 4
},
{
"country": "DE",
"orgName": "mvox AG",
"lat": 48.455509321135,
"lon": 11.6541298297075,
"asn": 15434,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "SWM Services GmbH",
"lat": 48.1409,
"lon": 11.5691002,
"asn": 198145,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "BayCIX GmbH",
"lat": 48.5447422521455,
"lon": 11.9570724491913,
"asn": 12657,
"customerConeSize": 4
},
{
"country": "DE",
"orgName": "COSIMO Vertriebs und Beratungs GmbH",
"lat": 50.9498298184563,
"lon": 12.7314960332788,
"asn": 201832,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "PrimaCom Berlin GmbH",
"lat": 51.3849835370177,
"lon": 12.3997678267031,
"asn": 16202,
"customerConeSize": 4
},
{
"country": "DE",
"orgName": "Stadtwerke Finsterwalde GmbH",
"lat": 51.6353,
"lon": 13.7125,
"asn": 59921,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "EPAG Domainservices GmbH",
"lat": 50.6878762126504,
"lon": 7.13309712639464,
"asn": 12915,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "CLG Computerdienst fur Landwirtschaft und Gewerbe GmbH",
"lat": 48.2680866391216,
"lon": 13.0575302552154,
"asn": 16152,
"customerConeSize": 2
},
{
"country": "DE",
"orgName": "EVANZO e-commerce GmbH",
"lat": 52.5151969786777,
"lon": 13.3234928838237,
"asn": 42730,
"customerConeSize": 1
},
{
"country": "LB",
"orgName": "Cyberia",
"lat": 33.8861,
"lon": 35.4999,
"asn": 24634,
"customerConeSize": 3
},
{
"country": "LB",
"orgName": "SODETEL SAL",
"lat": 33.93726764661,
"lon": 35.4132632005643,
"asn": 31126,
"customerConeSize": 7
},
{
"country": "US",
"orgName": "Network Lubbock, Inc.",
"lat": 33.0177304633411,
"lon": -101.718592295877,
"asn": 46455,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "NORTHLAND CABLE TELEVISION INC.",
"lat": 36.5136592212162,
"lon": -93.9898725409997,
"asn": 40285,
"customerConeSize": 5
},
{
"country": "US",
"orgName": "Taylor Telephone Cooperative, Inc.",
"lat": 32.3837061966234,
"lon": -100.417322672245,
"asn": 22353,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "feratel Schweiz AG",
"lat": 47.1386,
"lon": 8.43088,
"asn": 57260,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "nic.at GmbH",
"lat": 47.8952994273385,
"lon": 13.7525696275761,
"asn": 30971,
"customerConeSize": 3
},
{
"country": "NL",
"orgName": "DataCenter Noord BV",
"lat": 53.1746,
"lon": 5.42181,
"asn": 48812,
"customerConeSize": 1
},
{
"country": "BG",
"orgName": "Speedy AD",
"lat": 42.6976,
"lon": 23.3222995,
"asn": 197086,
"customerConeSize": 1
},
{
"country": "UA",
"orgName": "PE Golub Iryna Anatoliivna",
"lat": 48.4229,
"lon": 35.1379004,
"asn": 56459,
"customerConeSize": 1
},
{
"country": "PY",
"orgName": "VIRGINIA MARGARITA SANCHEZ DE FURLANETTO",
"lat": -25.3005,
"lon": -57.6362,
"asn": 52455,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "RLC COMÉRCIO E SERVIÇOS LTDA - ME",
"lat": -13.4,
"lon": -41.2167,
"asn": 262577,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Sirius Technology di Bongi Simone E C. SNC",
"lat": 42.8237145004861,
"lon": 12.4274623817554,
"asn": 60501,
"customerConeSize": 1
},
{
"country": "IT",
"orgName": "Next.it S.r.l.",
"lat": 43.7224300845024,
"lon": 10.9622212241442,
"asn": 201950,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "Universitas Islam Sultan Agung",
"lat": -6.97,
"lon": 110.42,
"asn": 58492,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "Universitas Diponegoro",
"lat": -6.97,
"lon": 110.4200001,
"asn": 46049,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "Lembaga Penerbangan dan Antariksa Nasional (LAPAN)",
"lat": -6.913,
"lon": 107.606,
"asn": 131776,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT. Intelex Technet Global",
"lat": -6.77728351973063,
"lon": 108.102497623829,
"asn": 58486,
"customerConeSize": 5
},
{
"country": "ID",
"orgName": "VIP.NET - Internet Service Provider",
"lat": -4.74932533169314,
"lon": 105.510799486153,
"asn": 23698,
"customerConeSize": 1
},
{
"country": "AR",
"orgName": "Close Up Sociedad Anonima de Serv. Comer. y Finam.",
"lat": -34.6118,
"lon": -58.4172999,
"asn": 27739,
"customerConeSize": 1
},
{
"country": "AR",
"orgName": "Empresa Provincial de Energia de Cordoba",
"lat": -32.5025787634696,
"lon": -63.7388292800487,
"asn": 262150,
"customerConeSize": 6
},
{
"country": "AR",
"orgName": "Cooperativa Batan de Obras y Serv. Publicos Ltda",
"lat": -37.4325037504655,
"lon": -57.7316430013525,
"asn": 27754,
"customerConeSize": 1
},
{
"country": "AR",
"orgName": "SIDERAR S.A.I.C.",
"lat": -34.6118,
"lon": -58.4173001,
"asn": 52415,
"customerConeSize": 1
},
{
"country": "UY",
"orgName": "Telstar S.A.",
"lat": -34.8941,
"lon": -56.0675,
"asn": 20002,
"customerConeSize": 5
},
{
"country": "IN",
"orgName": "Inter University Centre for Astronomy and Astrophysics",
"lat": 18.5187,
"lon": 73.8808,
"asn": 55566,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "Ateneo de Manila University",
"lat": 14.8417161088683,
"lon": 120.858154954718,
"asn": 18188,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "St Luke's Medical Center, Inc",
"lat": 14.65,
"lon": 121.0330001,
"asn": 133064,
"customerConeSize": 3
},
{
"country": "PH",
"orgName": "University of the Philippines - Open University Los Banos Campus",
"lat": 10.3111,
"lon": 123.892,
"asn": 131281,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "HSCS",
"lat": 49.6836,
"lon": -112.834,
"asn": 62742,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "1505694 Alberta Ltd.",
"lat": 49.7082000379446,
"lon": -112.818571893748,
"asn": 33549,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Concordia University College of Alberta",
"lat": 53.5595,
"lon": -113.445,
"asn": 393468,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "J.D. SMITH AND SONS LTD",
"lat": 43.8459,
"lon": -79.4779,
"asn": 26680,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "HyperWALLET Systems Inc",
"lat": 49.2766,
"lon": -123.127,
"asn": 26441,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "IMS Health, Inc.",
"lat": 40.1872550325915,
"lon": -75.4191582009024,
"asn": 14948,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Xplornet Communications Inc.",
"lat": 48.9722213684567,
"lon": -84.0821663941537,
"asn": 22995,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "eHealth Ontario",
"lat": 43.4094500706146,
"lon": -79.7900749546192,
"asn": 21992,
"customerConeSize": 4
},
{
"country": "CA",
"orgName": "Vale Canada Limited",
"lat": 43.643515236934,
"lon": -79.4250164243532,
"asn": 26884,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "OMNIconnect Pty Ltd",
"lat": -37.8652794426141,
"lon": 144.970932912922,
"asn": 10105,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Dedicated Servers - Brisbane",
"lat": -29.6955976351774,
"lon": 152.189352651391,
"asn": 45425,
"customerConeSize": 4
},
{
"country": "HK",
"orgName": "Vocational Training Council Hong Kong",
"lat": 22.276,
"lon": 114.1670009,
"asn": 7577,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "WoodyNet",
"lat": 42.4854555736772,
"lon": -108.182854991818,
"asn": 42,
"customerConeSize": 11
},
{
"country": "CN",
"orgName": "China Internet Network Infomation Center",
"lat": 39.9576,
"lon": 116.336,
"asn": 24151,
"customerConeSize": 3
},
{
"country": "HK",
"orgName": "Exanet Limited",
"lat": 22.2876758328016,
"lon": 114.160753656051,
"asn": 133038,
"customerConeSize": 1
},
{
"country": "NO",
"orgName": "Media Network Services AS",
"lat": 70.5173516805087,
"lon": 3.05180539166687,
"asn": 44654,
"customerConeSize": 2
},
{
"country": "BR",
"orgName": "VIA TEC WIRELESS TECNOLOGIA LTDA",
"lat": -28.9319,
"lon": -52.3219,
"asn": 61936,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "BR MASTER PROVEDOR DE INTERNET LTDA",
"lat": -24.6781495827299,
"lon": -48.6014035096301,
"asn": 263360,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Meta Servers Tecnologia e Telecomunicacaoes Ltda",
"lat": -27.8625,
"lon": -54.4570999,
"asn": 61653,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Magnos A. Both e Cia Ltda",
"lat": -27.8602974763802,
"lon": -54.7298654517428,
"asn": 52843,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "RESOLVE TELECOM LIMITADA -ME",
"lat": -17.8016458446044,
"lon": -42.0133288390423,
"asn": 263054,
"customerConeSize": 1
},
{
"country": "BR",
"orgName": "Macedo e Castro Informática LTDA",
"lat": -18.2088657682181,
"lon": -43.5800950162842,
"asn": 52741,
"customerConeSize": 1
},
{
"country": "PL",
"orgName": "NETPOL Piotr Pruba",
"lat": 54.4435,
"lon": 18.4191,
"asn": 197848,
"customerConeSize": 1
},
{
"country": "CZ",
"orgName": "Gransy s.r.o.",
"lat": 50.0759000262704,
"lon": 14.4665423394384,
"asn": 60592,
"customerConeSize": 1
},
{
"country": "KZ",
"orgName": "Neolabs Ltd.",
"lat": 43.25,
"lon": 76.9499998,
"asn": 44256,
"customerConeSize": 1
},
{
"country": "GB",
"orgName": "Internet Computer Bureau Ltd.",
"lat": 50.7348,
"lon": -1.77841,
"asn": 42909,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "Bank for Investment and Development of VietNam",
"lat": 21.017,
"lon": 105.8670004,
"asn": 45541,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "Smartlink Card., JSC",
"lat": 21.017,
"lon": 105.8669996,
"asn": 131419,
"customerConeSize": 1
},
{
"country": "VN",
"orgName": "Trung tam tin hoc - Bo Khoa hoc va Cong nghe",
"lat": 21.017,
"lon": 105.8670005,
"asn": 131373,
"customerConeSize": 1
},
{
"country": "KH",
"orgName": "25th Floor Canadia Tower N0. 315 Presh Ang Duong Street",
"lat": 11.583,
"lon": 104.9170002,
"asn": 58465,
"customerConeSize": 1
},
{
"country": "AE",
"orgName": "BHS Telecommunication FZC",
"lat": 25.271,
"lon": 55.329,
"asn": 198861,
"customerConeSize": 1
},
{
"country": "CH",
"orgName": "Bistalk Telecom AG",
"lat": 46.1885534825889,
"lon": 8.95465640007492,
"asn": 59950,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Klinikum Ingolstadt GmbH",
"lat": 48.7101022349214,
"lon": 11.3821998859023,
"asn": 51378,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "w.e.b. Wirth EDV-Beratung OHG",
"lat": 48.7681143512134,
"lon": 11.3339227041221,
"asn": 48785,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Aligia GmbH",
"lat": 48.7024,
"lon": 11.3886,
"asn": 25276,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Florian Kirstein",
"lat": 48.1409,
"lon": 11.5690998,
"asn": 35003,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Sascha Lenz",
"lat": 48.6078052846305,
"lon": 11.9631279055642,
"asn": 29317,
"customerConeSize": 2
},
{
"country": "DE",
"orgName": "Betriebsgesellschaft Freizeit- und Sportzentrum Halberstadt mbH",
"lat": 51.8917,
"lon": 11.0475,
"asn": 34256,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "Leipziger Messe GmbH",
"lat": 51.3282363042019,
"lon": 12.3419879754657,
"asn": 35065,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "ECG Erdgas-Consult GmbH",
"lat": 51.3532,
"lon": 12.3765001,
"asn": 47877,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "e-complete Hubert Maier",
"lat": 48.2398130805745,
"lon": 13.2370688081694,
"asn": 197047,
"customerConeSize": 1
},
{
"country": "LB",
"orgName": "Capital Outsourcing SAL",
"lat": 33.8861,
"lon": 35.4999001,
"asn": 61113,
"customerConeSize": 1
},
{
"country": "LB",
"orgName": "tasjil art production and distributions S.A.L.",
"lat": 33.8861,
"lon": 35.4998999,
"asn": 197249,
"customerConeSize": 1
},
{
"country": "LB",
"orgName": "FIDUS S.A.L",
"lat": 33.8861,
"lon": 35.4999002,
"asn": 58281,
"customerConeSize": 1
},
{
"country": "LB",
"orgName": "Azal Group Holding SAL",
"lat": 33.8861,
"lon": 35.4998998,
"asn": 39918,
"customerConeSize": 1
},
{
"country": "LB",
"orgName": "BBAC S.A.L.",
"lat": 33.8861,
"lon": 35.4999003,
"asn": 62144,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "Spectrum Online Services LLC",
"lat": 47.0617630562439,
"lon": -119.240527577261,
"asn": 36499,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "FamilyView Cablevision",
"lat": 34.7329292457464,
"lon": -82.7945856004431,
"asn": 54814,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "FUJIFILM Manufacturing USA, Inc",
"lat": 34.1994666824461,
"lon": -82.157499659385,
"asn": 32186,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "NIC.at head office Salzburg",
"lat": 47.9473864699267,
"lon": 14.1478820748729,
"asn": 1921,
"customerConeSize": 1
},
{
"country": "AT",
"orgName": "nic.at GmbH",
"lat": 47.8005,
"lon": 13.0443999,
"asn": 201612,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "Indika Telemedia PT.",
"lat": -6.13638825546239,
"lon": 106.742625709438,
"asn": 23694,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT Dmarket",
"lat": -6.133,
"lon": 106.7499998,
"asn": 58493,
"customerConeSize": 1
},
{
"country": "ID",
"orgName": "PT Arsys Data Intergrasi",
"lat": -6.133,
"lon": 106.7500003,
"asn": 131768,
"customerConeSize": 1
},
{
"country": "AR",
"orgName": "Cooperativa Colonia Caroya",
"lat": -31.3884416993163,
"lon": -63.8615087334163,
"asn": 27940,
"customerConeSize": 1
},
{
"country": "AR",
"orgName": "Colsecor Cooperativa Limitada",
"lat": -32.0760607903112,
"lon": -63.6350066101281,
"asn": 52323,
"customerConeSize": 3
},
{
"country": "AR",
"orgName": "ASOCIACION REGIONAL DE COOPERATIVAS DE SERVICIOS PUBLICOS",
"lat": -32.8828982454885,
"lon": -63.3527789739643,
"asn": 52428,
"customerConeSize": 1
},
{
"country": "UY",
"orgName": "ZONAMERICA",
"lat": -34.8941,
"lon": -56.0674999,
"asn": 14234,
"customerConeSize": 1
},
{
"country": "UY",
"orgName": "Web2mil S.A",
"lat": -34.8941,
"lon": -56.0675001,
"asn": 18667,
"customerConeSize": 1
},
{
"country": "UY",
"orgName": "Lunamen S.A.",
"lat": -34.8941,
"lon": -56.0674998,
"asn": 52241,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "St Luke's Medical Center, Inc",
"lat": 14.65,
"lon": 121.0329999,
"asn": 132862,
"customerConeSize": 1
},
{
"country": "PH",
"orgName": "St Luke's Medical Center, Inc",
"lat": 14.65,
"lon": 121.0330002,
"asn": 133611,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "St. Michael's Hospital",
"lat": 43.6609946058882,
"lon": -79.3818435784279,
"asn": 3411,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "Ontario Telemedicine Network",
"lat": 43.6766,
"lon": -79.4253,
"asn": 26802,
"customerConeSize": 1
},
{
"country": "CA",
"orgName": "eHealth Ontario",
"lat": 43.7391031984256,
"lon": -79.4291505409619,
"asn": 32364,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Po Box 391",
"lat": -33.8697,
"lon": 151.1940001,
"asn": 56225,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Dedicated Servers - Brisbane",
"lat": -28.2231139284147,
"lon": 152.812736958592,
"asn": 24238,
"customerConeSize": 3
},
{
"country": "AU",
"orgName": "Dedicated Servers - Brisbane",
"lat": -29.4413776379972,
"lon": 152.411813793233,
"asn": 17462,
"customerConeSize": 1
},
{
"country": "US",
"orgName": "NeuStar, Inc.",
"lat": 37.8795,
"lon": -122.262,
"asn": 32978,
"customerConeSize": 1
},
{
"country": "JP",
"orgName": "Internet Systems Consortium, Inc.",
"lat": 39.9576,
"lon": 116.3360001,
"asn": 55439,
"customerConeSize": 1
},
{
"country": "KR",
"orgName": "NIDA",
"lat": 37.5632,
"lon": 126.9930005,
"asn": 23596,
"customerConeSize": 1
},
{
"country": "NL",
"orgName": "Redimi AS",
"lat": 54.9273225958692,
"lon": -53.9452502166729,
"asn": 16065,
"customerConeSize": 1
},
{
"country": "DE",
"orgName": "GeFoekoM e.V.",
"lat": 49.8141,
"lon": 9.87785,
"asn": 12817,
"customerConeSize": 1
},
{
"country": "AR",
"orgName": "Cooperativa de Electricidad y Servicios Publicos de Arroyito Ltda",
"lat": -31.4272296484606,
"lon": -63.3326563378317,
"asn": 28093,
"customerConeSize": 1
},
{
"country": "AR",
"orgName": "Coop. Energía Elect. y Otros Servicios Las Varillas",
"lat": -31.7949639303233,
"lon": -62.9487621273461,
"asn": 52271,
"customerConeSize": 1
},
{
"country": "AU",
"orgName": "Interhost Pacific Pty Ltd t/a Intervolve.",
"lat": -32.8948751811927,
"lon": 151.358991501565,
"asn": 132070,
"customerConeSize": 2
},
{
"country": "AU",
"orgName": "Secure Your Domain Pty Ltd",
"lat": -26.7349,
"lon": 153.133,
"asn": 133433,
"customerConeSize": 1
}
],
"relationships": [
{ "src": 10010, "type": "peer", "dst": 15412 },
{ "src": 10010, "type": "customer", "dst": 18278 },
{ "src": 10010, "type": "peer", "dst": 20485 },
{ "src": 10010, "type": "customer", "dst": 23642 },
{ "src": 10010, "type": "customer", "dst": 55387 },
{ "src": 10010, "type": "customer", "dst": 9622 },
{ "src": 10026, "type": "peer", "dst": 10143 },
{ "src": 10026, "type": "peer", "dst": 10223 },
{ "src": 10026, "type": "peer", "dst": 11071 },
{ "src": 10026, "type": "peer", "dst": 11798 },
{ "src": 10026, "type": "customer", "dst": 11911 },
{ "src": 10026, "type": "peer", "dst": 12389 },
{ "src": 10026, "type": "peer", "dst": 12552 },
{ "src": 10026, "type": "peer", "dst": 12578 },
{ "src": 10026, "type": "peer", "dst": 12714 },
{ "src": 10026, "type": "peer", "dst": 12715 },
{ "src": 10026, "type": "peer", "dst": 12874 },
{ "src": 10026, "type": "peer", "dst": 12883 },
{ "src": 10026, "type": "peer", "dst": 12989 },
{ "src": 10026, "type": "peer", "dst": 13030 },
{ "src": 10026, "type": "customer", "dst": 132142 },
{ "src": 10026, "type": "peer", "dst": 13237 },
{ "src": 10026, "type": "peer", "dst": 133165 },
{ "src": 10026, "type": "peer", "dst": 14610 },
{ "src": 10026, "type": "peer", "dst": 15412 },
{ "src": 10026, "type": "peer", "dst": 15547 },
{ "src": 10026, "type": "peer", "dst": 15720 },
{ "src": 10026, "type": "peer", "dst": 15763 },
{ "src": 10026, "type": "peer", "dst": 15772 },
{ "src": 10026, "type": "peer", "dst": 15830 },
{ "src": 10026, "type": "peer", "dst": 16150 },
{ "src": 10026, "type": "peer", "dst": 16265 },
{ "src": 10026, "type": "peer", "dst": 16637 },
{ "src": 10026, "type": "peer", "dst": 16735 },
{ "src": 10026, "type": "peer", "dst": 16839 },
{ "src": 10026, "type": "peer", "dst": 17557 },
{ "src": 10026, "type": "customer", "dst": 17812 },
{ "src": 10026, "type": "peer", "dst": 18065 },
{ "src": 10026, "type": "peer", "dst": 18192 },
{ "src": 10026, "type": "peer", "dst": 18221 },
{ "src": 10026, "type": "customer", "dst": 18816 },
{ "src": 10026, "type": "peer", "dst": 19151 },
{ "src": 10026, "type": "customer", "dst": 1921 },
{ "src": 10026, "type": "peer", "dst": 196844 },
{ "src": 10026, "type": "peer", "dst": 197426 },
{ "src": 10026, "type": "peer", "dst": 197985 },
{ "src": 10026, "type": "customer", "dst": 19807 },
{ "src": 10026, "type": "customer", "dst": 19809 },
{ "src": 10026, "type": "peer", "dst": 20485 },
{ "src": 10026, "type": "peer", "dst": 20562 },
{ "src": 10026, "type": "peer", "dst": 20764 },
{ "src": 10026, "type": "peer", "dst": 20804 },
{ "src": 10026, "type": "customer", "dst": 20940 },
{ "src": 10026, "type": "peer", "dst": 21011 },
{ "src": 10026, "type": "peer", "dst": 21219 },
{ "src": 10026, "type": "peer", "dst": 22489 },
{ "src": 10026, "type": "peer", "dst": 22773 },
{ "src": 10026, "type": "peer", "dst": 22822 },
{ "src": 10026, "type": "peer", "dst": 23197 },
{ "src": 10026, "type": "customer", "dst": 23944 },
{ "src": 10026, "type": "customer", "dst": 24182 },
{ "src": 10026, "type": "customer", "dst": 24327 },
{ "src": 10026, "type": "customer", "dst": 24637 },
{ "src": 10026, "type": "peer", "dst": 24724 },
{ "src": 10026, "type": "peer", "dst": 24940 },
{ "src": 10026, "type": "peer", "dst": 24961 },
{ "src": 10026, "type": "customer", "dst": 27471 },
{ "src": 10026, "type": "peer", "dst": 28283 },
{ "src": 10026, "type": "peer", "dst": 28917 },
{ "src": 10026, "type": "peer", "dst": 29076 },
{ "src": 10026, "type": "peer", "dst": 29119 },
{ "src": 10026, "type": "peer", "dst": 29791 },
{ "src": 10026, "type": "customer", "dst": 29990 },
{ "src": 10026, "type": "peer", "dst": 30419 },
{ "src": 10026, "type": "peer", "dst": 31042 },
{ "src": 10026, "type": "peer", "dst": 31133 },
{ "src": 10026, "type": "peer", "dst": 31500 },
{ "src": 10026, "type": "customer", "dst": 33047 },
{ "src": 10026, "type": "peer", "dst": 33891 },
{ "src": 10026, "type": "peer", "dst": 33986 },
{ "src": 10026, "type": "peer", "dst": 34224 },
{ "src": 10026, "type": "peer", "dst": 34968 },
{ "src": 10026, "type": "customer", "dst": 36236 },
{ "src": 10026, "type": "peer", "dst": 36408 },
{ "src": 10026, "type": "peer", "dst": 36692 },
{ "src": 10026, "type": "customer", "dst": 3762 },
{ "src": 10026, "type": "customer", "dst": 37991 },
{ "src": 10026, "type": "peer", "dst": 38285 },
{ "src": 10026, "type": "peer", "dst": 38809 },
{ "src": 10026, "type": "peer", "dst": 38880 },
{ "src": 10026, "type": "peer", "dst": 39792 },
{ "src": 10026, "type": "peer", "dst": 39912 },
{ "src": 10026, "type": "peer", "dst": 39923 },
{ "src": 10026, "type": "peer", "dst": 40627 },
{ "src": 10026, "type": "peer", "dst": 41090 },
{ "src": 10026, "type": "peer", "dst": 41313 },
{ "src": 10026, "type": "peer", "dst": 42184 },
{ "src": 10026, "type": "customer", "dst": 42473 },
{ "src": 10026, "type": "peer", "dst": 44654 },
{ "src": 10026, "type": "peer", "dst": 44824 },
{ "src": 10026, "type": "peer", "dst": 44953 },
{ "src": 10026, "type": "customer", "dst": 45166 },
{ "src": 10026, "type": "peer", "dst": 45177 },
{ "src": 10026, "type": "peer", "dst": 45425 },
{ "src": 10026, "type": "customer", "dst": 45432 },
{ "src": 10026, "type": "peer", "dst": 45896 },
{ "src": 10026, "type": "customer", "dst": 4589 },
{ "src": 10026, "type": "peer", "dst": 47622 },
{ "src": 10026, "type": "peer", "dst": 47872 },
{ "src": 10026, "type": "customer", "dst": 4809 },
{ "src": 10026, "type": "peer", "dst": 50384 },
{ "src": 10026, "type": "peer", "dst": 50923 },
{ "src": 10026, "type": "peer", "dst": 53276 },
{ "src": 10026, "type": "peer", "dst": 53340 },
{ "src": 10026, "type": "customer", "dst": 55854 },
{ "src": 10026, "type": "peer", "dst": 56038 },
{ "src": 10026, "type": "peer", "dst": 56308 },
{ "src": 10026, "type": "peer", "dst": 57463 },
{ "src": 10026, "type": "customer", "dst": 57567 },
{ "src": 10026, "type": "peer", "dst": 58453 },
{ "src": 10026, "type": "customer", "dst": 58779 },
{ "src": 10026, "type": "customer", "dst": 59253 },
{ "src": 10026, "type": "peer", "dst": 59560 },
{ "src": 10026, "type": "peer", "dst": 60725 },
{ "src": 10026, "type": "customer", "dst": 6648 },
{ "src": 10026, "type": "customer", "dst": 7497 },
{ "src": 10026, "type": "customer", "dst": 7568 },
{ "src": 10026, "type": "customer", "dst": 7575 },
{ "src": 10026, "type": "customer", "dst": 7754 },
{ "src": 10026, "type": "customer", "dst": 7862 },
{ "src": 10026, "type": "customer", "dst": 8928 },
{ "src": 10026, "type": "customer", "dst": 9244 },
{ "src": 10026, "type": "customer", "dst": 9304 },
{ "src": 10026, "type": "customer", "dst": 9443 },
{ "src": 10026, "type": "customer", "dst": 9583 },
{ "src": 10026, "type": "customer", "dst": 9584 },
{ "src": 10029, "type": "customer", "dst": 132990 },
{ "src": 10029, "type": "customer", "dst": 133292 },
{ "src": 10029, "type": "customer", "dst": 55526 },
{ "src": 10105, "type": "peer", "dst": 38809 },
{ "src": 10113, "type": "customer", "dst": 18065 },
{ "src": 10113, "type": "customer", "dst": 56105 },
{ "src": 10143, "type": "customer", "dst": 131182 },
{ "src": 10143, "type": "customer", "dst": 133175 },
{ "src": 10143, "type": "peer", "dst": 38809 },
{ "src": 10143, "type": "customer", "dst": 56038 },
{ "src": 101, "type": "customer", "dst": 10430 },
{ "src": 101, "type": "peer", "dst": 12989 },
{ "src": 101, "type": "customer", "dst": 15307 },
{ "src": 101, "type": "customer", "dst": 17200 },
{ "src": 101, "type": "customer", "dst": 3401 },
{ "src": 101, "type": "peer", "dst": 3491 },
{ "src": 101, "type": "peer", "dst": 7575 },
{ "src": 101, "type": "peer", "dst": 852 },
{ "src": 10201, "type": "customer", "dst": 10029 },
{ "src": 10201, "type": "peer", "dst": 45760 },
{ "src": 10201, "type": "customer", "dst": 45850 },
{ "src": 10201, "type": "customer", "dst": 56272 },
{ "src": 10201, "type": "customer", "dst": 9796 },
{ "src": 10223, "type": "customer", "dst": 17812 },
{ "src": 10223, "type": "customer", "dst": 24316 },
{ "src": 10223, "type": "customer", "dst": 24480 },
{ "src": 10223, "type": "peer", "dst": 38809 },
{ "src": 10223, "type": "customer", "dst": 45803 },
{ "src": 10223, "type": "customer", "dst": 9243 },
{ "src": 10430, "type": "customer", "dst": 15199 },
{ "src": 10430, "type": "customer", "dst": 30075 },
{ "src": 10430, "type": "customer", "dst": 3935 },
{ "src": 10474, "type": "peer", "dst": 13237 },
{ "src": 10474, "type": "customer", "dst": 16637 },
{ "src": 10474, "type": "peer", "dst": 19151 },
{ "src": 10474, "type": "peer", "dst": 20485 },
{ "src": 10474, "type": "peer", "dst": 31133 },
{ "src": 10474, "type": "peer", "dst": 33891 },
{ "src": 10474, "type": "customer", "dst": 36994 },
{ "src": 10474, "type": "customer", "dst": 37179 },
{ "src": 10474, "type": "customer", "dst": 37225 },
{ "src": 10474, "type": "customer", "dst": 37315 },
{ "src": 10474, "type": "customer", "dst": 3741 },
{ "src": 10474, "type": "customer", "dst": 37549 },
{ "src": 10474, "type": "customer", "dst": 37634 },
{ "src": 10474, "type": "customer", "dst": 37658 },
{ "src": 10474, "type": "customer", "dst": 37680 },
{ "src": 10474, "type": "customer", "dst": 42 },
{ "src": 10474, "type": "customer", "dst": 5713 },
{ "src": 10474, "type": "customer", "dst": 57731 },
{ "src": 10474, "type": "customer", "dst": 8674 },
{ "src": 10583, "type": "customer", "dst": 23119 },
{ "src": 10583, "type": "customer", "dst": 47072 },
{ "src": 10753, "type": "customer", "dst": 19345 },
{ "src": 10753, "type": "customer", "dst": 1 },
{ "src": 10753, "type": "customer", "dst": 39060 },
{ "src": 10796, "type": "customer", "dst": 13776 },
{ "src": 10796, "type": "customer", "dst": 14230 },
{ "src": 10796, "type": "customer", "dst": 15081 },
{ "src": 10796, "type": "peer", "dst": 17054 },
{ "src": 10796, "type": "customer", "dst": 25787 },
{ "src": 10796, "type": "customer", "dst": 25943 },
{ "src": 10796, "type": "customer", "dst": 26818 },
{ "src": 10796, "type": "customer", "dst": 30023 },
{ "src": 10796, "type": "customer", "dst": 30152 },
{ "src": 10796, "type": "customer", "dst": 30587 },
{ "src": 10796, "type": "customer", "dst": 32497 },
{ "src": 10796, "type": "customer", "dst": 32976 },
{ "src": 10796, "type": "customer", "dst": 33167 },
{ "src": 10796, "type": "customer", "dst": 33629 },
{ "src": 10796, "type": "customer", "dst": 40715 },
{ "src": 10796, "type": "customer", "dst": 46925 },
{ "src": 10796, "type": "customer", "dst": 53421 },
{ "src": 10835, "type": "customer", "dst": 16851 },
{ "src": 10835, "type": "customer", "dst": 23546 },
{ "src": 10835, "type": "customer", "dst": 29989 },
{ "src": 10835, "type": "customer", "dst": 46847 },
{ "src": 10913, "type": "customer", "dst": 13792 },
{ "src": 10913, "type": "customer", "dst": 17231 },
{ "src": 10913, "type": "customer", "dst": 18608 },
{ "src": 10913, "type": "customer", "dst": 40889 },
{ "src": 10913, "type": "customer", "dst": 5054 },
{ "src": 10913, "type": "customer", "dst": 54876 },
{ "src": 10913, "type": "customer", "dst": 558 },
{ "src": 11071, "type": "peer", "dst": 12989 },
{ "src": 11071, "type": "customer", "dst": 36143 },
{ "src": 11071, "type": "customer", "dst": 393299 },
{ "src": 11071, "type": "customer", "dst": 40603 },
{ "src": 112, "type": "peer", "dst": 10026 },
{ "src": 112, "type": "peer", "dst": 12989 },
{ "src": 112, "type": "peer", "dst": 13030 },
{ "src": 112, "type": "peer", "dst": 13237 },
{ "src": 112, "type": "peer", "dst": 1764 },
{ "src": 112, "type": "peer", "dst": 20485 },
{ "src": 112, "type": "peer", "dst": 20562 },
{ "src": 112, "type": "peer", "dst": 28917 },
{ "src": 112, "type": "peer", "dst": 31133 },
{ "src": 112, "type": "peer", "dst": 3267 },
{ "src": 112, "type": "peer", "dst": 3292 },
{ "src": 112, "type": "peer", "dst": 39792 },
{ "src": 112, "type": "peer", "dst": 39912 },
{ "src": 112, "type": "peer", "dst": 44953 },
{ "src": 112, "type": "peer", "dst": 4589 },
{ "src": 112, "type": "peer", "dst": 50384 },
{ "src": 112, "type": "peer", "dst": 5580 },
{ "src": 112, "type": "peer", "dst": 7575 },
{ "src": 112, "type": "peer", "dst": 8359 },
{ "src": 112, "type": "peer", "dst": 8657 },
{ "src": 112, "type": "peer", "dst": 9002 },
{ "src": 112, "type": "peer", "dst": 9304 },
{ "src": 11404, "type": "customer", "dst": 10835 },
{ "src": 11404, "type": "peer", "dst": 11798 },
{ "src": 11404, "type": "peer", "dst": 11986 },
{ "src": 11404, "type": "peer", "dst": 12989 },
{ "src": 11404, "type": "peer", "dst": 13649 },
{ "src": 11404, "type": "peer", "dst": 13692 },
{ "src": 11404, "type": "peer", "dst": 16265 },
{ "src": 11404, "type": "customer", "dst": 19528 },
{ "src": 11404, "type": "customer", "dst": 22105 },
{ "src": 11404, "type": "customer", "dst": 23511 },
{ "src": 11404, "type": "customer", "dst": 25899 },
{ "src": 11404, "type": "customer", "dst": 30075 },
{ "src": 11404, "type": "customer", "dst": 36222 },
{ "src": 11404, "type": "customer", "dst": 36236 },
{ "src": 11404, "type": "peer", "dst": 36408 },
{ "src": 11404, "type": "customer", "dst": 36715 },
{ "src": 11404, "type": "customer", "dst": 55264 },
{ "src": 11404, "type": "customer", "dst": 63297 },
{ "src": 11404, "type": "peer", "dst": 7713 },
{ "src": 11404, "type": "peer", "dst": 9498 },
{ "src": 11432, "type": "peer", "dst": 262394 },
{ "src": 11432, "type": "peer", "dst": 262750 },
{ "src": 11432, "type": "customer", "dst": 263491 },
{ "src": 11432, "type": "customer", "dst": 28165 },
{ "src": 11432, "type": "peer", "dst": 28303 },
{ "src": 11432, "type": "customer", "dst": 53208 },
{ "src": 11432, "type": "peer", "dst": 53237 },
{ "src": 11643, "type": "customer", "dst": 17012 },
{ "src": 11664, "type": "customer", "dst": 20002 },
{ "src": 11664, "type": "customer", "dst": 262150 },
{ "src": 11664, "type": "customer", "dst": 27739 },
{ "src": 11664, "type": "customer", "dst": 27754 },
{ "src": 11664, "type": "customer", "dst": 52415 },
{ "src": 11686, "type": "peer", "dst": 12989 },
{ "src": 11686, "type": "peer", "dst": 15085 },
{ "src": 11686, "type": "peer", "dst": 19528 },
{ "src": 11686, "type": "peer", "dst": 20940 },
{ "src": 11686, "type": "peer", "dst": 22773 },
{ "src": 11686, "type": "peer", "dst": 22822 },
{ "src": 11686, "type": "customer", "dst": 30257 },
{ "src": 11686, "type": "peer", "dst": 36408 },
{ "src": 11686, "type": "peer", "dst": 44654 },
{ "src": 11686, "type": "customer", "dst": 54725 },
{ "src": 11686, "type": "customer", "dst": 6203 },
{ "src": 11711, "type": "customer", "dst": 20357 },
{ "src": 11711, "type": "customer", "dst": 40198 },
{ "src": 11713, "type": "customer", "dst": 32622 },
{ "src": 11713, "type": "customer", "dst": 35879 },
{ "src": 11798, "type": "customer", "dst": 11247 },
{ "src": 11798, "type": "peer", "dst": 12989 },
{ "src": 11798, "type": "customer", "dst": 14207 },
{ "src": 11798, "type": "peer", "dst": 19151 },
{ "src": 11798, "type": "customer", "dst": 32743 },
{ "src": 11817, "type": "customer", "dst": 13400 },
{ "src": 11817, "type": "customer", "dst": 23227 },
{ "src": 11835, "type": "customer", "dst": 14457 },
{ "src": 11835, "type": "peer", "dst": 14840 },
{ "src": 11835, "type": "peer", "dst": 18881 },
{ "src": 11835, "type": "customer", "dst": 262290 },
{ "src": 11835, "type": "peer", "dst": 262394 },
{ "src": 11835, "type": "peer", "dst": 262750 },
{ "src": 11835, "type": "customer", "dst": 263616 },
{ "src": 11835, "type": "customer", "dst": 28145 },
{ "src": 11835, "type": "peer", "dst": 28329 },
{ "src": 11835, "type": "customer", "dst": 28359 },
{ "src": 11835, "type": "customer", "dst": 28621 },
{ "src": 11835, "type": "customer", "dst": 52616 },
{ "src": 11835, "type": "customer", "dst": 52724 },
{ "src": 11835, "type": "customer", "dst": 52817 },
{ "src": 11835, "type": "peer", "dst": 53237 },
{ "src": 11835, "type": "customer", "dst": 61725 },
{ "src": 11835, "type": "customer", "dst": 61872 },
{ "src": 11835, "type": "customer", "dst": 61910 },
{ "src": 11911, "type": "peer", "dst": 20485 },
{ "src": 11986, "type": "customer", "dst": 13377 },
{ "src": 11986, "type": "customer", "dst": 23408 },
{ "src": 11986, "type": "customer", "dst": 6296 },
{ "src": 12025, "type": "customer", "dst": 10753 },
{ "src": 12025, "type": "customer", "dst": 20019 },
{ "src": 12025, "type": "customer", "dst": 46527 },
{ "src": 12025, "type": "customer", "dst": 4927 },
{ "src": 12025, "type": "customer", "dst": 54013 },
{ "src": 12042, "type": "customer", "dst": 12112 },
{ "src": 12042, "type": "customer", "dst": 17195 },
{ "src": 12042, "type": "customer", "dst": 19284 },
{ "src": 12042, "type": "peer", "dst": 20115 },
{ "src": 12042, "type": "customer", "dst": 40238 },
{ "src": 12042, "type": "customer", "dst": 62800 },
{ "src": 12112, "type": "customer", "dst": 17195 },
{ "src": 12112, "type": "customer", "dst": 19284 },
{ "src": 12112, "type": "customer", "dst": 36784 },
{ "src": 12112, "type": "customer", "dst": 40238 },
{ "src": 12112, "type": "customer", "dst": 46925 },
{ "src": 12129, "type": "peer", "dst": 16735 },
{ "src": 12129, "type": "customer", "dst": 17143 },
{ "src": 12129, "type": "peer", "dst": 19151 },
{ "src": 12129, "type": "customer", "dst": 30242 },
{ "src": 12129, "type": "peer", "dst": 36280 },
{ "src": 12129, "type": "customer", "dst": 40785 },
{ "src": 12129, "type": "customer", "dst": 46925 },
{ "src": 12129, "type": "customer", "dst": 62588 },
{ "src": 12129, "type": "customer", "dst": 8180 },
{ "src": 12148, "type": "customer", "dst": 47065 },
{ "src": 12178, "type": "customer", "dst": 13792 },
{ "src": 12178, "type": "customer", "dst": 14039 },
{ "src": 12178, "type": "customer", "dst": 17378 },
{ "src": 12178, "type": "customer", "dst": 33257 },
{ "src": 12179, "type": "customer", "dst": 13791 },
{ "src": 12179, "type": "customer", "dst": 13792 },
{ "src": 12179, "type": "customer", "dst": 14012 },
{ "src": 12179, "type": "customer", "dst": 20021 },
{ "src": 12179, "type": "customer", "dst": 29791 },
{ "src": 12179, "type": "customer", "dst": 32312 },
{ "src": 12179, "type": "customer", "dst": 32592 },
{ "src": 12179, "type": "customer", "dst": 36488 },
{ "src": 12179, "type": "customer", "dst": 8038 },
{ "src": 12182, "type": "customer", "dst": 14743 },
{ "src": 12182, "type": "customer", "dst": 22771 },
{ "src": 12182, "type": "customer", "dst": 25974 },
{ "src": 12182, "type": "customer", "dst": 29791 },
{ "src": 12182, "type": "customer", "dst": 40791 },
{ "src": 12188, "type": "customer", "dst": 16729 },
{ "src": 12188, "type": "customer", "dst": 26567 },
{ "src": 12188, "type": "customer", "dst": 33326 },
{ "src": 12188, "type": "customer", "dst": 36031 },
{ "src": 1221, "type": "peer", "dst": 10026 },
{ "src": 1221, "type": "customer", "dst": 10105 },
{ "src": 1221, "type": "customer", "dst": 10143 },
{ "src": 1221, "type": "customer", "dst": 10221 },
{ "src": 1221, "type": "customer", "dst": 133175 },
{ "src": 1221, "type": "customer", "dst": 133538 },
{ "src": 1221, "type": "customer", "dst": 1421 },
{ "src": 1221, "type": "customer", "dst": 16625 },
{ "src": 1221, "type": "peer", "dst": 16839 },
{ "src": 1221, "type": "customer", "dst": 18192 },
{ "src": 1221, "type": "customer", "dst": 18385 },
{ "src": 1221, "type": "customer", "dst": 23197 },
{ "src": 1221, "type": "customer", "dst": 24316 },
{ "src": 1221, "type": "peer", "dst": 2687 },
{ "src": 1221, "type": "peer", "dst": 3549 },
{ "src": 1221, "type": "customer", "dst": 36408 },
{ "src": 1221, "type": "customer", "dst": 38285 },
{ "src": 1221, "type": "peer", "dst": 38809 },
{ "src": 1221, "type": "customer", "dst": 42473 },
{ "src": 1221, "type": "customer", "dst": 45875 },
{ "src": 1221, "type": "peer", "dst": 4809 },
{ "src": 1221, "type": "peer", "dst": 7474 },
{ "src": 1221, "type": "peer", "dst": 7575 },
{ "src": 1221, "type": "customer", "dst": 9443 },
{ "src": 12251, "type": "customer", "dst": 19862 },
{ "src": 12297, "type": "customer", "dst": 197497 },
{ "src": 12297, "type": "customer", "dst": 47623 },
{ "src": 12297, "type": "customer", "dst": 60548 },
{ "src": 12302, "type": "customer", "dst": 31278 },
{ "src": 12302, "type": "customer", "dst": 43283 },
{ "src": 12302, "type": "customer", "dst": 47263 },
{ "src": 12302, "type": "customer", "dst": 50945 },
{ "src": 12302, "type": "customer", "dst": 62127 },
{ "src": 12389, "type": "customer", "dst": 12418 },
{ "src": 12389, "type": "customer", "dst": 12578 },
{ "src": 12389, "type": "customer", "dst": 12695 },
{ "src": 12389, "type": "customer", "dst": 12714 },
{ "src": 12389, "type": "customer", "dst": 12772 },
{ "src": 12389, "type": "customer", "dst": 12883 },
{ "src": 12389, "type": "peer", "dst": 12989 },
{ "src": 12389, "type": "peer", "dst": 13030 },
{ "src": 12389, "type": "peer", "dst": 13237 },
{ "src": 12389, "type": "peer", "dst": 15412 },
{ "src": 12389, "type": "peer", "dst": 16150 },
{ "src": 12389, "type": "peer", "dst": 17557 },
{ "src": 12389, "type": "customer", "dst": 196768 },
{ "src": 12389, "type": "customer", "dst": 197756 },
{ "src": 12389, "type": "customer", "dst": 201776 },
{ "src": 12389, "type": "customer", "dst": 201820 },
{ "src": 12389, "type": "peer", "dst": 20632 },
{ "src": 12389, "type": "customer", "dst": 21453 },
{ "src": 12389, "type": "peer", "dst": 22822 },
{ "src": 12389, "type": "customer", "dst": 25408 },
{ "src": 12389, "type": "customer", "dst": 2878 },
{ "src": 12389, "type": "customer", "dst": 28910 },
{ "src": 12389, "type": "customer", "dst": 28927 },
{ "src": 12389, "type": "customer", "dst": 29049 },
{ "src": 12389, "type": "customer", "dst": 29648 },
{ "src": 12389, "type": "peer", "dst": 31133 },
{ "src": 12389, "type": "customer", "dst": 3312 },
{ "src": 12389, "type": "customer", "dst": 34898 },
{ "src": 12389, "type": "customer", "dst": 35022 },
{ "src": 12389, "type": "customer", "dst": 35104 },
{ "src": 12389, "type": "customer", "dst": 35400 },
{ "src": 12389, "type": "customer", "dst": 39264 },
{ "src": 12389, "type": "customer", "dst": 39350 },
{ "src": 12389, "type": "peer", "dst": 39792 },
{ "src": 12389, "type": "peer", "dst": 39912 },
{ "src": 12389, "type": "customer", "dst": 41938 },
{ "src": 12389, "type": "customer", "dst": 49347 },
{ "src": 12389, "type": "customer", "dst": 49578 },
{ "src": 12389, "type": "customer", "dst": 51008 },
{ "src": 12389, "type": "customer", "dst": 5537 },
{ "src": 12389, "type": "customer", "dst": 5563 },
{ "src": 12389, "type": "customer", "dst": 56342 },
{ "src": 12389, "type": "customer", "dst": 56802 },
{ "src": 12389, "type": "customer", "dst": 57489 },
{ "src": 12389, "type": "customer", "dst": 57573 },
{ "src": 12389, "type": "customer", "dst": 59561 },
{ "src": 12389, "type": "customer", "dst": 59672 },
{ "src": 12389, "type": "customer", "dst": 60098 },
{ "src": 12389, "type": "customer", "dst": 60347 },
{ "src": 12389, "type": "customer", "dst": 61382 },
{ "src": 12389, "type": "customer", "dst": 6697 },
{ "src": 12389, "type": "customer", "dst": 6869 },
{ "src": 12389, "type": "customer", "dst": 8249 },
{ "src": 12389, "type": "customer", "dst": 8470 },
{ "src": 12389, "type": "customer", "dst": 8641 },
{ "src": 12389, "type": "customer", "dst": 9049 },
{ "src": 12389, "type": "customer", "dst": 9198 },
{ "src": 12406, "type": "customer", "dst": 31345 },
{ "src": 12406, "type": "customer", "dst": 49711 },
{ "src": 12406, "type": "customer", "dst": 56742 },
{ "src": 12418, "type": "peer", "dst": 28917 },
{ "src": 12418, "type": "customer", "dst": 48890 },
{ "src": 12418, "type": "customer", "dst": 50787 },
{ "src": 12418, "type": "customer", "dst": 57767 },
{ "src": 12491, "type": "customer", "dst": 32842 },
{ "src": 12491, "type": "customer", "dst": 33786 },
{ "src": 12491, "type": "customer", "dst": 37012 },
{ "src": 12491, "type": "customer", "dst": 37043 },
{ "src": 12530, "type": "customer", "dst": 30735 },
{ "src": 12530, "type": "customer", "dst": 48243 },
{ "src": 12530, "type": "customer", "dst": 49710 },
{ "src": 12530, "type": "customer", "dst": 5531 },
{ "src": 12552, "type": "peer", "dst": 12874 },
{ "src": 12552, "type": "peer", "dst": 13030 },
{ "src": 12552, "type": "peer", "dst": 13237 },
{ "src": 12552, "type": "customer", "dst": 16150 },
{ "src": 12552, "type": "peer", "dst": 19151 },
{ "src": 12552, "type": "customer", "dst": 197308 },
{ "src": 12552, "type": "customer", "dst": 199564 },
{ "src": 12552, "type": "peer", "dst": 20562 },
{ "src": 12552, "type": "peer", "dst": 20764 },
{ "src": 12552, "type": "peer", "dst": 28917 },
{ "src": 12552, "type": "peer", "dst": 31133 },
{ "src": 12552, "type": "peer", "dst": 33891 },
{ "src": 12552, "type": "peer", "dst": 39792 },
{ "src": 12552, "type": "customer", "dst": 42303 },
{ "src": 12552, "type": "customer", "dst": 44136 },
{ "src": 12552, "type": "peer", "dst": 50384 },
{ "src": 12552, "type": "customer", "dst": 51815 },
{ "src": 12552, "type": "customer", "dst": 62254 },
{ "src": 12552, "type": "peer", "dst": 8220 },
{ "src": 12570, "type": "customer", "dst": 197798 },
{ "src": 12570, "type": "peer", "dst": 20485 },
{ "src": 12570, "type": "customer", "dst": 25192 },
{ "src": 12570, "type": "customer", "dst": 56566 },
{ "src": 12576, "type": "peer", "dst": 13237 },
{ "src": 12576, "type": "peer", "dst": 19151 },
{ "src": 12576, "type": "peer", "dst": 20485 },
{ "src": 12576, "type": "peer", "dst": 31133 },
{ "src": 12576, "type": "peer", "dst": 33891 },
{ "src": 12578, "type": "peer", "dst": 12989 },
{ "src": 12578, "type": "peer", "dst": 13030 },
{ "src": 12578, "type": "peer", "dst": 13237 },
{ "src": 12578, "type": "customer", "dst": 15440 },
{ "src": 12578, "type": "peer", "dst": 19151 },
{ "src": 12578, "type": "customer", "dst": 198116 },
{ "src": 12578, "type": "peer", "dst": 20485 },
{ "src": 12578, "type": "peer", "dst": 20562 },
{ "src": 12578, "type": "peer", "dst": 20632 },
{ "src": 12578, "type": "peer", "dst": 20764 },
{ "src": 12578, "type": "peer", "dst": 20965 },
{ "src": 12578, "type": "customer", "dst": 21420 },
{ "src": 12578, "type": "peer", "dst": 28917 },
{ "src": 12578, "type": "peer", "dst": 29076 },
{ "src": 12578, "type": "peer", "dst": 33891 },
{ "src": 12578, "type": "peer", "dst": 39792 },
{ "src": 12578, "type": "peer", "dst": 39912 },
{ "src": 12578, "type": "customer", "dst": 42549 },
{ "src": 12578, "type": "customer", "dst": 43482 },
{ "src": 12578, "type": "peer", "dst": 44953 },
{ "src": 12578, "type": "customer", "dst": 6697 },
{ "src": 12578, "type": "customer", "dst": 8764 },
{ "src": 1257, "type": "peer", "dst": 12552 },
{ "src": 1257, "type": "peer", "dst": 1273 },
{ "src": 1257, "type": "peer", "dst": 13030 },
{ "src": 1257, "type": "customer", "dst": 13127 },
{ "src": 1257, "type": "peer", "dst": 15412 },
{ "src": 1257, "type": "peer", "dst": 1764 },
{ "src": 1257, "type": "peer", "dst": 1853 },
{ "src": 1257, "type": "peer", "dst": 19151 },
{ "src": 1257, "type": "customer", "dst": 198513 },
{ "src": 1257, "type": "peer", "dst": 20764 },
{ "src": 1257, "type": "peer", "dst": 20940 },
{ "src": 1257, "type": "peer", "dst": 22773 },
{ "src": 1257, "type": "peer", "dst": 24607 },
{ "src": 1257, "type": "peer", "dst": 2516 },
{ "src": 1257, "type": "peer", "dst": 2686 },
{ "src": 1257, "type": "peer", "dst": 31133 },
{ "src": 1257, "type": "peer", "dst": 3292 },
{ "src": 1257, "type": "peer", "dst": 3303 },
{ "src": 1257, "type": "peer", "dst": 3320 },
{ "src": 1257, "type": "peer", "dst": 3356 },
{ "src": 1257, "type": "peer", "dst": 33891 },
{ "src": 1257, "type": "peer", "dst": 3491 },
{ "src": 1257, "type": "peer", "dst": 3549 },
{ "src": 1257, "type": "customer", "dst": 39731 },
{ "src": 1257, "type": "peer", "dst": 41164 },
{ "src": 1257, "type": "peer", "dst": 4134 },
{ "src": 1257, "type": "customer", "dst": 42499 },
{ "src": 1257, "type": "peer", "dst": 4323 },
{ "src": 1257, "type": "customer", "dst": 44136 },
{ "src": 1257, "type": "peer", "dst": 4637 },
{ "src": 1257, "type": "peer", "dst": 4788 },
{ "src": 1257, "type": "peer", "dst": 5580 },
{ "src": 1257, "type": "customer", "dst": 57777 },
{ "src": 1257, "type": "peer", "dst": 6128 },
{ "src": 1257, "type": "customer", "dst": 62116 },
{ "src": 1257, "type": "peer", "dst": 6453 },
{ "src": 1257, "type": "peer", "dst": 6774 },
{ "src": 1257, "type": "peer", "dst": 6830 },
{ "src": 1257, "type": "peer", "dst": 7385 },
{ "src": 1257, "type": "peer", "dst": 7473 },
{ "src": 1257, "type": "peer", "dst": 7713 },
{ "src": 1257, "type": "peer", "dst": 7843 },
{ "src": 1257, "type": "peer", "dst": 7922 },
{ "src": 1257, "type": "peer", "dst": 8220 },
{ "src": 1257, "type": "customer", "dst": 8437 },
{ "src": 1257, "type": "customer", "dst": 8674 },
{ "src": 1257, "type": "peer", "dst": 8928 },
{ "src": 12617, "type": "customer", "dst": 41474 },
{ "src": 12617, "type": "customer", "dst": 51251 },
{ "src": 12617, "type": "customer", "dst": 61253 },
{ "src": 12657, "type": "customer", "dst": 29317 },
{ "src": 12657, "type": "customer", "dst": 35003 },
{ "src": 1267, "type": "peer", "dst": 10026 },
{ "src": 1267, "type": "peer", "dst": 10474 },
{ "src": 1267, "type": "peer", "dst": 12389 },
{ "src": 1267, "type": "peer", "dst": 12552 },
{ "src": 1267, "type": "peer", "dst": 12576 },
{ "src": 1267, "type": "peer", "dst": 12578 },
{ "src": 1267, "type": "peer", "dst": 12695 },
{ "src": 1267, "type": "customer", "dst": 12709 },
{ "src": 1267, "type": "peer", "dst": 12714 },
{ "src": 1267, "type": "peer", "dst": 12715 },
{ "src": 1267, "type": "peer", "dst": 12874 },
{ "src": 1267, "type": "peer", "dst": 12883 },
{ "src": 1267, "type": "peer", "dst": 12989 },
{ "src": 1267, "type": "peer", "dst": 13030 },
{ "src": 1267, "type": "peer", "dst": 13127 },
{ "src": 1267, "type": "peer", "dst": 13237 },
{ "src": 1267, "type": "peer", "dst": 13249 },
{ "src": 1267, "type": "peer", "dst": 14610 },
{ "src": 1267, "type": "peer", "dst": 15763 },
{ "src": 1267, "type": "peer", "dst": 15772 },
{ "src": 1267, "type": "peer", "dst": 15830 },
{ "src": 1267, "type": "peer", "dst": 15895 },
{ "src": 1267, "type": "peer", "dst": 15933 },
{ "src": 1267, "type": "peer", "dst": 16150 },
{ "src": 1267, "type": "peer", "dst": 16178 },
{ "src": 1267, "type": "peer", "dst": 16265 },
{ "src": 1267, "type": "peer", "dst": 16637 },
{ "src": 1267, "type": "peer", "dst": 17557 },
{ "src": 1267, "type": "peer", "dst": 1764 },
{ "src": 1267, "type": "peer", "dst": 19151 },
{ "src": 1267, "type": "peer", "dst": 196844 },
{ "src": 1267, "type": "peer", "dst": 197426 },
{ "src": 1267, "type": "peer", "dst": 198126 },
{ "src": 1267, "type": "customer", "dst": 198898 },
{ "src": 1267, "type": "peer", "dst": 20485 },
{ "src": 1267, "type": "peer", "dst": 20562 },
{ "src": 1267, "type": "peer", "dst": 20633 },
{ "src": 1267, "type": "peer", "dst": 20681 },
{ "src": 1267, "type": "peer", "dst": 20764 },
{ "src": 1267, "type": "peer", "dst": 20804 },
{ "src": 1267, "type": "peer", "dst": 20940 },
{ "src": 1267, "type": "peer", "dst": 21011 },
{ "src": 1267, "type": "peer", "dst": 21013 },
{ "src": 1267, "type": "customer", "dst": 21014 },
{ "src": 1267, "type": "peer", "dst": 21219 },
{ "src": 1267, "type": "peer", "dst": 21309 },
{ "src": 1267, "type": "peer", "dst": 22822 },
{ "src": 1267, "type": "peer", "dst": 24637 },
{ "src": 1267, "type": "peer", "dst": 24724 },
{ "src": 1267, "type": "customer", "dst": 24805 },
{ "src": 1267, "type": "peer", "dst": 24940 },
{ "src": 1267, "type": "peer", "dst": 24961 },
{ "src": 1267, "type": "peer", "dst": 25394 },
{ "src": 1267, "type": "peer", "dst": 2686 },
{ "src": 1267, "type": "peer", "dst": 28283 },
{ "src": 1267, "type": "peer", "dst": 2854 },
{ "src": 1267, "type": "peer", "dst": 2856 },
{ "src": 1267, "type": "peer", "dst": 28917 },
{ "src": 1267, "type": "peer", "dst": 29049 },
{ "src": 1267, "type": "peer", "dst": 29076 },
{ "src": 1267, "type": "peer", "dst": 29119 },
{ "src": 1267, "type": "peer", "dst": 29226 },
{ "src": 1267, "type": "peer", "dst": 29632 },
{ "src": 1267, "type": "peer", "dst": 29791 },
{ "src": 1267, "type": "peer", "dst": 30419 },
{ "src": 1267, "type": "peer", "dst": 31042 },
{ "src": 1267, "type": "peer", "dst": 31133 },
{ "src": 1267, "type": "peer", "dst": 31500 },
{ "src": 1267, "type": "peer", "dst": 3209 },
{ "src": 1267, "type": "peer", "dst": 3216 },
{ "src": 1267, "type": "peer", "dst": 3255 },
{ "src": 1267, "type": "peer", "dst": 3267 },
{ "src": 1267, "type": "peer", "dst": 3269 },
{ "src": 1267, "type": "peer", "dst": 3303 },
{ "src": 1267, "type": "peer", "dst": 3327 },
{ "src": 1267, "type": "peer", "dst": 33854 },
{ "src": 1267, "type": "customer", "dst": 33874 },
{ "src": 1267, "type": "peer", "dst": 33891 },
{ "src": 1267, "type": "peer", "dst": 33986 },
{ "src": 1267, "type": "peer", "dst": 34123 },
{ "src": 1267, "type": "peer", "dst": 34224 },
{ "src": 1267, "type": "peer", "dst": 34407 },
{ "src": 1267, "type": "peer", "dst": 34968 },
{ "src": 1267, "type": "peer", "dst": 35805 },
{ "src": 1267, "type": "peer", "dst": 36236 },
{ "src": 1267, "type": "peer", "dst": 36408 },
{ "src": 1267, "type": "peer", "dst": 36692 },
{ "src": 1267, "type": "peer", "dst": 37179 },
{ "src": 1267, "type": "peer", "dst": 3741 },
{ "src": 1267, "type": "peer", "dst": 38193 },
{ "src": 1267, "type": "peer", "dst": 39792 },
{ "src": 1267, "type": "peer", "dst": 39912 },
{ "src": 1267, "type": "peer", "dst": 41313 },
{ "src": 1267, "type": "peer", "dst": 42473 },
{ "src": 1267, "type": "peer", "dst": 43727 },
{ "src": 1267, "type": "peer", "dst": 44217 },
{ "src": 1267, "type": "peer", "dst": 44646 },
{ "src": 1267, "type": "peer", "dst": 44654 },
{ "src": 1267, "type": "peer", "dst": 44824 },
{ "src": 1267, "type": "peer", "dst": 44953 },
{ "src": 1267, "type": "peer", "dst": 45177 },
{ "src": 1267, "type": "peer", "dst": 4589 },
{ "src": 1267, "type": "peer", "dst": 4651 },
{ "src": 1267, "type": "peer", "dst": 47169 },
{ "src": 1267, "type": "peer", "dst": 4761 },
{ "src": 1267, "type": "peer", "dst": 47622 },
{ "src": 1267, "type": "peer", "dst": 47872 },
{ "src": 1267, "type": "peer", "dst": 4788 },
{ "src": 1267, "type": "peer", "dst": 4800 },
{ "src": 1267, "type": "peer", "dst": 49605 },
{ "src": 1267, "type": "peer", "dst": 50384 },
{ "src": 1267, "type": "peer", "dst": 5089 },
{ "src": 1267, "type": "peer", "dst": 53276 },
{ "src": 1267, "type": "peer", "dst": 5391 },
{ "src": 1267, "type": "peer", "dst": 5483 },
{ "src": 1267, "type": "peer", "dst": 5580 },
{ "src": 1267, "type": "peer", "dst": 5588 },
{ "src": 1267, "type": "peer", "dst": 5713 },
{ "src": 1267, "type": "peer", "dst": 57344 },
{ "src": 1267, "type": "peer", "dst": 57463 },
{ "src": 1267, "type": "customer", "dst": 57525 },
{ "src": 1267, "type": "peer", "dst": 57731 },
{ "src": 1267, "type": "peer", "dst": 58453 },
{ "src": 1267, "type": "peer", "dst": 61026 },
{ "src": 1267, "type": "peer", "dst": 61266 },
{ "src": 1267, "type": "peer", "dst": 6327 },
{ "src": 1267, "type": "peer", "dst": 6648 },
{ "src": 1267, "type": "peer", "dst": 6663 },
{ "src": 1267, "type": "peer", "dst": 6774 },
{ "src": 1267, "type": "peer", "dst": 6830 },
{ "src": 1267, "type": "peer", "dst": 6910 },
{ "src": 1267, "type": "peer", "dst": 7713 },
{ "src": 1267, "type": "peer", "dst": 8220 },
{ "src": 1267, "type": "peer", "dst": 8359 },
{ "src": 1267, "type": "peer", "dst": 8391 },
{ "src": 1267, "type": "peer", "dst": 8400 },
{ "src": 1267, "type": "peer", "dst": 8487 },
{ "src": 1267, "type": "peer", "dst": 8529 },
{ "src": 1267, "type": "peer", "dst": 8657 },
{ "src": 1267, "type": "peer", "dst": 8732 },
{ "src": 1267, "type": "peer", "dst": 8764 },
{ "src": 1267, "type": "peer", "dst": 8767 },
{ "src": 1267, "type": "peer", "dst": 8789 },
{ "src": 1267, "type": "peer", "dst": 8866 },
{ "src": 1267, "type": "peer", "dst": 8881 },
{ "src": 1267, "type": "peer", "dst": 8926 },
{ "src": 1267, "type": "peer", "dst": 8966 },
{ "src": 1267, "type": "peer", "dst": 8968 },
{ "src": 1267, "type": "peer", "dst": 9002 },
{ "src": 1267, "type": "peer", "dst": 9009 },
{ "src": 1267, "type": "peer", "dst": 9026 },
{ "src": 1267, "type": "peer", "dst": 9050 },
{ "src": 1267, "type": "peer", "dst": 9119 },
{ "src": 1267, "type": "peer", "dst": 9121 },
{ "src": 1267, "type": "peer", "dst": 9304 },
{ "src": 1267, "type": "peer", "dst": 9318 },
{ "src": 1267, "type": "peer", "dst": 9498 },
{ "src": 1267, "type": "peer", "dst": 9505 },
{ "src": 1267, "type": "peer", "dst": 9583 },
{ "src": 12695, "type": "peer", "dst": 13237 },
{ "src": 12695, "type": "peer", "dst": 19151 },
{ "src": 12695, "type": "customer", "dst": 197632 },
{ "src": 12695, "type": "customer", "dst": 198226 },
{ "src": 12695, "type": "peer", "dst": 20632 },
{ "src": 12695, "type": "peer", "dst": 25478 },
{ "src": 12695, "type": "peer", "dst": 28917 },
{ "src": 12695, "type": "customer", "dst": 34123 },
{ "src": 12695, "type": "peer", "dst": 39792 },
{ "src": 12695, "type": "peer", "dst": 39912 },
{ "src": 12695, "type": "peer", "dst": 42632 },
{ "src": 12695, "type": "customer", "dst": 48946 },
{ "src": 12695, "type": "peer", "dst": 50384 },
{ "src": 12695, "type": "customer", "dst": 51410 },
{ "src": 12695, "type": "customer", "dst": 5531 },
{ "src": 12695, "type": "customer", "dst": 57731 },
{ "src": 12696, "type": "peer", "dst": 20485 },
{ "src": 12709, "type": "customer", "dst": 200127 },
{ "src": 12709, "type": "customer", "dst": 35134 },
{ "src": 12709, "type": "customer", "dst": 57567 },
{ "src": 12714, "type": "peer", "dst": 12989 },
{ "src": 12714, "type": "peer", "dst": 13030 },
{ "src": 12714, "type": "peer", "dst": 13237 },
{ "src": 12714, "type": "customer", "dst": 197464 },
{ "src": 12714, "type": "peer", "dst": 20632 },
{ "src": 12714, "type": "peer", "dst": 28917 },
{ "src": 12714, "type": "customer", "dst": 34123 },
{ "src": 12714, "type": "peer", "dst": 39792 },
{ "src": 12714, "type": "peer", "dst": 39912 },
{ "src": 12714, "type": "peer", "dst": 42632 },
{ "src": 12714, "type": "peer", "dst": 43567 },
{ "src": 12714, "type": "peer", "dst": 44953 },
{ "src": 12714, "type": "customer", "dst": 47763 },
{ "src": 12714, "type": "customer", "dst": 8905 },
{ "src": 12715, "type": "peer", "dst": 12874 },
{ "src": 12715, "type": "peer", "dst": 12989 },
{ "src": 12715, "type": "peer", "dst": 13030 },
{ "src": 12715, "type": "peer", "dst": 13237 },
{ "src": 12715, "type": "peer", "dst": 19151 },
{ "src": 12715, "type": "peer", "dst": 28917 },
{ "src": 12715, "type": "peer", "dst": 29119 },
{ "src": 12715, "type": "peer", "dst": 31133 },
{ "src": 12715, "type": "customer", "dst": 31577 },
{ "src": 12715, "type": "peer", "dst": 33891 },
{ "src": 12715, "type": "peer", "dst": 39792 },
{ "src": 12715, "type": "customer", "dst": 43833 },
{ "src": 12715, "type": "customer", "dst": 48846 },
{ "src": 12715, "type": "customer", "dst": 50478 },
{ "src": 12715, "type": "customer", "dst": 51678 },
{ "src": 1273, "type": "peer", "dst": 10010 },
{ "src": 1273, "type": "peer", "dst": 10026 },
{ "src": 1273, "type": "customer", "dst": 11911 },
{ "src": 1273, "type": "customer", "dst": 12302 },
{ "src": 1273, "type": "customer", "dst": 12389 },
{ "src": 1273, "type": "customer", "dst": 1267 },
{ "src": 1273, "type": "peer", "dst": 12874 },
{ "src": 1273, "type": "customer", "dst": 12880 },
{ "src": 1273, "type": "peer", "dst": 12989 },
{ "src": 1273, "type": "peer", "dst": 15412 },
{ "src": 1273, "type": "customer", "dst": 15772 },
{ "src": 1273, "type": "customer", "dst": 15924 },
{ "src": 1273, "type": "customer", "dst": 15961 },
{ "src": 1273, "type": "peer", "dst": 16265 },
{ "src": 1273, "type": "customer", "dst": 16525 },
{ "src": 1273, "type": "customer", "dst": 17557 },
{ "src": 1273, "type": "peer", "dst": 17922 },
{ "src": 1273, "type": "peer", "dst": 18187 },
{ "src": 1273, "type": "peer", "dst": 18278 },
{ "src": 1273, "type": "customer", "dst": 18403 },
{ "src": 1273, "type": "customer", "dst": 18816 },
{ "src": 1273, "type": "peer", "dst": 19151 },
{ "src": 1273, "type": "peer", "dst": 20485 },
{ "src": 1273, "type": "customer", "dst": 20940 },
{ "src": 1273, "type": "peer", "dst": 21949 },
{ "src": 1273, "type": "peer", "dst": 22773 },
{ "src": 1273, "type": "peer", "dst": 22822 },
{ "src": 1273, "type": "customer", "dst": 24785 },
{ "src": 1273, "type": "peer", "dst": 2516 },
{ "src": 1273, "type": "peer", "dst": 2686 },
{ "src": 1273, "type": "peer", "dst": 2687 },
{ "src": 1273, "type": "customer", "dst": 29049 },
{ "src": 1273, "type": "customer", "dst": 29614 },
{ "src": 1273, "type": "customer", "dst": 31500 },
{ "src": 1273, "type": "customer", "dst": 3209 },
{ "src": 1273, "type": "customer", "dst": 3216 },
{ "src": 1273, "type": "peer", "dst": 3292 },
{ "src": 1273, "type": "peer", "dst": 3303 },
{ "src": 1273, "type": "peer", "dst": 3320 },
{ "src": 1273, "type": "customer", "dst": 33874 },
{ "src": 1273, "type": "peer", "dst": 3491 },
{ "src": 1273, "type": "peer", "dst": 3549 },
{ "src": 1273, "type": "peer", "dst": 3561 },
{ "src": 1273, "type": "customer", "dst": 36994 },
{ "src": 1273, "type": "peer", "dst": 4134 },
{ "src": 1273, "type": "customer", "dst": 4184 },
{ "src": 1273, "type": "customer", "dst": 44292 },
{ "src": 1273, "type": "customer", "dst": 4445 },
{ "src": 1273, "type": "peer", "dst": 45896 },
{ "src": 1273, "type": "peer", "dst": 45899 },
{ "src": 1273, "type": "peer", "dst": 4637 },
{ "src": 1273, "type": "customer", "dst": 4651 },
{ "src": 1273, "type": "customer", "dst": 47563 },
{ "src": 1273, "type": "customer", "dst": 47580 },
{ "src": 1273, "type": "customer", "dst": 47720 },
{ "src": 1273, "type": "customer", "dst": 4788 },
{ "src": 1273, "type": "customer", "dst": 5089 },
{ "src": 1273, "type": "customer", "dst": 5400 },
{ "src": 1273, "type": "customer", "dst": 55410 },
{ "src": 1273, "type": "customer", "dst": 59253 },
{ "src": 1273, "type": "customer", "dst": 59930 },
{ "src": 1273, "type": "customer", "dst": 61054 },
{ "src": 1273, "type": "peer", "dst": 6128 },
{ "src": 1273, "type": "peer", "dst": 6327 },
{ "src": 1273, "type": "peer", "dst": 6453 },
{ "src": 1273, "type": "customer", "dst": 6648 },
{ "src": 1273, "type": "customer", "dst": 6774 },
{ "src": 1273, "type": "peer", "dst": 6830 },
{ "src": 1273, "type": "customer", "dst": 7430 },
{ "src": 1273, "type": "peer", "dst": 7473 },
{ "src": 1273, "type": "peer", "dst": 7575 },
{ "src": 1273, "type": "peer", "dst": 7843 },
{ "src": 1273, "type": "peer", "dst": 7922 },
{ "src": 1273, "type": "peer", "dst": 8220 },
{ "src": 1273, "type": "peer", "dst": 8928 },
{ "src": 1273, "type": "customer", "dst": 8966 },
{ "src": 1273, "type": "peer", "dst": 9002 },
{ "src": 1273, "type": "peer", "dst": 9009 },
{ "src": 1273, "type": "customer", "dst": 9381 },
{ "src": 1273, "type": "peer", "dst": 9498 },
{ "src": 1273, "type": "peer", "dst": 9505 },
{ "src": 1273, "type": "customer", "dst": 9583 },
{ "src": 12764, "type": "peer", "dst": 39214 },
{ "src": 12764, "type": "customer", "dst": 56988 },
{ "src": 12772, "type": "customer", "dst": 59672 },
{ "src": 12772, "type": "customer", "dst": 61206 },
{ "src": 12772, "type": "customer", "dst": 61228 },
{ "src": 12773, "type": "customer", "dst": 28926 },
{ "src": 12773, "type": "customer", "dst": 48595 },
{ "src": 12773, "type": "customer", "dst": 50204 },
{ "src": 12773, "type": "peer", "dst": 50384 },
{ "src": 12773, "type": "customer", "dst": 52213 },
{ "src": 1277, "type": "customer", "dst": 14660 },
{ "src": 1277, "type": "customer", "dst": 40273 },
{ "src": 1277, "type": "customer", "dst": 53909 },
{ "src": 12831, "type": "customer", "dst": 197396 },
{ "src": 12831, "type": "customer", "dst": 29649 },
{ "src": 12831, "type": "customer", "dst": 43681 },
{ "src": 12831, "type": "customer", "dst": 51566 },
{ "src": 12831, "type": "customer", "dst": 51976 },
{ "src": 12874, "type": "peer", "dst": 12989 },
{ "src": 12874, "type": "peer", "dst": 13030 },
{ "src": 12874, "type": "peer", "dst": 13127 },
{ "src": 12874, "type": "peer", "dst": 13237 },
{ "src": 12874, "type": "peer", "dst": 14610 },
{ "src": 12874, "type": "customer", "dst": 15720 },
{ "src": 12874, "type": "peer", "dst": 15830 },
{ "src": 12874, "type": "peer", "dst": 16265 },
{ "src": 12874, "type": "peer", "dst": 19151 },
{ "src": 12874, "type": "customer", "dst": 196966 },
{ "src": 12874, "type": "peer", "dst": 20485 },
{ "src": 12874, "type": "peer", "dst": 20562 },
{ "src": 12874, "type": "peer", "dst": 20940 },
{ "src": 12874, "type": "peer", "dst": 21013 },
{ "src": 12874, "type": "customer", "dst": 21056 },
{ "src": 12874, "type": "peer", "dst": 22822 },
{ "src": 12874, "type": "peer", "dst": 24724 },
{ "src": 12874, "type": "customer", "dst": 24805 },
{ "src": 12874, "type": "customer", "dst": 25350 },
{ "src": 12874, "type": "peer", "dst": 28917 },
{ "src": 12874, "type": "peer", "dst": 31133 },
{ "src": 12874, "type": "customer", "dst": 3269 },
{ "src": 12874, "type": "peer", "dst": 33891 },
{ "src": 12874, "type": "peer", "dst": 34224 },
{ "src": 12874, "type": "peer", "dst": 36408 },
{ "src": 12874, "type": "peer", "dst": 39792 },
{ "src": 12874, "type": "peer", "dst": 39912 },
{ "src": 12874, "type": "customer", "dst": 42957 },
{ "src": 12874, "type": "customer", "dst": 43976 },
{ "src": 12874, "type": "customer", "dst": 44485 },
{ "src": 12874, "type": "peer", "dst": 44824 },
{ "src": 12874, "type": "peer", "dst": 44953 },
{ "src": 12874, "type": "customer", "dst": 47875 },
{ "src": 12874, "type": "customer", "dst": 49535 },
{ "src": 12874, "type": "peer", "dst": 49605 },
{ "src": 12874, "type": "peer", "dst": 50384 },
{ "src": 12874, "type": "peer", "dst": 53276 },
{ "src": 12874, "type": "customer", "dst": 57525 },
{ "src": 12874, "type": "customer", "dst": 60501 },
{ "src": 12874, "type": "customer", "dst": 6734 },
{ "src": 12880, "type": "customer", "dst": 24631 },
{ "src": 12880, "type": "customer", "dst": 42337 },
{ "src": 12880, "type": "customer", "dst": 44375 },
{ "src": 12880, "type": "customer", "dst": 51074 },
{ "src": 12880, "type": "customer", "dst": 52136 },
{ "src": 12880, "type": "customer", "dst": 57241 },
{ "src": 12880, "type": "customer", "dst": 57574 },
{ "src": 12883, "type": "peer", "dst": 12989 },
{ "src": 12883, "type": "peer", "dst": 13030 },
{ "src": 12883, "type": "peer", "dst": 13237 },
{ "src": 12883, "type": "customer", "dst": 20144 },
{ "src": 12883, "type": "peer", "dst": 20562 },
{ "src": 12883, "type": "peer", "dst": 20632 },
{ "src": 12883, "type": "customer", "dst": 21488 },
{ "src": 12883, "type": "customer", "dst": 28907 },
{ "src": 12883, "type": "peer", "dst": 28917 },
{ "src": 12883, "type": "customer", "dst": 28926 },
{ "src": 12883, "type": "customer", "dst": 30128 },
{ "src": 12883, "type": "peer", "dst": 39792 },
{ "src": 12883, "type": "peer", "dst": 39912 },
{ "src": 12883, "type": "customer", "dst": 44629 },
{ "src": 12883, "type": "peer", "dst": 44953 },
{ "src": 12883, "type": "customer", "dst": 47707 },
{ "src": 12883, "type": "customer", "dst": 51069 },
{ "src": 12883, "type": "customer", "dst": 6702 },
{ "src": 12883, "type": "customer", "dst": 6703 },
{ "src": 12883, "type": "customer", "dst": 6886 },
{ "src": 12989, "type": "peer", "dst": 13030 },
{ "src": 12989, "type": "peer", "dst": 13127 },
{ "src": 12989, "type": "peer", "dst": 13237 },
{ "src": 12989, "type": "customer", "dst": 13537 },
{ "src": 12989, "type": "peer", "dst": 13692 },
{ "src": 12989, "type": "peer", "dst": 14610 },
{ "src": 12989, "type": "peer", "dst": 14840 },
{ "src": 12989, "type": "customer", "dst": 14986 },
{ "src": 12989, "type": "peer", "dst": 15085 },
{ "src": 12989, "type": "peer", "dst": 15290 },
{ "src": 12989, "type": "peer", "dst": 15412 },
{ "src": 12989, "type": "peer", "dst": 15547 },
{ "src": 12989, "type": "peer", "dst": 15720 },
{ "src": 12989, "type": "peer", "dst": 15763 },
{ "src": 12989, "type": "peer", "dst": 15772 },
{ "src": 12989, "type": "peer", "dst": 15830 },
{ "src": 12989, "type": "peer", "dst": 16150 },
{ "src": 12989, "type": "peer", "dst": 16265 },
{ "src": 12989, "type": "peer", "dst": 16637 },
{ "src": 12989, "type": "peer", "dst": 16735 },
{ "src": 12989, "type": "peer", "dst": 16839 },
{ "src": 12989, "type": "peer", "dst": 17557 },
{ "src": 12989, "type": "peer", "dst": 18734 },
{ "src": 12989, "type": "peer", "dst": 18881 },
{ "src": 12989, "type": "peer", "dst": 19151 },
{ "src": 12989, "type": "peer", "dst": 196844 },
{ "src": 12989, "type": "peer", "dst": 197426 },
{ "src": 12989, "type": "peer", "dst": 197985 },
{ "src": 12989, "type": "peer", "dst": 20115 },
{ "src": 12989, "type": "peer", "dst": 20562 },
{ "src": 12989, "type": "peer", "dst": 20764 },
{ "src": 12989, "type": "peer", "dst": 20804 },
{ "src": 12989, "type": "peer", "dst": 20940 },
{ "src": 12989, "type": "peer", "dst": 21011 },
{ "src": 12989, "type": "peer", "dst": 21219 },
{ "src": 12989, "type": "peer", "dst": 21949 },
{ "src": 12989, "type": "peer", "dst": 22489 },
{ "src": 12989, "type": "peer", "dst": 22773 },
{ "src": 12989, "type": "peer", "dst": 23197 },
{ "src": 12989, "type": "customer", "dst": 23312 },
{ "src": 12989, "type": "peer", "dst": 23520 },
{ "src": 12989, "type": "peer", "dst": 24724 },
{ "src": 12989, "type": "peer", "dst": 24753 },
{ "src": 12989, "type": "customer", "dst": 2516 },
{ "src": 12989, "type": "peer", "dst": 25899 },
{ "src": 12989, "type": "peer", "dst": 262394 },
{ "src": 12989, "type": "customer", "dst": 262659 },
{ "src": 12989, "type": "customer", "dst": 262706 },
{ "src": 12989, "type": "peer", "dst": 262750 },
{ "src": 12989, "type": "customer", "dst": 263432 },
{ "src": 12989, "type": "peer", "dst": 26554 },
{ "src": 12989, "type": "customer", "dst": 28202 },
{ "src": 12989, "type": "peer", "dst": 28283 },
{ "src": 12989, "type": "peer", "dst": 28303 },
{ "src": 12989, "type": "customer", "dst": 28665 },
{ "src": 12989, "type": "peer", "dst": 28917 },
{ "src": 12989, "type": "peer", "dst": 29119 },
{ "src": 12989, "type": "peer", "dst": 29791 },
{ "src": 12989, "type": "peer", "dst": 30419 },
{ "src": 12989, "type": "peer", "dst": 30583 },
{ "src": 12989, "type": "peer", "dst": 31042 },
{ "src": 12989, "type": "peer", "dst": 31133 },
{ "src": 12989, "type": "peer", "dst": 31500 },
{ "src": 12989, "type": "peer", "dst": 32592 },
{ "src": 12989, "type": "peer", "dst": 33588 },
{ "src": 12989, "type": "peer", "dst": 33891 },
{ "src": 12989, "type": "peer", "dst": 33986 },
{ "src": 12989, "type": "peer", "dst": 34224 },
{ "src": 12989, "type": "peer", "dst": 34968 },
{ "src": 12989, "type": "peer", "dst": 36222 },
{ "src": 12989, "type": "peer", "dst": 36236 },
{ "src": 12989, "type": "peer", "dst": 36280 },
{ "src": 12989, "type": "peer", "dst": 36408 },
{ "src": 12989, "type": "peer", "dst": 36692 },
{ "src": 12989, "type": "peer", "dst": 38880 },
{ "src": 12989, "type": "peer", "dst": 39792 },
{ "src": 12989, "type": "peer", "dst": 39912 },
{ "src": 12989, "type": "peer", "dst": 39923 },
{ "src": 12989, "type": "peer", "dst": 40627 },
{ "src": 12989, "type": "peer", "dst": 41090 },
{ "src": 12989, "type": "peer", "dst": 41313 },
{ "src": 12989, "type": "peer", "dst": 42184 },
{ "src": 12989, "type": "customer", "dst": 42473 },
{ "src": 12989, "type": "peer", "dst": 44654 },
{ "src": 12989, "type": "peer", "dst": 44824 },
{ "src": 12989, "type": "peer", "dst": 44953 },
{ "src": 12989, "type": "peer", "dst": 45177 },
{ "src": 12989, "type": "peer", "dst": 45896 },
{ "src": 12989, "type": "peer", "dst": 47872 },
{ "src": 12989, "type": "peer", "dst": 50384 },
{ "src": 12989, "type": "peer", "dst": 50923 },
{ "src": 12989, "type": "customer", "dst": 53237 },
{ "src": 12989, "type": "peer", "dst": 53276 },
{ "src": 12989, "type": "peer", "dst": 53340 },
{ "src": 12989, "type": "peer", "dst": 57463 },
{ "src": 12989, "type": "peer", "dst": 57731 },
{ "src": 12989, "type": "peer", "dst": 59560 },
{ "src": 12989, "type": "customer", "dst": 7473 },
{ "src": 13030, "type": "customer", "dst": 12576 },
{ "src": 13030, "type": "customer", "dst": 1273 },
{ "src": 13030, "type": "peer", "dst": 13064 },
{ "src": 13030, "type": "customer", "dst": 13127 },
{ "src": 13030, "type": "peer", "dst": 13237 },
{ "src": 13030, "type": "peer", "dst": 13249 },
{ "src": 13030, "type": "peer", "dst": 14610 },
{ "src": 13030, "type": "customer", "dst": 14717 },
{ "src": 13030, "type": "customer", "dst": 14840 },
{ "src": 13030, "type": "peer", "dst": 15290 },
{ "src": 13030, "type": "peer", "dst": 15412 },
{ "src": 13030, "type": "peer", "dst": 15516 },
{ "src": 13030, "type": "peer", "dst": 15547 },
{ "src": 13030, "type": "customer", "dst": 15623 },
{ "src": 13030, "type": "customer", "dst": 15720 },
{ "src": 13030, "type": "peer", "dst": 15763 },
{ "src": 13030, "type": "peer", "dst": 15830 },
{ "src": 13030, "type": "customer", "dst": 15933 },
{ "src": 13030, "type": "peer", "dst": 16150 },
{ "src": 13030, "type": "customer", "dst": 16178 },
{ "src": 13030, "type": "peer", "dst": 16245 },
{ "src": 13030, "type": "peer", "dst": 16265 },
{ "src": 13030, "type": "peer", "dst": 16637 },
{ "src": 13030, "type": "peer", "dst": 16735 },
{ "src": 13030, "type": "peer", "dst": 17557 },
{ "src": 13030, "type": "peer", "dst": 19151 },
{ "src": 13030, "type": "customer", "dst": 1921 },
{ "src": 13030, "type": "peer", "dst": 196621 },
{ "src": 13030, "type": "customer", "dst": 196844 },
{ "src": 13030, "type": "customer", "dst": 197426 },
{ "src": 13030, "type": "customer", "dst": 19752 },
{ "src": 13030, "type": "customer", "dst": 198126 },
{ "src": 13030, "type": "customer", "dst": 20485 },
{ "src": 13030, "type": "customer", "dst": 20562 },
{ "src": 13030, "type": "peer", "dst": 20633 },
{ "src": 13030, "type": "customer", "dst": 20764 },
{ "src": 13030, "type": "customer", "dst": 20804 },
{ "src": 13030, "type": "customer", "dst": 20940 },
{ "src": 13030, "type": "peer", "dst": 20965 },
{ "src": 13030, "type": "customer", "dst": 21011 },
{ "src": 13030, "type": "peer", "dst": 21013 },
{ "src": 13030, "type": "customer", "dst": 21219 },
{ "src": 13030, "type": "peer", "dst": 21360 },
{ "src": 13030, "type": "peer", "dst": 21949 },
{ "src": 13030, "type": "peer", "dst": 22822 },
{ "src": 13030, "type": "peer", "dst": 23197 },
{ "src": 13030, "type": "customer", "dst": 23520 },
{ "src": 13030, "type": "peer", "dst": 24637 },
{ "src": 13030, "type": "customer", "dst": 24724 },
{ "src": 13030, "type": "customer", "dst": 24753 },
{ "src": 13030, "type": "customer", "dst": 24940 },
{ "src": 13030, "type": "customer", "dst": 24961 },
{ "src": 13030, "type": "customer", "dst": 25394 },
{ "src": 13030, "type": "customer", "dst": 28283 },
{ "src": 13030, "type": "customer", "dst": 2854 },
{ "src": 13030, "type": "peer", "dst": 28917 },
{ "src": 13030, "type": "customer", "dst": 29049 },
{ "src": 13030, "type": "customer", "dst": 29076 },
{ "src": 13030, "type": "peer", "dst": 29119 },
{ "src": 13030, "type": "customer", "dst": 29632 },
{ "src": 13030, "type": "peer", "dst": 29791 },
{ "src": 13030, "type": "peer", "dst": 30971 },
{ "src": 13030, "type": "customer", "dst": 31042 },
{ "src": 13030, "type": "customer", "dst": 31133 },
{ "src": 13030, "type": "peer", "dst": 31500 },
{ "src": 13030, "type": "customer", "dst": 3255 },
{ "src": 13030, "type": "customer", "dst": 3267 },
{ "src": 13030, "type": "customer", "dst": 3327 },
{ "src": 13030, "type": "peer", "dst": 33891 },
{ "src": 13030, "type": "peer", "dst": 33986 },
{ "src": 13030, "type": "customer", "dst": 34224 },
{ "src": 13030, "type": "customer", "dst": 3491 },
{ "src": 13030, "type": "customer", "dst": 34968 },
{ "src": 13030, "type": "customer", "dst": 36236 },
{ "src": 13030, "type": "peer", "dst": 36408 },
{ "src": 13030, "type": "customer", "dst": 38880 },
{ "src": 13030, "type": "peer", "dst": 39792 },
{ "src": 13030, "type": "peer", "dst": 39912 },
{ "src": 13030, "type": "peer", "dst": 39923 },
{ "src": 13030, "type": "customer", "dst": 41313 },
{ "src": 13030, "type": "customer", "dst": 41590 },
{ "src": 13030, "type": "peer", "dst": 42184 },
{ "src": 13030, "type": "customer", "dst": 4230 },
{ "src": 13030, "type": "customer", "dst": 42473 },
{ "src": 13030, "type": "customer", "dst": 42 },
{ "src": 13030, "type": "peer", "dst": 43561 },
{ "src": 13030, "type": "peer", "dst": 43727 },
{ "src": 13030, "type": "peer", "dst": 44217 },
{ "src": 13030, "type": "customer", "dst": 44654 },
{ "src": 13030, "type": "peer", "dst": 44824 },
{ "src": 13030, "type": "customer", "dst": 44953 },
{ "src": 13030, "type": "peer", "dst": 45896 },
{ "src": 13030, "type": "customer", "dst": 4657 },
{ "src": 13030, "type": "customer", "dst": 47302 },
{ "src": 13030, "type": "customer", "dst": 4761 },
{ "src": 13030, "type": "customer", "dst": 48027 },
{ "src": 13030, "type": "peer", "dst": 48971 },
{ "src": 13030, "type": "peer", "dst": 50384 },
{ "src": 13030, "type": "customer", "dst": 51778 },
{ "src": 13030, "type": "peer", "dst": 53276 },
{ "src": 13030, "type": "peer", "dst": 53340 },
{ "src": 13030, "type": "customer", "dst": 5483 },
{ "src": 13030, "type": "customer", "dst": 57463 },
{ "src": 13030, "type": "customer", "dst": 61026 },
{ "src": 13030, "type": "customer", "dst": 6663 },
{ "src": 13030, "type": "customer", "dst": 6910 },
{ "src": 13030, "type": "customer", "dst": 7473 },
{ "src": 13030, "type": "customer", "dst": 7575 },
{ "src": 13030, "type": "customer", "dst": 7738 },
{ "src": 13030, "type": "customer", "dst": 8190 },
{ "src": 13030, "type": "customer", "dst": 8245 },
{ "src": 13030, "type": "customer", "dst": 8359 },
{ "src": 13030, "type": "customer", "dst": 8391 },
{ "src": 13030, "type": "customer", "dst": 8400 },
{ "src": 13030, "type": "customer", "dst": 8529 },
{ "src": 13030, "type": "customer", "dst": 8732 },
{ "src": 13030, "type": "customer", "dst": 8764 },
{ "src": 13030, "type": "customer", "dst": 8866 },
{ "src": 13030, "type": "customer", "dst": 8881 },
{ "src": 13030, "type": "customer", "dst": 8926 },
{ "src": 13030, "type": "customer", "dst": 9121 },
{ "src": 13030, "type": "customer", "dst": 9304 },
{ "src": 13030, "type": "customer", "dst": 9318 },
{ "src": 13030, "type": "customer", "dst": 9498 },
{ "src": 13064, "type": "peer", "dst": 13237 },
{ "src": 13110, "type": "customer", "dst": 196792 },
{ "src": 13110, "type": "customer", "dst": 197154 },
{ "src": 13110, "type": "peer", "dst": 20485 },
{ "src": 13110, "type": "customer", "dst": 34688 },
{ "src": 131127, "type": "customer", "dst": 45540 },
{ "src": 131127, "type": "customer", "dst": 45546 },
{ "src": 131127, "type": "customer", "dst": 55309 },
{ "src": 13119, "type": "customer", "dst": 43803 },
{ "src": 13119, "type": "customer", "dst": 60323 },
{ "src": 13121, "type": "customer", "dst": 12837 },
{ "src": 13121, "type": "peer", "dst": 28917 },
{ "src": 13121, "type": "customer", "dst": 49995 },
{ "src": 13121, "type": "customer", "dst": 57995 },
{ "src": 13127, "type": "peer", "dst": 13237 },
{ "src": 13127, "type": "peer", "dst": 15412 },
{ "src": 13127, "type": "customer", "dst": 15670 },
{ "src": 13127, "type": "peer", "dst": 19151 },
{ "src": 13127, "type": "peer", "dst": 33891 },
{ "src": 13127, "type": "peer", "dst": 39792 },
{ "src": 13127, "type": "customer", "dst": 47829 },
{ "src": 13127, "type": "peer", "dst": 50384 },
{ "src": 13127, "type": "customer", "dst": 6448 },
{ "src": 131284, "type": "customer", "dst": 133457 },
{ "src": 131284, "type": "customer", "dst": 55732 },
{ "src": 131284, "type": "customer", "dst": 55745 },
{ "src": 131447, "type": "customer", "dst": 133751 },
{ "src": 131447, "type": "customer", "dst": 45441 },
{ "src": 132070, "type": "customer", "dst": 133433 },
{ "src": 132142, "type": "customer", "dst": 132526 },
{ "src": 132142, "type": "customer", "dst": 132731 },
{ "src": 132142, "type": "customer", "dst": 133190 },
{ "src": 13237, "type": "customer", "dst": 12374 },
{ "src": 13237, "type": "peer", "dst": 13249 },
{ "src": 13237, "type": "peer", "dst": 15377 },
{ "src": 13237, "type": "customer", "dst": 15388 },
{ "src": 13237, "type": "peer", "dst": 15412 },
{ "src": 13237, "type": "peer", "dst": 15516 },
{ "src": 13237, "type": "peer", "dst": 15547 },
{ "src": 13237, "type": "peer", "dst": 15720 },
{ "src": 13237, "type": "peer", "dst": 15772 },
{ "src": 13237, "type": "customer", "dst": 15830 },
{ "src": 13237, "type": "peer", "dst": 15895 },
{ "src": 13237, "type": "peer", "dst": 15933 },
{ "src": 13237, "type": "peer", "dst": 16095 },
{ "src": 13237, "type": "peer", "dst": 16150 },
{ "src": 13237, "type": "peer", "dst": 16178 },
{ "src": 13237, "type": "peer", "dst": 16245 },
{ "src": 13237, "type": "peer", "dst": 16265 },
{ "src": 13237, "type": "peer", "dst": 16637 },
{ "src": 13237, "type": "peer", "dst": 16839 },
{ "src": 13237, "type": "peer", "dst": 17557 },
{ "src": 13237, "type": "peer", "dst": 19151 },
{ "src": 13237, "type": "customer", "dst": 196714 },
{ "src": 13237, "type": "peer", "dst": 196844 },
{ "src": 13237, "type": "customer", "dst": 197127 },
{ "src": 13237, "type": "customer", "dst": 197334 },
{ "src": 13237, "type": "peer", "dst": 197426 },
{ "src": 13237, "type": "peer", "dst": 197985 },
{ "src": 13237, "type": "peer", "dst": 20485 },
{ "src": 13237, "type": "peer", "dst": 20562 },
{ "src": 13237, "type": "peer", "dst": 20633 },
{ "src": 13237, "type": "peer", "dst": 20681 },
{ "src": 13237, "type": "peer", "dst": 20764 },
{ "src": 13237, "type": "peer", "dst": 20804 },
{ "src": 13237, "type": "peer", "dst": 20940 },
{ "src": 13237, "type": "peer", "dst": 21011 },
{ "src": 13237, "type": "peer", "dst": 21013 },
{ "src": 13237, "type": "peer", "dst": 21219 },
{ "src": 13237, "type": "peer", "dst": 21360 },
{ "src": 13237, "type": "customer", "dst": 21413 },
{ "src": 13237, "type": "peer", "dst": 22822 },
{ "src": 13237, "type": "peer", "dst": 24637 },
{ "src": 13237, "type": "peer", "dst": 24724 },
{ "src": 13237, "type": "peer", "dst": 24940 },
{ "src": 13237, "type": "peer", "dst": 25192 },
{ "src": 13237, "type": "customer", "dst": 25276 },
{ "src": 13237, "type": "customer", "dst": 25394 },
{ "src": 13237, "type": "peer", "dst": 25467 },
{ "src": 13237, "type": "peer", "dst": 28283 },
{ "src": 13237, "type": "peer", "dst": 28676 },
{ "src": 13237, "type": "peer", "dst": 28757 },
{ "src": 13237, "type": "peer", "dst": 28917 },
{ "src": 13237, "type": "peer", "dst": 29049 },
{ "src": 13237, "type": "peer", "dst": 29056 },
{ "src": 13237, "type": "peer", "dst": 29076 },
{ "src": 13237, "type": "peer", "dst": 29119 },
{ "src": 13237, "type": "peer", "dst": 29226 },
{ "src": 13237, "type": "peer", "dst": 29632 },
{ "src": 13237, "type": "peer", "dst": 29791 },
{ "src": 13237, "type": "peer", "dst": 30419 },
{ "src": 13237, "type": "peer", "dst": 30971 },
{ "src": 13237, "type": "peer", "dst": 31042 },
{ "src": 13237, "type": "peer", "dst": 31133 },
{ "src": 13237, "type": "peer", "dst": 31500 },
{ "src": 13237, "type": "peer", "dst": 33854 },
{ "src": 13237, "type": "peer", "dst": 33891 },
{ "src": 13237, "type": "peer", "dst": 33986 },
{ "src": 13237, "type": "peer", "dst": 34123 },
{ "src": 13237, "type": "peer", "dst": 34224 },
{ "src": 13237, "type": "peer", "dst": 34407 },
{ "src": 13237, "type": "customer", "dst": 34432 },
{ "src": 13237, "type": "peer", "dst": 34968 },
{ "src": 13237, "type": "customer", "dst": 35226 },
{ "src": 13237, "type": "peer", "dst": 35805 },
{ "src": 13237, "type": "peer", "dst": 36236 },
{ "src": 13237, "type": "peer", "dst": 36408 },
{ "src": 13237, "type": "peer", "dst": 36692 },
{ "src": 13237, "type": "peer", "dst": 37179 },
{ "src": 13237, "type": "peer", "dst": 38193 },
{ "src": 13237, "type": "peer", "dst": 39792 },
{ "src": 13237, "type": "peer", "dst": 39912 },
{ "src": 13237, "type": "peer", "dst": 39923 },
{ "src": 13237, "type": "peer", "dst": 41090 },
{ "src": 13237, "type": "peer", "dst": 41313 },
{ "src": 13237, "type": "peer", "dst": 42184 },
{ "src": 13237, "type": "peer", "dst": 43061 },
{ "src": 13237, "type": "customer", "dst": 43305 },
{ "src": 13237, "type": "peer", "dst": 43561 },
{ "src": 13237, "type": "peer", "dst": 43727 },
{ "src": 13237, "type": "peer", "dst": 44646 },
{ "src": 13237, "type": "peer", "dst": 44654 },
{ "src": 13237, "type": "peer", "dst": 44953 },
{ "src": 13237, "type": "peer", "dst": 45177 },
{ "src": 13237, "type": "peer", "dst": 47169 },
{ "src": 13237, "type": "peer", "dst": 47580 },
{ "src": 13237, "type": "peer", "dst": 47622 },
{ "src": 13237, "type": "peer", "dst": 47872 },
{ "src": 13237, "type": "peer", "dst": 48339 },
{ "src": 13237, "type": "peer", "dst": 48943 },
{ "src": 13237, "type": "peer", "dst": 49634 },
{ "src": 13237, "type": "peer", "dst": 50384 },
{ "src": 13237, "type": "peer", "dst": 50923 },
{ "src": 13237, "type": "customer", "dst": 51378 },
{ "src": 13237, "type": "peer", "dst": 57344 },
{ "src": 13237, "type": "peer", "dst": 57463 },
{ "src": 13237, "type": "peer", "dst": 57731 },
{ "src": 13237, "type": "peer", "dst": 58002 },
{ "src": 13237, "type": "peer", "dst": 58453 },
{ "src": 13237, "type": "peer", "dst": 59560 },
{ "src": 13237, "type": "peer", "dst": 60764 },
{ "src": 13237, "type": "customer", "dst": 61054 },
{ "src": 13237, "type": "peer", "dst": 61266 },
{ "src": 13237, "type": "peer", "dst": 61337 },
{ "src": 13237, "type": "customer", "dst": 8386 },
{ "src": 13237, "type": "customer", "dst": 8391 },
{ "src": 13237, "type": "customer", "dst": 8767 },
{ "src": 13247, "type": "customer", "dst": 25276 },
{ "src": 13247, "type": "customer", "dst": 48785 },
{ "src": 13247, "type": "customer", "dst": 51378 },
{ "src": 13249, "type": "customer", "dst": 12773 },
{ "src": 13249, "type": "customer", "dst": 15377 },
{ "src": 13249, "type": "peer", "dst": 19151 },
{ "src": 13249, "type": "peer", "dst": 20632 },
{ "src": 13249, "type": "peer", "dst": 20764 },
{ "src": 13249, "type": "customer", "dst": 21488 },
{ "src": 13249, "type": "peer", "dst": 28917 },
{ "src": 13249, "type": "peer", "dst": 29076 },
{ "src": 13249, "type": "peer", "dst": 31133 },
{ "src": 13249, "type": "customer", "dst": 34786 },
{ "src": 13249, "type": "peer", "dst": 39792 },
{ "src": 13249, "type": "peer", "dst": 39912 },
{ "src": 13249, "type": "customer", "dst": 41910 },
{ "src": 13249, "type": "customer", "dst": 42798 },
{ "src": 13249, "type": "customer", "dst": 47872 },
{ "src": 13249, "type": "customer", "dst": 61316 },
{ "src": 13249, "type": "customer", "dst": 6886 },
{ "src": 133064, "type": "customer", "dst": 132862 },
{ "src": 133064, "type": "customer", "dst": 133611 },
{ "src": 13329, "type": "customer", "dst": 14174 },
{ "src": 13329, "type": "customer", "dst": 36280 },
{ "src": 13329, "type": "customer", "dst": 54001 },
{ "src": 13446, "type": "customer", "dst": 53540 },
{ "src": 13555, "type": "customer", "dst": 14308 },
{ "src": 13555, "type": "customer", "dst": 32920 },
{ "src": 13555, "type": "customer", "dst": 39990 },
{ "src": 13649, "type": "customer", "dst": 14915 },
{ "src": 13649, "type": "customer", "dst": 18757 },
{ "src": 13649, "type": "customer", "dst": 19067 },
{ "src": 13649, "type": "customer", "dst": 22065 },
{ "src": 13649, "type": "customer", "dst": 23521 },
{ "src": 13649, "type": "customer", "dst": 27240 },
{ "src": 13649, "type": "customer", "dst": 30139 },
{ "src": 13649, "type": "customer", "dst": 3955 },
{ "src": 13649, "type": "customer", "dst": 54822 },
{ "src": 13649, "type": "customer", "dst": 62958 },
{ "src": 13692, "type": "customer", "dst": 10883 },
{ "src": 13692, "type": "customer", "dst": 11986 },
{ "src": 13692, "type": "customer", "dst": 33509 },
{ "src": 13776, "type": "customer", "dst": 14914 },
{ "src": 13776, "type": "customer", "dst": 30587 },
{ "src": 13776, "type": "customer", "dst": 32057 },
{ "src": 13789, "type": "customer", "dst": 12178 },
{ "src": 13789, "type": "customer", "dst": 13792 },
{ "src": 13789, "type": "customer", "dst": 14610 },
{ "src": 13789, "type": "customer", "dst": 14753 },
{ "src": 13789, "type": "customer", "dst": 18608 },
{ "src": 13789, "type": "customer", "dst": 19479 },
{ "src": 13789, "type": "customer", "dst": 19812 },
{ "src": 13789, "type": "customer", "dst": 26074 },
{ "src": 13789, "type": "customer", "dst": 26470 },
{ "src": 13789, "type": "customer", "dst": 26897 },
{ "src": 13789, "type": "customer", "dst": 29791 },
{ "src": 13789, "type": "customer", "dst": 32607 },
{ "src": 13789, "type": "customer", "dst": 53276 },
{ "src": 13789, "type": "customer", "dst": 63 },
{ "src": 13791, "type": "customer", "dst": 13792 },
{ "src": 13791, "type": "customer", "dst": 33717 },
{ "src": 13791, "type": "customer", "dst": 46928 },
{ "src": 13791, "type": "customer", "dst": 47071 },
{ "src": 13979, "type": "customer", "dst": 2576 },
{ "src": 13979, "type": "customer", "dst": 5774 },
{ "src": 13979, "type": "customer", "dst": 8076 },
{ "src": 14135, "type": "customer", "dst": 11022 },
{ "src": 14135, "type": "customer", "dst": 14073 },
{ "src": 14135, "type": "customer", "dst": 39982 },
{ "src": 1421, "type": "customer", "dst": 18385 },
{ "src": 1421, "type": "customer", "dst": 30359 },
{ "src": 1421, "type": "customer", "dst": 31985 },
{ "src": 14230, "type": "customer", "dst": 30289 },
{ "src": 14230, "type": "customer", "dst": 46387 },
{ "src": 14230, "type": "customer", "dst": 6621 },
{ "src": 14610, "type": "peer", "dst": 16735 },
{ "src": 14610, "type": "peer", "dst": 19151 },
{ "src": 14610, "type": "peer", "dst": 33891 },
{ "src": 14650, "type": "peer", "dst": 16735 },
{ "src": 14650, "type": "peer", "dst": 262394 },
{ "src": 14650, "type": "peer", "dst": 262750 },
{ "src": 14650, "type": "peer", "dst": 28303 },
{ "src": 14650, "type": "peer", "dst": 53237 },
{ "src": 14717, "type": "peer", "dst": 19151 },
{ "src": 14717, "type": "customer", "dst": 21993 },
{ "src": 14717, "type": "customer", "dst": 30417 },
{ "src": 14717, "type": "peer", "dst": 33891 },
{ "src": 14717, "type": "customer", "dst": 35973 },
{ "src": 14717, "type": "customer", "dst": 40212 },
{ "src": 14717, "type": "customer", "dst": 53413 },
{ "src": 14742, "type": "customer", "dst": 14136 },
{ "src": 14742, "type": "customer", "dst": 17113 },
{ "src": 14742, "type": "customer", "dst": 19479 },
{ "src": 14742, "type": "customer", "dst": 21547 },
{ "src": 14742, "type": "customer", "dst": 3455 },
{ "src": 14742, "type": "customer", "dst": 63 },
{ "src": 14743, "type": "customer", "dst": 32959 },
{ "src": 14743, "type": "customer", "dst": 33419 },
{ "src": 14743, "type": "customer", "dst": 35944 },
{ "src": 14745, "type": "customer", "dst": 13792 },
{ "src": 14745, "type": "customer", "dst": 16570 },
{ "src": 14745, "type": "customer", "dst": 19833 },
{ "src": 14745, "type": "customer", "dst": 29791 },
{ "src": 14745, "type": "customer", "dst": 40111 },
{ "src": 14745, "type": "customer", "dst": 4970 },
{ "src": 14753, "type": "customer", "dst": 32791 },
{ "src": 14753, "type": "customer", "dst": 3762 },
{ "src": 14753, "type": "customer", "dst": 47049 },
{ "src": 14754, "type": "customer", "dst": 262205 },
{ "src": 14754, "type": "customer", "dst": 27742 },
{ "src": 14754, "type": "customer", "dst": 27761 },
{ "src": 14754, "type": "customer", "dst": 27811 },
{ "src": 14840, "type": "peer", "dst": 16735 },
{ "src": 14840, "type": "peer", "dst": 19151 },
{ "src": 14840, "type": "peer", "dst": 20940 },
{ "src": 14840, "type": "customer", "dst": 22128 },
{ "src": 14840, "type": "peer", "dst": 22822 },
{ "src": 14840, "type": "peer", "dst": 25933 },
{ "src": 14840, "type": "peer", "dst": 262706 },
{ "src": 14840, "type": "customer", "dst": 262907 },
{ "src": 14840, "type": "peer", "dst": 28283 },
{ "src": 14840, "type": "customer", "dst": 28288 },
{ "src": 14840, "type": "peer", "dst": 28303 },
{ "src": 14840, "type": "peer", "dst": 28327 },
{ "src": 14840, "type": "peer", "dst": 28329 },
{ "src": 14840, "type": "peer", "dst": 28343 },
{ "src": 14840, "type": "customer", "dst": 28368 },
{ "src": 14840, "type": "peer", "dst": 28646 },
{ "src": 14840, "type": "peer", "dst": 36692 },
{ "src": 14840, "type": "customer", "dst": 53222 },
{ "src": 14840, "type": "peer", "dst": 53237 },
{ "src": 14840, "type": "peer", "dst": 57731 },
{ "src": 14840, "type": "peer", "dst": 61903 },
{ "src": 14868, "type": "customer", "dst": 14457 },
{ "src": 14868, "type": "peer", "dst": 18881 },
{ "src": 14868, "type": "peer", "dst": 262394 },
{ "src": 14868, "type": "customer", "dst": 262411 },
{ "src": 14868, "type": "peer", "dst": 262750 },
{ "src": 14868, "type": "customer", "dst": 262841 },
{ "src": 14868, "type": "customer", "dst": 262911 },
{ "src": 14868, "type": "customer", "dst": 28158 },
{ "src": 14868, "type": "customer", "dst": 28285 },
{ "src": 14868, "type": "customer", "dst": 28325 },
{ "src": 14868, "type": "customer", "dst": 52656 },
{ "src": 14868, "type": "customer", "dst": 52670 },
{ "src": 14868, "type": "customer", "dst": 52724 },
{ "src": 14868, "type": "customer", "dst": 52817 },
{ "src": 14868, "type": "peer", "dst": 53237 },
{ "src": 14985, "type": "customer", "dst": 13365 },
{ "src": 14985, "type": "customer", "dst": 27234 },
{ "src": 14985, "type": "customer", "dst": 31817 },
{ "src": 15003, "type": "customer", "dst": 198412 },
{ "src": 15026, "type": "customer", "dst": 14328 },
{ "src": 15026, "type": "customer", "dst": 53023 },
{ "src": 15029, "type": "customer", "dst": 19050 },
{ "src": 15085, "type": "customer", "dst": 47583 },
{ "src": 15085, "type": "customer", "dst": 53257 },
{ "src": 15085, "type": "customer", "dst": 54155 },
{ "src": 15085, "type": "customer", "dst": 63132 },
{ "src": 15108, "type": "customer", "dst": 16615 },
{ "src": 15108, "type": "customer", "dst": 53663 },
{ "src": 15108, "type": "customer", "dst": 54342 },
{ "src": 15290, "type": "customer", "dst": 15000 },
{ "src": 15290, "type": "peer", "dst": 15412 },
{ "src": 15290, "type": "customer", "dst": 16729 },
{ "src": 15290, "type": "customer", "dst": 16839 },
{ "src": 15290, "type": "peer", "dst": 19151 },
{ "src": 15290, "type": "customer", "dst": 21992 },
{ "src": 15290, "type": "customer", "dst": 23227 },
{ "src": 15290, "type": "customer", "dst": 26321 },
{ "src": 15290, "type": "customer", "dst": 26441 },
{ "src": 15290, "type": "customer", "dst": 30614 },
{ "src": 15290, "type": "customer", "dst": 36031 },
{ "src": 15290, "type": "customer", "dst": 3958 },
{ "src": 15290, "type": "customer", "dst": 7122 },
{ "src": 15290, "type": "customer", "dst": 7381 },
{ "src": 15290, "type": "customer", "dst": 803 },
{ "src": 15296, "type": "customer", "dst": 33549 },
{ "src": 15296, "type": "customer", "dst": 393468 },
{ "src": 15296, "type": "customer", "dst": 54520 },
{ "src": 15296, "type": "customer", "dst": 62742 },
{ "src": 15377, "type": "peer", "dst": 20764 },
{ "src": 15377, "type": "peer", "dst": 28917 },
{ "src": 15377, "type": "peer", "dst": 29076 },
{ "src": 15377, "type": "peer", "dst": 31133 },
{ "src": 15377, "type": "peer", "dst": 39792 },
{ "src": 15377, "type": "peer", "dst": 39912 },
{ "src": 15377, "type": "customer", "dst": 41232 },
{ "src": 15377, "type": "customer", "dst": 48964 },
{ "src": 15377, "type": "customer", "dst": 56876 },
{ "src": 15412, "type": "customer", "dst": 12486 },
{ "src": 15412, "type": "customer", "dst": 12880 },
{ "src": 15412, "type": "peer", "dst": 16265 },
{ "src": 15412, "type": "customer", "dst": 18101 },
{ "src": 15412, "type": "peer", "dst": 19151 },
{ "src": 15412, "type": "peer", "dst": 20485 },
{ "src": 15412, "type": "peer", "dst": 20940 },
{ "src": 15412, "type": "peer", "dst": 22773 },
{ "src": 15412, "type": "peer", "dst": 22822 },
{ "src": 15412, "type": "customer", "dst": 23749 },
{ "src": 15412, "type": "peer", "dst": 28757 },
{ "src": 15412, "type": "customer", "dst": 29664 },
{ "src": 15412, "type": "customer", "dst": 33788 },
{ "src": 15412, "type": "peer", "dst": 33891 },
{ "src": 15412, "type": "peer", "dst": 44646 },
{ "src": 15412, "type": "customer", "dst": 48159 },
{ "src": 15412, "type": "peer", "dst": 58453 },
{ "src": 15412, "type": "customer", "dst": 7568 },
{ "src": 15412, "type": "customer", "dst": 9304 },
{ "src": 15412, "type": "customer", "dst": 9381 },
{ "src": 15412, "type": "customer", "dst": 9848 },
{ "src": 15419, "type": "customer", "dst": 42181 },
{ "src": 15419, "type": "customer", "dst": 50320 },
{ "src": 15440, "type": "customer", "dst": 35135 },
{ "src": 15440, "type": "customer", "dst": 35407 },
{ "src": 15440, "type": "customer", "dst": 42181 },
{ "src": 15440, "type": "customer", "dst": 42380 },
{ "src": 15440, "type": "customer", "dst": 56413 },
{ "src": 15547, "type": "peer", "dst": 19151 },
{ "src": 15547, "type": "peer", "dst": 20485 },
{ "src": 15547, "type": "peer", "dst": 20562 },
{ "src": 15547, "type": "peer", "dst": 28917 },
{ "src": 15547, "type": "customer", "dst": 31124 },
{ "src": 15547, "type": "peer", "dst": 31133 },
{ "src": 15547, "type": "customer", "dst": 39440 },
{ "src": 15547, "type": "peer", "dst": 39792 },
{ "src": 15547, "type": "peer", "dst": 39912 },
{ "src": 15547, "type": "peer", "dst": 44953 },
{ "src": 15547, "type": "peer", "dst": 50384 },
{ "src": 15576, "type": "customer", "dst": 196621 },
{ "src": 15576, "type": "peer", "dst": 33891 },
{ "src": 15576, "type": "customer", "dst": 43122 },
{ "src": 15576, "type": "customer", "dst": 58265 },
{ "src": 15576, "type": "customer", "dst": 6772 },
{ "src": 15576, "type": "customer", "dst": 8758 },
{ "src": 15623, "type": "customer", "dst": 39037 },
{ "src": 15623, "type": "customer", "dst": 39865 },
{ "src": 15623, "type": "customer", "dst": 41590 },
{ "src": 15623, "type": "customer", "dst": 48795 },
{ "src": 15670, "type": "customer", "dst": 34430 },
{ "src": 15694, "type": "customer", "dst": 200094 },
{ "src": 15694, "type": "customer", "dst": 24961 },
{ "src": 15694, "type": "customer", "dst": 28978 },
{ "src": 15694, "type": "customer", "dst": 35720 },
{ "src": 15694, "type": "customer", "dst": 41406 },
{ "src": 15694, "type": "customer", "dst": 57355 },
{ "src": 15694, "type": "customer", "dst": 58017 },
{ "src": 15706, "type": "customer", "dst": 36972 },
{ "src": 15706, "type": "customer", "dst": 37197 },
{ "src": 15706, "type": "customer", "dst": 37211 },
{ "src": 15720, "type": "peer", "dst": 20485 },
{ "src": 15720, "type": "peer", "dst": 20562 },
{ "src": 15720, "type": "peer", "dst": 28917 },
{ "src": 15720, "type": "peer", "dst": 31133 },
{ "src": 15720, "type": "peer", "dst": 39792 },
{ "src": 15720, "type": "peer", "dst": 39912 },
{ "src": 15720, "type": "peer", "dst": 44953 },
{ "src": 15720, "type": "peer", "dst": 49605 },
{ "src": 15720, "type": "peer", "dst": 50384 },
{ "src": 15725, "type": "customer", "dst": 49885 },
{ "src": 15744, "type": "customer", "dst": 199279 },
{ "src": 15744, "type": "customer", "dst": 35434 },
{ "src": 15744, "type": "customer", "dst": 42935 },
{ "src": 15763, "type": "peer", "dst": 19151 },
{ "src": 15763, "type": "peer", "dst": 20485 },
{ "src": 15763, "type": "peer", "dst": 20562 },
{ "src": 15763, "type": "peer", "dst": 28917 },
{ "src": 15763, "type": "peer", "dst": 39792 },
{ "src": 15763, "type": "peer", "dst": 39912 },
{ "src": 15763, "type": "customer", "dst": 43455 },
{ "src": 15763, "type": "peer", "dst": 44953 },
{ "src": 15763, "type": "customer", "dst": 57443 },
{ "src": 15763, "type": "customer", "dst": 61244 },
{ "src": 15772, "type": "customer", "dst": 13121 },
{ "src": 15772, "type": "customer", "dst": 197781 },
{ "src": 15772, "type": "customer", "dst": 202165 },
{ "src": 15772, "type": "peer", "dst": 20632 },
{ "src": 15772, "type": "peer", "dst": 21219 },
{ "src": 15772, "type": "customer", "dst": 24610 },
{ "src": 15772, "type": "customer", "dst": 24685 },
{ "src": 15772, "type": "customer", "dst": 24703 },
{ "src": 15772, "type": "customer", "dst": 28761 },
{ "src": 15772, "type": "peer", "dst": 29076 },
{ "src": 15772, "type": "customer", "dst": 31148 },
{ "src": 15772, "type": "customer", "dst": 31360 },
{ "src": 15772, "type": "peer", "dst": 33891 },
{ "src": 15772, "type": "peer", "dst": 39792 },
{ "src": 15772, "type": "peer", "dst": 39912 },
{ "src": 15772, "type": "customer", "dst": 41540 },
{ "src": 15772, "type": "peer", "dst": 42632 },
{ "src": 15772, "type": "customer", "dst": 44526 },
{ "src": 15772, "type": "peer", "dst": 44953 },
{ "src": 15772, "type": "customer", "dst": 49662 },
{ "src": 15772, "type": "customer", "dst": 49995 },
{ "src": 15772, "type": "customer", "dst": 5593 },
{ "src": 15772, "type": "customer", "dst": 56688 },
{ "src": 15772, "type": "customer", "dst": 56978 },
{ "src": 15782, "type": "customer", "dst": 34936 },
{ "src": 15782, "type": "customer", "dst": 39731 },
{ "src": 15782, "type": "customer", "dst": 44297 },
{ "src": 15830, "type": "peer", "dst": 19151 },
{ "src": 15830, "type": "customer", "dst": 199391 },
{ "src": 15830, "type": "customer", "dst": 199843 },
{ "src": 15830, "type": "peer", "dst": 20485 },
{ "src": 15830, "type": "peer", "dst": 20562 },
{ "src": 15830, "type": "peer", "dst": 20764 },
{ "src": 15830, "type": "customer", "dst": 23197 },
{ "src": 15830, "type": "customer", "dst": 24753 },
{ "src": 15830, "type": "peer", "dst": 28917 },
{ "src": 15830, "type": "peer", "dst": 31133 },
{ "src": 15830, "type": "peer", "dst": 33891 },
{ "src": 15830, "type": "peer", "dst": 39792 },
{ "src": 15830, "type": "peer", "dst": 39912 },
{ "src": 15830, "type": "peer", "dst": 44953 },
{ "src": 15830, "type": "peer", "dst": 49605 },
{ "src": 15830, "type": "peer", "dst": 50384 },
{ "src": 15830, "type": "customer", "dst": 50845 },
{ "src": 15830, "type": "customer", "dst": 8261 },
{ "src": 15836, "type": "customer", "dst": 35346 },
{ "src": 15836, "type": "customer", "dst": 49691 },
{ "src": 15836, "type": "customer", "dst": 57916 },
{ "src": 15836, "type": "customer", "dst": 61208 },
{ "src": 15836, "type": "customer", "dst": 8474 },
{ "src": 15895, "type": "customer", "dst": 12530 },
{ "src": 15895, "type": "peer", "dst": 28917 },
{ "src": 15895, "type": "peer", "dst": 29076 },
{ "src": 15895, "type": "customer", "dst": 34094 },
{ "src": 15895, "type": "customer", "dst": 39644 },
{ "src": 15895, "type": "peer", "dst": 39792 },
{ "src": 15895, "type": "peer", "dst": 39912 },
{ "src": 15895, "type": "customer", "dst": 47838 },
{ "src": 15895, "type": "peer", "dst": 50384 },
{ "src": 1591, "type": "peer", "dst": 27066 },
{ "src": 15924, "type": "customer", "dst": 16069 },
{ "src": 15924, "type": "customer", "dst": 35455 },
{ "src": 15924, "type": "customer", "dst": 47123 },
{ "src": 15924, "type": "customer", "dst": 62077 },
{ "src": 15924, "type": "customer", "dst": 8386 },
{ "src": 15926, "type": "peer", "dst": 50384 },
{ "src": 15933, "type": "peer", "dst": 20485 },
{ "src": 15933, "type": "peer", "dst": 28917 },
{ "src": 15933, "type": "peer", "dst": 29076 },
{ "src": 15933, "type": "peer", "dst": 31133 },
{ "src": 15933, "type": "peer", "dst": 39792 },
{ "src": 15933, "type": "peer", "dst": 39912 },
{ "src": 15982, "type": "customer", "dst": 34096 },
{ "src": 15982, "type": "customer", "dst": 41874 },
{ "src": 15982, "type": "customer", "dst": 41897 },
{ "src": 16095, "type": "customer", "dst": 197927 },
{ "src": 16095, "type": "customer", "dst": 35033 },
{ "src": 16095, "type": "customer", "dst": 48726 },
{ "src": 16110, "type": "customer", "dst": 197572 },
{ "src": 16150, "type": "customer", "dst": 15782 },
{ "src": 16150, "type": "peer", "dst": 19151 },
{ "src": 16150, "type": "peer", "dst": 20562 },
{ "src": 16150, "type": "peer", "dst": 28917 },
{ "src": 16150, "type": "peer", "dst": 31133 },
{ "src": 16150, "type": "peer", "dst": 33891 },
{ "src": 16150, "type": "customer", "dst": 34556 },
{ "src": 16150, "type": "peer", "dst": 39792 },
{ "src": 16150, "type": "peer", "dst": 39912 },
{ "src": 16150, "type": "customer", "dst": 42499 },
{ "src": 16150, "type": "customer", "dst": 42732 },
{ "src": 16150, "type": "peer", "dst": 44953 },
{ "src": 16150, "type": "customer", "dst": 49788 },
{ "src": 16150, "type": "peer", "dst": 50384 },
{ "src": 16152, "type": "customer", "dst": 197047 },
{ "src": 16178, "type": "peer", "dst": 20485 },
{ "src": 16178, "type": "customer", "dst": 25467 },
{ "src": 16178, "type": "peer", "dst": 28917 },
{ "src": 16178, "type": "peer", "dst": 29076 },
{ "src": 16178, "type": "peer", "dst": 31133 },
{ "src": 16178, "type": "peer", "dst": 39792 },
{ "src": 16178, "type": "peer", "dst": 39912 },
{ "src": 16178, "type": "customer", "dst": 43947 },
{ "src": 16178, "type": "customer", "dst": 8670 },
{ "src": 16179, "type": "customer", "dst": 198693 },
{ "src": 16179, "type": "customer", "dst": 199259 },
{ "src": 16179, "type": "customer", "dst": 202239 },
{ "src": 16179, "type": "peer", "dst": 29076 },
{ "src": 16202, "type": "customer", "dst": 34256 },
{ "src": 16202, "type": "customer", "dst": 35065 },
{ "src": 16202, "type": "customer", "dst": 47877 },
{ "src": 16245, "type": "customer", "dst": 12617 },
{ "src": 16245, "type": "customer", "dst": 198206 },
{ "src": 16245, "type": "customer", "dst": 43806 },
{ "src": 16265, "type": "customer", "dst": 1257 },
{ "src": 16265, "type": "customer", "dst": 12696 },
{ "src": 16265, "type": "customer", "dst": 13064 },
{ "src": 16265, "type": "customer", "dst": 15933 },
{ "src": 16265, "type": "customer", "dst": 16178 },
{ "src": 16265, "type": "peer", "dst": 16735 },
{ "src": 16265, "type": "customer", "dst": 17557 },
{ "src": 16265, "type": "peer", "dst": 19151 },
{ "src": 16265, "type": "peer", "dst": 20485 },
{ "src": 16265, "type": "peer", "dst": 20562 },
{ "src": 16265, "type": "peer", "dst": 20764 },
{ "src": 16265, "type": "customer", "dst": 20940 },
{ "src": 16265, "type": "peer", "dst": 20965 },
{ "src": 16265, "type": "customer", "dst": 21309 },
{ "src": 16265, "type": "customer", "dst": 25467 },
{ "src": 16265, "type": "customer", "dst": 2686 },
{ "src": 16265, "type": "peer", "dst": 28917 },
{ "src": 16265, "type": "customer", "dst": 29049 },
{ "src": 16265, "type": "customer", "dst": 29632 },
{ "src": 16265, "type": "customer", "dst": 31042 },
{ "src": 16265, "type": "peer", "dst": 31133 },
{ "src": 16265, "type": "peer", "dst": 33891 },
{ "src": 16265, "type": "customer", "dst": 34224 },
{ "src": 16265, "type": "customer", "dst": 35805 },
{ "src": 16265, "type": "customer", "dst": 38193 },
{ "src": 16265, "type": "peer", "dst": 39792 },
{ "src": 16265, "type": "peer", "dst": 39912 },
{ "src": 16265, "type": "customer", "dst": 44217 },
{ "src": 16265, "type": "customer", "dst": 44646 },
{ "src": 16265, "type": "peer", "dst": 44953 },
{ "src": 16265, "type": "customer", "dst": 45177 },
{ "src": 16265, "type": "peer", "dst": 49605 },
{ "src": 16265, "type": "customer", "dst": 51580 },
{ "src": 16265, "type": "customer", "dst": 5391 },
{ "src": 16265, "type": "customer", "dst": 5483 },
{ "src": 16265, "type": "customer", "dst": 57731 },
{ "src": 16265, "type": "customer", "dst": 58453 },
{ "src": 16265, "type": "customer", "dst": 61026 },
{ "src": 16265, "type": "customer", "dst": 61266 },
{ "src": 16265, "type": "customer", "dst": 62292 },
{ "src": 16265, "type": "customer", "dst": 6734 },
{ "src": 16265, "type": "customer", "dst": 6910 },
{ "src": 16265, "type": "customer", "dst": 7713 },
{ "src": 16265, "type": "customer", "dst": 8190 },
{ "src": 16265, "type": "customer", "dst": 8462 },
{ "src": 16265, "type": "customer", "dst": 8764 },
{ "src": 16265, "type": "customer", "dst": 8926 },
{ "src": 16265, "type": "customer", "dst": 8968 },
{ "src": 16321, "type": "peer", "dst": 39792 },
{ "src": 16321, "type": "peer", "dst": 50384 },
{ "src": 16617, "type": "customer", "dst": 13638 },
{ "src": 16617, "type": "customer", "dst": 21953 },
{ "src": 16617, "type": "customer", "dst": 40814 },
{ "src": 16637, "type": "peer", "dst": 19151 },
{ "src": 16637, "type": "peer", "dst": 20485 },
{ "src": 16637, "type": "peer", "dst": 28917 },
{ "src": 16637, "type": "peer", "dst": 31133 },
{ "src": 16637, "type": "customer", "dst": 327802 },
{ "src": 16637, "type": "customer", "dst": 36994 },
{ "src": 16637, "type": "customer", "dst": 37424 },
{ "src": 16637, "type": "peer", "dst": 39792 },
{ "src": 16637, "type": "peer", "dst": 39912 },
{ "src": 16637, "type": "peer", "dst": 44953 },
{ "src": 16637, "type": "peer", "dst": 50384 },
{ "src": 16657, "type": "customer", "dst": 10583 },
{ "src": 16657, "type": "customer", "dst": 1277 },
{ "src": 16657, "type": "customer", "dst": 13938 },
{ "src": 16657, "type": "customer", "dst": 15231 },
{ "src": 16657, "type": "customer", "dst": 26881 },
{ "src": 16657, "type": "customer", "dst": 36373 },
{ "src": 16657, "type": "customer", "dst": 393473 },
{ "src": 16657, "type": "customer", "dst": 46925 },
{ "src": 16657, "type": "customer", "dst": 47072 },
{ "src": 16735, "type": "customer", "dst": 11432 },
{ "src": 16735, "type": "customer", "dst": 14868 },
{ "src": 16735, "type": "peer", "dst": 18881 },
{ "src": 16735, "type": "peer", "dst": 19151 },
{ "src": 16735, "type": "peer", "dst": 197426 },
{ "src": 16735, "type": "customer", "dst": 19960 },
{ "src": 16735, "type": "customer", "dst": 20144 },
{ "src": 16735, "type": "peer", "dst": 20485 },
{ "src": 16735, "type": "peer", "dst": 20940 },
{ "src": 16735, "type": "peer", "dst": 22822 },
{ "src": 16735, "type": "peer", "dst": 23106 },
{ "src": 16735, "type": "peer", "dst": 23197 },
{ "src": 16735, "type": "peer", "dst": 23520 },
{ "src": 16735, "type": "peer", "dst": 25933 },
{ "src": 16735, "type": "peer", "dst": 262195 },
{ "src": 16735, "type": "customer", "dst": 262306 },
{ "src": 16735, "type": "peer", "dst": 262355 },
{ "src": 16735, "type": "peer", "dst": 262394 },
{ "src": 16735, "type": "peer", "dst": 262434 },
{ "src": 16735, "type": "customer", "dst": 262442 },
{ "src": 16735, "type": "customer", "dst": 262596 },
{ "src": 16735, "type": "customer", "dst": 262659 },
{ "src": 16735, "type": "customer", "dst": 262699 },
{ "src": 16735, "type": "customer", "dst": 262706 },
{ "src": 16735, "type": "peer", "dst": 262727 },
{ "src": 16735, "type": "peer", "dst": 262750 },
{ "src": 16735, "type": "customer", "dst": 262755 },
{ "src": 16735, "type": "customer", "dst": 262761 },
{ "src": 16735, "type": "peer", "dst": 262907 },
{ "src": 16735, "type": "customer", "dst": 262986 },
{ "src": 16735, "type": "customer", "dst": 262994 },
{ "src": 16735, "type": "peer", "dst": 263113 },
{ "src": 16735, "type": "peer", "dst": 263301 },
{ "src": 16735, "type": "peer", "dst": 263314 },
{ "src": 16735, "type": "customer", "dst": 263406 },
{ "src": 16735, "type": "peer", "dst": 263432 },
{ "src": 16735, "type": "peer", "dst": 263535 },
{ "src": 16735, "type": "peer", "dst": 27471 },
{ "src": 16735, "type": "customer", "dst": 27693 },
{ "src": 16735, "type": "peer", "dst": 28165 },
{ "src": 16735, "type": "customer", "dst": 28178 },
{ "src": 16735, "type": "customer", "dst": 28202 },
{ "src": 16735, "type": "peer", "dst": 28250 },
{ "src": 16735, "type": "customer", "dst": 28277 },
{ "src": 16735, "type": "peer", "dst": 28278 },
{ "src": 16735, "type": "peer", "dst": 28283 },
{ "src": 16735, "type": "peer", "dst": 28288 },
{ "src": 16735, "type": "peer", "dst": 28303 },
{ "src": 16735, "type": "customer", "dst": 28306 },
{ "src": 16735, "type": "customer", "dst": 28327 },
{ "src": 16735, "type": "peer", "dst": 28329 },
{ "src": 16735, "type": "peer", "dst": 28343 },
{ "src": 16735, "type": "customer", "dst": 28360 },
{ "src": 16735, "type": "peer", "dst": 28366 },
{ "src": 16735, "type": "peer", "dst": 28599 },
{ "src": 16735, "type": "customer", "dst": 28665 },
{ "src": 16735, "type": "peer", "dst": 29791 },
{ "src": 16735, "type": "peer", "dst": 36408 },
{ "src": 16735, "type": "peer", "dst": 36692 },
{ "src": 16735, "type": "peer", "dst": 40627 },
{ "src": 16735, "type": "peer", "dst": 44654 },
{ "src": 16735, "type": "peer", "dst": 44824 },
{ "src": 16735, "type": "peer", "dst": 52547 },
{ "src": 16735, "type": "peer", "dst": 52734 },
{ "src": 16735, "type": "peer", "dst": 52858 },
{ "src": 16735, "type": "peer", "dst": 52977 },
{ "src": 16735, "type": "customer", "dst": 53059 },
{ "src": 16735, "type": "peer", "dst": 53208 },
{ "src": 16735, "type": "peer", "dst": 53222 },
{ "src": 16735, "type": "peer", "dst": 53237 },
{ "src": 16735, "type": "peer", "dst": 53276 },
{ "src": 16735, "type": "peer", "dst": 57731 },
{ "src": 16735, "type": "peer", "dst": 61568 },
{ "src": 16735, "type": "customer", "dst": 61884 },
{ "src": 16735, "type": "peer", "dst": 6453 },
{ "src": 16839, "type": "peer", "dst": 19151 },
{ "src": 16839, "type": "peer", "dst": 20485 },
{ "src": 16839, "type": "peer", "dst": 20562 },
{ "src": 16839, "type": "peer", "dst": 28917 },
{ "src": 16839, "type": "peer", "dst": 31133 },
{ "src": 16839, "type": "peer", "dst": 38809 },
{ "src": 16839, "type": "peer", "dst": 39792 },
{ "src": 16839, "type": "peer", "dst": 39912 },
{ "src": 16839, "type": "peer", "dst": 44953 },
{ "src": 16839, "type": "peer", "dst": 50384 },
{ "src": 16851, "type": "customer", "dst": 13742 },
{ "src": 16851, "type": "customer", "dst": 15108 },
{ "src": 16851, "type": "customer", "dst": 29900 },
{ "src": 16942, "type": "customer", "dst": 13783 },
{ "src": 16942, "type": "customer", "dst": 23118 },
{ "src": 16942, "type": "customer", "dst": 33647 },
{ "src": 16942, "type": "customer", "dst": 7250 },
{ "src": 17012, "type": "customer", "dst": 30300 },
{ "src": 17012, "type": "customer", "dst": 30393 },
{ "src": 17054, "type": "customer", "dst": 13492 },
{ "src": 17054, "type": "customer", "dst": 13981 },
{ "src": 17054, "type": "customer", "dst": 20341 },
{ "src": 17054, "type": "customer", "dst": 393441 },
{ "src": 17054, "type": "customer", "dst": 54822 },
{ "src": 17072, "type": "customer", "dst": 22884 },
{ "src": 17072, "type": "customer", "dst": 263158 },
{ "src": 17072, "type": "customer", "dst": 7184 },
{ "src": 17113, "type": "customer", "dst": 11180 },
{ "src": 17113, "type": "customer", "dst": 33574 },
{ "src": 17113, "type": "customer", "dst": 40733 },
{ "src": 17143, "type": "customer", "dst": 40720 },
{ "src": 17143, "type": "customer", "dst": 62968 },
{ "src": 17143, "type": "customer", "dst": 63083 },
{ "src": 17231, "type": "customer", "dst": 11261 },
{ "src": 17231, "type": "customer", "dst": 53590 },
{ "src": 17231, "type": "customer", "dst": 57515 },
{ "src": 17231, "type": "customer", "dst": 6998 },
{ "src": 1733, "type": "peer", "dst": 27064 },
{ "src": 1733, "type": "customer", "dst": 6034 },
{ "src": 17378, "type": "customer", "dst": 11180 },
{ "src": 17378, "type": "customer", "dst": 17113 },
{ "src": 17378, "type": "customer", "dst": 26815 },
{ "src": 17378, "type": "customer", "dst": 53291 },
{ "src": 17378, "type": "customer", "dst": 62541 },
{ "src": 17439, "type": "customer", "dst": 132542 },
{ "src": 17439, "type": "customer", "dst": 132571 },
{ "src": 17439, "type": "customer", "dst": 36236 },
{ "src": 17439, "type": "customer", "dst": 36408 },
{ "src": 17439, "type": "customer", "dst": 42473 },
{ "src": 17439, "type": "customer", "dst": 9666 },
{ "src": 17537, "type": "peer", "dst": 20485 },
{ "src": 17557, "type": "customer", "dst": 17539 },
{ "src": 17557, "type": "peer", "dst": 19151 },
{ "src": 17557, "type": "peer", "dst": 20485 },
{ "src": 17557, "type": "peer", "dst": 20562 },
{ "src": 17557, "type": "peer", "dst": 28917 },
{ "src": 17557, "type": "peer", "dst": 31133 },
{ "src": 17557, "type": "peer", "dst": 33891 },
{ "src": 17557, "type": "customer", "dst": 38193 },
{ "src": 17557, "type": "peer", "dst": 39792 },
{ "src": 17557, "type": "peer", "dst": 39912 },
{ "src": 17557, "type": "peer", "dst": 44953 },
{ "src": 17557, "type": "peer", "dst": 50384 },
{ "src": 17557, "type": "customer", "dst": 9557 },
{ "src": 1764, "type": "peer", "dst": 10026 },
{ "src": 1764, "type": "peer", "dst": 12695 },
{ "src": 1764, "type": "peer", "dst": 12714 },
{ "src": 1764, "type": "peer", "dst": 12874 },
{ "src": 1764, "type": "peer", "dst": 12883 },
{ "src": 1764, "type": "peer", "dst": 12989 },
{ "src": 1764, "type": "customer", "dst": 13008 },
{ "src": 1764, "type": "peer", "dst": 13030 },
{ "src": 1764, "type": "peer", "dst": 13237 },
{ "src": 1764, "type": "peer", "dst": 13249 },
{ "src": 1764, "type": "peer", "dst": 15003 },
{ "src": 1764, "type": "peer", "dst": 15377 },
{ "src": 1764, "type": "peer", "dst": 15547 },
{ "src": 1764, "type": "peer", "dst": 15576 },
{ "src": 1764, "type": "peer", "dst": 15623 },
{ "src": 1764, "type": "peer", "dst": 15720 },
{ "src": 1764, "type": "peer", "dst": 15763 },
{ "src": 1764, "type": "peer", "dst": 15772 },
{ "src": 1764, "type": "peer", "dst": 15830 },
{ "src": 1764, "type": "peer", "dst": 15895 },
{ "src": 1764, "type": "peer", "dst": 15933 },
{ "src": 1764, "type": "peer", "dst": 16150 },
{ "src": 1764, "type": "peer", "dst": 16178 },
{ "src": 1764, "type": "peer", "dst": 16265 },
{ "src": 1764, "type": "peer", "dst": 16637 },
{ "src": 1764, "type": "peer", "dst": 16839 },
{ "src": 1764, "type": "peer", "dst": 17557 },
{ "src": 1764, "type": "customer", "dst": 1853 },
{ "src": 1764, "type": "peer", "dst": 19151 },
{ "src": 1764, "type": "peer", "dst": 196621 },
{ "src": 1764, "type": "peer", "dst": 196844 },
{ "src": 1764, "type": "peer", "dst": 197426 },
{ "src": 1764, "type": "peer", "dst": 197985 },
{ "src": 1764, "type": "peer", "dst": 202194 },
{ "src": 1764, "type": "peer", "dst": 20485 },
{ "src": 1764, "type": "peer", "dst": 20562 },
{ "src": 1764, "type": "peer", "dst": 20633 },
{ "src": 1764, "type": "peer", "dst": 20764 },
{ "src": 1764, "type": "peer", "dst": 20804 },
{ "src": 1764, "type": "peer", "dst": 21011 },
{ "src": 1764, "type": "customer", "dst": 21013 },
{ "src": 1764, "type": "peer", "dst": 21219 },
{ "src": 1764, "type": "customer", "dst": 21360 },
{ "src": 1764, "type": "peer", "dst": 22822 },
{ "src": 1764, "type": "peer", "dst": 24637 },
{ "src": 1764, "type": "peer", "dst": 24724 },
{ "src": 1764, "type": "peer", "dst": 24940 },
{ "src": 1764, "type": "peer", "dst": 24961 },
{ "src": 1764, "type": "peer", "dst": 25394 },
{ "src": 1764, "type": "customer", "dst": 25522 },
{ "src": 1764, "type": "peer", "dst": 2686 },
{ "src": 1764, "type": "peer", "dst": 28283 },
{ "src": 1764, "type": "peer", "dst": 2854 },
{ "src": 1764, "type": "peer", "dst": 28676 },
{ "src": 1764, "type": "peer", "dst": 28917 },
{ "src": 1764, "type": "peer", "dst": 29049 },
{ "src": 1764, "type": "customer", "dst": 29056 },
{ "src": 1764, "type": "peer", "dst": 29076 },
{ "src": 1764, "type": "peer", "dst": 29119 },
{ "src": 1764, "type": "peer", "dst": 29226 },
{ "src": 1764, "type": "peer", "dst": 29632 },
{ "src": 1764, "type": "peer", "dst": 29791 },
{ "src": 1764, "type": "peer", "dst": 30419 },
{ "src": 1764, "type": "customer", "dst": 30971 },
{ "src": 1764, "type": "peer", "dst": 31042 },
{ "src": 1764, "type": "peer", "dst": 31133 },
{ "src": 1764, "type": "peer", "dst": 31500 },
{ "src": 1764, "type": "peer", "dst": 3209 },
{ "src": 1764, "type": "peer", "dst": 3212 },
{ "src": 1764, "type": "peer", "dst": 3255 },
{ "src": 1764, "type": "peer", "dst": 3267 },
{ "src": 1764, "type": "peer", "dst": 3327 },
{ "src": 1764, "type": "peer", "dst": 33891 },
{ "src": 1764, "type": "peer", "dst": 33986 },
{ "src": 1764, "type": "peer", "dst": 34123 },
{ "src": 1764, "type": "peer", "dst": 34224 },
{ "src": 1764, "type": "peer", "dst": 34968 },
{ "src": 1764, "type": "peer", "dst": 3549 },
{ "src": 1764, "type": "peer", "dst": 35805 },
{ "src": 1764, "type": "peer", "dst": 36236 },
{ "src": 1764, "type": "peer", "dst": 36408 },
{ "src": 1764, "type": "peer", "dst": 36692 },
{ "src": 1764, "type": "peer", "dst": 38193 },
{ "src": 1764, "type": "peer", "dst": 39792 },
{ "src": 1764, "type": "peer", "dst": 39912 },
{ "src": 1764, "type": "peer", "dst": 39923 },
{ "src": 1764, "type": "peer", "dst": 41313 },
{ "src": 1764, "type": "peer", "dst": 42184 },
{ "src": 1764, "type": "peer", "dst": 43561 },
{ "src": 1764, "type": "peer", "dst": 43727 },
{ "src": 1764, "type": "peer", "dst": 44217 },
{ "src": 1764, "type": "peer", "dst": 44654 },
{ "src": 1764, "type": "peer", "dst": 44953 },
{ "src": 1764, "type": "peer", "dst": 4589 },
{ "src": 1764, "type": "peer", "dst": 4651 },
{ "src": 1764, "type": "peer", "dst": 47169 },
{ "src": 1764, "type": "peer", "dst": 4761 },
{ "src": 1764, "type": "peer", "dst": 47622 },
{ "src": 1764, "type": "peer", "dst": 47872 },
{ "src": 1764, "type": "peer", "dst": 4788 },
{ "src": 1764, "type": "peer", "dst": 48971 },
{ "src": 1764, "type": "peer", "dst": 50384 },
{ "src": 1764, "type": "peer", "dst": 50923 },
{ "src": 1764, "type": "peer", "dst": 5391 },
{ "src": 1764, "type": "customer", "dst": 5404 },
{ "src": 1764, "type": "peer", "dst": 5483 },
{ "src": 1764, "type": "peer", "dst": 5563 },
{ "src": 1764, "type": "peer", "dst": 5580 },
{ "src": 1764, "type": "peer", "dst": 5588 },
{ "src": 1764, "type": "peer", "dst": 5713 },
{ "src": 1764, "type": "peer", "dst": 57344 },
{ "src": 1764, "type": "peer", "dst": 57463 },
{ "src": 1764, "type": "peer", "dst": 58002 },
{ "src": 1764, "type": "peer", "dst": 58453 },
{ "src": 1764, "type": "peer", "dst": 59560 },
{ "src": 1764, "type": "peer", "dst": 60764 },
{ "src": 1764, "type": "peer", "dst": 61266 },
{ "src": 1764, "type": "peer", "dst": 6663 },
{ "src": 1764, "type": "peer", "dst": 6697 },
{ "src": 1764, "type": "peer", "dst": 6772 },
{ "src": 1764, "type": "peer", "dst": 6774 },
{ "src": 1764, "type": "peer", "dst": 6830 },
{ "src": 1764, "type": "peer", "dst": 6910 },
{ "src": 1764, "type": "peer", "dst": 7713 },
{ "src": 1764, "type": "peer", "dst": 8220 },
{ "src": 1764, "type": "peer", "dst": 8245 },
{ "src": 1764, "type": "peer", "dst": 8359 },
{ "src": 1764, "type": "peer", "dst": 8391 },
{ "src": 1764, "type": "peer", "dst": 8437 },
{ "src": 1764, "type": "peer", "dst": 8445 },
{ "src": 1764, "type": "peer", "dst": 8529 },
{ "src": 1764, "type": "peer", "dst": 8641 },
{ "src": 1764, "type": "peer", "dst": 8657 },
{ "src": 1764, "type": "peer", "dst": 8732 },
{ "src": 1764, "type": "peer", "dst": 8758 },
{ "src": 1764, "type": "peer", "dst": 8764 },
{ "src": 1764, "type": "peer", "dst": 8767 },
{ "src": 1764, "type": "peer", "dst": 8866 },
{ "src": 1764, "type": "peer", "dst": 8881 },
{ "src": 1764, "type": "peer", "dst": 8926 },
{ "src": 1764, "type": "peer", "dst": 8966 },
{ "src": 1764, "type": "peer", "dst": 9002 },
{ "src": 1764, "type": "peer", "dst": 9050 },
{ "src": 1764, "type": "peer", "dst": 9119 },
{ "src": 1764, "type": "peer", "dst": 9304 },
{ "src": 1764, "type": "peer", "dst": 9318 },
{ "src": 1764, "type": "peer", "dst": 9498 },
{ "src": 1764, "type": "peer", "dst": 9583 },
{ "src": 17762, "type": "customer", "dst": 132137 },
{ "src": 17762, "type": "customer", "dst": 18207 },
{ "src": 17762, "type": "customer", "dst": 33480 },
{ "src": 17762, "type": "customer", "dst": 9836 },
{ "src": 17812, "type": "customer", "dst": 64001 },
{ "src": 17841, "type": "customer", "dst": 23575 },
{ "src": 17841, "type": "customer", "dst": 45400 },
{ "src": 17841, "type": "customer", "dst": 9950 },
{ "src": 17922, "type": "customer", "dst": 18351 },
{ "src": 17922, "type": "peer", "dst": 20485 },
{ "src": 17922, "type": "customer", "dst": 38523 },
{ "src": 17922, "type": "customer", "dst": 38753 },
{ "src": 17922, "type": "customer", "dst": 38781 },
{ "src": 17922, "type": "customer", "dst": 45302 },
{ "src": 17922, "type": "customer", "dst": 45305 },
{ "src": 17922, "type": "customer", "dst": 45770 },
{ "src": 17922, "type": "customer", "dst": 46029 },
{ "src": 17922, "type": "customer", "dst": 4800 },
{ "src": 17922, "type": "customer", "dst": 55652 },
{ "src": 17922, "type": "customer", "dst": 55688 },
{ "src": 17922, "type": "customer", "dst": 7862 },
{ "src": 17970, "type": "customer", "dst": 24306 },
{ "src": 17970, "type": "customer", "dst": 6163 },
{ "src": 18101, "type": "customer", "dst": 10201 },
{ "src": 18101, "type": "customer", "dst": 131215 },
{ "src": 18101, "type": "customer", "dst": 131263 },
{ "src": 18101, "type": "customer", "dst": 131283 },
{ "src": 18101, "type": "customer", "dst": 132390 },
{ "src": 18101, "type": "customer", "dst": 132571 },
{ "src": 18101, "type": "customer", "dst": 132717 },
{ "src": 18101, "type": "customer", "dst": 132961 },
{ "src": 18101, "type": "customer", "dst": 17439 },
{ "src": 18101, "type": "customer", "dst": 23957 },
{ "src": 18101, "type": "customer", "dst": 2697 },
{ "src": 18101, "type": "customer", "dst": 33480 },
{ "src": 18101, "type": "customer", "dst": 4758 },
{ "src": 18101, "type": "customer", "dst": 55470 },
{ "src": 18101, "type": "customer", "dst": 55847 },
{ "src": 18101, "type": "customer", "dst": 56272 },
{ "src": 18101, "type": "customer", "dst": 56290 },
{ "src": 18101, "type": "customer", "dst": 7754 },
{ "src": 18101, "type": "customer", "dst": 9666 },
{ "src": 18101, "type": "customer", "dst": 9885 },
{ "src": 1810, "type": "peer", "dst": 3549 },
{ "src": 18187, "type": "peer", "dst": 10026 },
{ "src": 18187, "type": "customer", "dst": 132844 },
{ "src": 18187, "type": "customer", "dst": 18188 },
{ "src": 18187, "type": "peer", "dst": 18403 },
{ "src": 18187, "type": "peer", "dst": 20485 },
{ "src": 18187, "type": "peer", "dst": 20940 },
{ "src": 18187, "type": "peer", "dst": 36408 },
{ "src": 18187, "type": "peer", "dst": 45899 },
{ "src": 18187, "type": "peer", "dst": 4761 },
{ "src": 18187, "type": "peer", "dst": 7713 },
{ "src": 18187, "type": "customer", "dst": 9334 },
{ "src": 18187, "type": "peer", "dst": 9381 },
{ "src": 18187, "type": "peer", "dst": 9498 },
{ "src": 18187, "type": "customer", "dst": 9821 },
{ "src": 18192, "type": "peer", "dst": 38809 },
{ "src": 18221, "type": "peer", "dst": 38809 },
{ "src": 18278, "type": "peer", "dst": 20485 },
{ "src": 18351, "type": "customer", "dst": 24532 },
{ "src": 18351, "type": "customer", "dst": 38509 },
{ "src": 18351, "type": "customer", "dst": 56245 },
{ "src": 18351, "type": "customer", "dst": 59149 },
{ "src": 18403, "type": "customer", "dst": 131127 },
{ "src": 18403, "type": "customer", "dst": 131373 },
{ "src": 18403, "type": "customer", "dst": 131408 },
{ "src": 18403, "type": "peer", "dst": 20485 },
{ "src": 18403, "type": "customer", "dst": 45541 },
{ "src": 18403, "type": "customer", "dst": 45551 },
{ "src": 18403, "type": "customer", "dst": 45896 },
{ "src": 18403, "type": "customer", "dst": 55308 },
{ "src": 18403, "type": "customer", "dst": 55312 },
{ "src": 18403, "type": "customer", "dst": 55323 },
{ "src": 18403, "type": "customer", "dst": 55324 },
{ "src": 18403, "type": "customer", "dst": 56147 },
{ "src": 1853, "type": "customer", "dst": 1114 },
{ "src": 1853, "type": "customer", "dst": 1117 },
{ "src": 1853, "type": "peer", "dst": 13030 },
{ "src": 1853, "type": "peer", "dst": 13064 },
{ "src": 1853, "type": "peer", "dst": 13237 },
{ "src": 1853, "type": "peer", "dst": 16265 },
{ "src": 1853, "type": "peer", "dst": 20940 },
{ "src": 1853, "type": "peer", "dst": 21013 },
{ "src": 1853, "type": "peer", "dst": 21360 },
{ "src": 1853, "type": "peer", "dst": 22822 },
{ "src": 1853, "type": "peer", "dst": 24940 },
{ "src": 1853, "type": "peer", "dst": 25467 },
{ "src": 1853, "type": "customer", "dst": 2607 },
{ "src": 1853, "type": "peer", "dst": 2686 },
{ "src": 1853, "type": "peer", "dst": 29056 },
{ "src": 1853, "type": "customer", "dst": 30971 },
{ "src": 1853, "type": "peer", "dst": 31042 },
{ "src": 1853, "type": "peer", "dst": 3209 },
{ "src": 1853, "type": "peer", "dst": 3212 },
{ "src": 1853, "type": "peer", "dst": 3320 },
{ "src": 1853, "type": "peer", "dst": 33891 },
{ "src": 1853, "type": "peer", "dst": 3549 },
{ "src": 1853, "type": "peer", "dst": 39912 },
{ "src": 1853, "type": "peer", "dst": 42473 },
{ "src": 1853, "type": "peer", "dst": 43061 },
{ "src": 1853, "type": "peer", "dst": 48339 },
{ "src": 1853, "type": "peer", "dst": 48943 },
{ "src": 1853, "type": "peer", "dst": 5391 },
{ "src": 1853, "type": "peer", "dst": 5588 },
{ "src": 1853, "type": "peer", "dst": 6663 },
{ "src": 1853, "type": "peer", "dst": 6830 },
{ "src": 1853, "type": "peer", "dst": 8220 },
{ "src": 1853, "type": "peer", "dst": 8245 },
{ "src": 1853, "type": "peer", "dst": 8400 },
{ "src": 1853, "type": "peer", "dst": 8445 },
{ "src": 1853, "type": "customer", "dst": 8501 },
{ "src": 1853, "type": "peer", "dst": 8928 },
{ "src": 1853, "type": "peer", "dst": 9002 },
{ "src": 1853, "type": "peer", "dst": 9119 },
{ "src": 18618, "type": "customer", "dst": 22353 },
{ "src": 18618, "type": "customer", "dst": 40285 },
{ "src": 18618, "type": "customer", "dst": 46455 },
{ "src": 18676, "type": "customer", "dst": 13979 },
{ "src": 18678, "type": "customer", "dst": 263195 },
{ "src": 18678, "type": "customer", "dst": 27650 },
{ "src": 18678, "type": "customer", "dst": 28032 },
{ "src": 18678, "type": "customer", "dst": 28083 },
{ "src": 18734, "type": "customer", "dst": 13579 },
{ "src": 18734, "type": "customer", "dst": 17072 },
{ "src": 18734, "type": "peer", "dst": 19151 },
{ "src": 18734, "type": "customer", "dst": 28432 },
{ "src": 18734, "type": "customer", "dst": 28438 },
{ "src": 18734, "type": "customer", "dst": 28552 },
{ "src": 18734, "type": "customer", "dst": 36408 },
{ "src": 18881, "type": "customer", "dst": 11432 },
{ "src": 18881, "type": "customer", "dst": 14840 },
{ "src": 18881, "type": "peer", "dst": 19611 },
{ "src": 18881, "type": "peer", "dst": 197426 },
{ "src": 18881, "type": "customer", "dst": 20940 },
{ "src": 18881, "type": "customer", "dst": 22128 },
{ "src": 18881, "type": "customer", "dst": 25933 },
{ "src": 18881, "type": "peer", "dst": 262355 },
{ "src": 18881, "type": "customer", "dst": 262390 },
{ "src": 18881, "type": "peer", "dst": 262394 },
{ "src": 18881, "type": "customer", "dst": 262399 },
{ "src": 18881, "type": "customer", "dst": 262434 },
{ "src": 18881, "type": "customer", "dst": 262491 },
{ "src": 18881, "type": "customer", "dst": 262688 },
{ "src": 18881, "type": "peer", "dst": 262727 },
{ "src": 18881, "type": "peer", "dst": 262750 },
{ "src": 18881, "type": "customer", "dst": 262773 },
{ "src": 18881, "type": "peer", "dst": 262989 },
{ "src": 18881, "type": "customer", "dst": 263099 },
{ "src": 18881, "type": "customer", "dst": 263257 },
{ "src": 18881, "type": "peer", "dst": 263329 },
{ "src": 18881, "type": "customer", "dst": 26616 },
{ "src": 18881, "type": "customer", "dst": 2716 },
{ "src": 18881, "type": "customer", "dst": 28145 },
{ "src": 18881, "type": "customer", "dst": 28158 },
{ "src": 18881, "type": "peer", "dst": 28165 },
{ "src": 18881, "type": "customer", "dst": 28248 },
{ "src": 18881, "type": "customer", "dst": 28278 },
{ "src": 18881, "type": "customer", "dst": 28283 },
{ "src": 18881, "type": "customer", "dst": 28285 },
{ "src": 18881, "type": "customer", "dst": 28303 },
{ "src": 18881, "type": "customer", "dst": 28325 },
{ "src": 18881, "type": "customer", "dst": 28327 },
{ "src": 18881, "type": "peer", "dst": 28329 },
{ "src": 18881, "type": "customer", "dst": 28336 },
{ "src": 18881, "type": "customer", "dst": 28343 },
{ "src": 18881, "type": "customer", "dst": 28359 },
{ "src": 18881, "type": "customer", "dst": 28360 },
{ "src": 18881, "type": "peer", "dst": 28366 },
{ "src": 18881, "type": "peer", "dst": 28368 },
{ "src": 18881, "type": "customer", "dst": 28620 },
{ "src": 18881, "type": "peer", "dst": 28646 },
{ "src": 18881, "type": "peer", "dst": 28665 },
{ "src": 18881, "type": "peer", "dst": 42909 },
{ "src": 18881, "type": "customer", "dst": 52547 },
{ "src": 18881, "type": "customer", "dst": 52622 },
{ "src": 18881, "type": "peer", "dst": 52965 },
{ "src": 18881, "type": "customer", "dst": 52977 },
{ "src": 18881, "type": "customer", "dst": 53015 },
{ "src": 18881, "type": "customer", "dst": 53033 },
{ "src": 18881, "type": "customer", "dst": 53077 },
{ "src": 18881, "type": "customer", "dst": 53087 },
{ "src": 18881, "type": "customer", "dst": 53237 },
{ "src": 18881, "type": "customer", "dst": 61568 },
{ "src": 18881, "type": "customer", "dst": 61646 },
{ "src": 18881, "type": "customer", "dst": 61903 },
{ "src": 19050, "type": "customer", "dst": 13611 },
{ "src": 19050, "type": "customer", "dst": 26810 },
{ "src": 19050, "type": "customer", "dst": 3527 },
{ "src": 19151, "type": "customer", "dst": 11686 },
{ "src": 19151, "type": "peer", "dst": 197426 },
{ "src": 19151, "type": "peer", "dst": 20115 },
{ "src": 19151, "type": "peer", "dst": 20485 },
{ "src": 19151, "type": "peer", "dst": 20562 },
{ "src": 19151, "type": "peer", "dst": 20633 },
{ "src": 19151, "type": "peer", "dst": 20681 },
{ "src": 19151, "type": "peer", "dst": 20764 },
{ "src": 19151, "type": "peer", "dst": 20940 },
{ "src": 19151, "type": "peer", "dst": 21011 },
{ "src": 19151, "type": "peer", "dst": 21013 },
{ "src": 19151, "type": "peer", "dst": 21219 },
{ "src": 19151, "type": "peer", "dst": 21413 },
{ "src": 19151, "type": "peer", "dst": 21949 },
{ "src": 19151, "type": "peer", "dst": 22773 },
{ "src": 19151, "type": "customer", "dst": 22820 },
{ "src": 19151, "type": "peer", "dst": 22822 },
{ "src": 19151, "type": "customer", "dst": 23005 },
{ "src": 19151, "type": "peer", "dst": 23197 },
{ "src": 19151, "type": "peer", "dst": 23520 },
{ "src": 19151, "type": "peer", "dst": 24724 },
{ "src": 19151, "type": "peer", "dst": 24940 },
{ "src": 19151, "type": "peer", "dst": 24961 },
{ "src": 19151, "type": "peer", "dst": 25394 },
{ "src": 19151, "type": "peer", "dst": 27471 },
{ "src": 19151, "type": "peer", "dst": 28757 },
{ "src": 19151, "type": "peer", "dst": 28917 },
{ "src": 19151, "type": "peer", "dst": 29049 },
{ "src": 19151, "type": "peer", "dst": 29076 },
{ "src": 19151, "type": "peer", "dst": 29119 },
{ "src": 19151, "type": "peer", "dst": 29632 },
{ "src": 19151, "type": "peer", "dst": 29791 },
{ "src": 19151, "type": "peer", "dst": 30419 },
{ "src": 19151, "type": "peer", "dst": 31042 },
{ "src": 19151, "type": "peer", "dst": 31133 },
{ "src": 19151, "type": "peer", "dst": 31500 },
{ "src": 19151, "type": "peer", "dst": 33854 },
{ "src": 19151, "type": "peer", "dst": 33891 },
{ "src": 19151, "type": "peer", "dst": 34224 },
{ "src": 19151, "type": "peer", "dst": 34407 },
{ "src": 19151, "type": "peer", "dst": 34968 },
{ "src": 19151, "type": "peer", "dst": 36236 },
{ "src": 19151, "type": "peer", "dst": 36408 },
{ "src": 19151, "type": "peer", "dst": 36692 },
{ "src": 19151, "type": "peer", "dst": 37179 },
{ "src": 19151, "type": "peer", "dst": 39792 },
{ "src": 19151, "type": "peer", "dst": 39912 },
{ "src": 19151, "type": "customer", "dst": 40111 },
{ "src": 19151, "type": "peer", "dst": 42184 },
{ "src": 19151, "type": "peer", "dst": 42473 },
{ "src": 19151, "type": "peer", "dst": 43727 },
{ "src": 19151, "type": "peer", "dst": 44646 },
{ "src": 19151, "type": "peer", "dst": 44654 },
{ "src": 19151, "type": "peer", "dst": 44824 },
{ "src": 19151, "type": "peer", "dst": 45177 },
{ "src": 19151, "type": "peer", "dst": 45896 },
{ "src": 19151, "type": "peer", "dst": 47622 },
{ "src": 19151, "type": "peer", "dst": 50384 },
{ "src": 19151, "type": "peer", "dst": 53276 },
{ "src": 19151, "type": "peer", "dst": 53340 },
{ "src": 19151, "type": "customer", "dst": 54913 },
{ "src": 19151, "type": "peer", "dst": 57463 },
{ "src": 19151, "type": "peer", "dst": 57731 },
{ "src": 19151, "type": "peer", "dst": 61266 },
{ "src": 19151, "type": "peer", "dst": 61337 },
{ "src": 19151, "type": "customer", "dst": 6536 },
{ "src": 19271, "type": "customer", "dst": 27461 },
{ "src": 19271, "type": "customer", "dst": 30187 },
{ "src": 19271, "type": "customer", "dst": 54155 },
{ "src": 19384, "type": "customer", "dst": 15003 },
{ "src": 19384, "type": "customer", "dst": 19325 },
{ "src": 19384, "type": "customer", "dst": 32427 },
{ "src": 19479, "type": "customer", "dst": 12027 },
{ "src": 19479, "type": "customer", "dst": 2723 },
{ "src": 19479, "type": "customer", "dst": 30036 },
{ "src": 19528, "type": "customer", "dst": 54116 },
{ "src": 19611, "type": "peer", "dst": 53237 },
{ "src": 196621, "type": "customer", "dst": 202194 },
{ "src": 196621, "type": "customer", "dst": 30419 },
{ "src": 196621, "type": "customer", "dst": 48971 },
{ "src": 196695, "type": "customer", "dst": 24925 },
{ "src": 196695, "type": "customer", "dst": 61063 },
{ "src": 196695, "type": "customer", "dst": 61411 },
{ "src": 196714, "type": "customer", "dst": 15725 },
{ "src": 196714, "type": "customer", "dst": 16277 },
{ "src": 196714, "type": "customer", "dst": 62460 },
{ "src": 196844, "type": "customer", "dst": 12831 },
{ "src": 196844, "type": "customer", "dst": 13119 },
{ "src": 196844, "type": "customer", "dst": 15744 },
{ "src": 196844, "type": "customer", "dst": 39873 },
{ "src": 196844, "type": "customer", "dst": 9112 },
{ "src": 19685, "type": "customer", "dst": 22002 },
{ "src": 19685, "type": "customer", "dst": 36019 },
{ "src": 196914, "type": "customer", "dst": 49679 },
{ "src": 196914, "type": "customer", "dst": 52022 },
{ "src": 197099, "type": "customer", "dst": 196883 },
{ "src": 197099, "type": "customer", "dst": 197838 },
{ "src": 197099, "type": "customer", "dst": 199585 },
{ "src": 19752, "type": "customer", "dst": 16729 },
{ "src": 19752, "type": "customer", "dst": 21992 },
{ "src": 19752, "type": "customer", "dst": 22995 },
{ "src": 19752, "type": "customer", "dst": 26884 },
{ "src": 197588, "type": "customer", "dst": 196729 },
{ "src": 197588, "type": "customer", "dst": 198374 },
{ "src": 197588, "type": "customer", "dst": 199551 },
{ "src": 19782, "type": "customer", "dst": 11686 },
{ "src": 19782, "type": "customer", "dst": 3677 },
{ "src": 19782, "type": "customer", "dst": 693 },
{ "src": 19809, "type": "customer", "dst": 19807 },
{ "src": 19812, "type": "customer", "dst": 21122 },
{ "src": 19812, "type": "customer", "dst": 6917 },
{ "src": 198224, "type": "customer", "dst": 3202 },
{ "src": 198297, "type": "customer", "dst": 31183 },
{ "src": 198297, "type": "customer", "dst": 44678 },
{ "src": 198297, "type": "customer", "dst": 59917 },
{ "src": 198297, "type": "customer", "dst": 59975 },
{ "src": 19893, "type": "customer", "dst": 21827 },
{ "src": 19893, "type": "customer", "dst": 35870 },
{ "src": 19893, "type": "customer", "dst": 46577 },
{ "src": 199020, "type": "customer", "dst": 20772 },
{ "src": 199020, "type": "customer", "dst": 34033 },
{ "src": 199020, "type": "customer", "dst": 57233 },
{ "src": 199585, "type": "customer", "dst": 16110 },
{ "src": 1, "type": "customer", "dst": 21616 },
{ "src": 20002, "type": "customer", "dst": 14234 },
{ "src": 20002, "type": "customer", "dst": 18667 },
{ "src": 20002, "type": "customer", "dst": 52241 },
{ "src": 200094, "type": "customer", "dst": 198927 },
{ "src": 200094, "type": "customer", "dst": 199322 },
{ "src": 200094, "type": "customer", "dst": 8726 },
{ "src": 20013, "type": "customer", "dst": 16636 },
{ "src": 20013, "type": "customer", "dst": 25945 },
{ "src": 20021, "type": "customer", "dst": 14600 },
{ "src": 20021, "type": "customer", "dst": 15026 },
{ "src": 20021, "type": "customer", "dst": 22871 },
{ "src": 20021, "type": "customer", "dst": 51095 },
{ "src": 20021, "type": "customer", "dst": 55117 },
{ "src": 20115, "type": "customer", "dst": 11404 },
{ "src": 20115, "type": "customer", "dst": 13549 },
{ "src": 20115, "type": "customer", "dst": 15085 },
{ "src": 20115, "type": "customer", "dst": 17164 },
{ "src": 20115, "type": "peer", "dst": 20485 },
{ "src": 20115, "type": "customer", "dst": 20940 },
{ "src": 20115, "type": "customer", "dst": 22387 },
{ "src": 20115, "type": "customer", "dst": 2722 },
{ "src": 20115, "type": "customer", "dst": 27240 },
{ "src": 20115, "type": "customer", "dst": 27461 },
{ "src": 20115, "type": "customer", "dst": 30055 },
{ "src": 20115, "type": "customer", "dst": 30242 },
{ "src": 20115, "type": "customer", "dst": 32684 },
{ "src": 20115, "type": "customer", "dst": 33588 },
{ "src": 20115, "type": "customer", "dst": 3663 },
{ "src": 20115, "type": "customer", "dst": 393483 },
{ "src": 20115, "type": "customer", "dst": 40189 },
{ "src": 20115, "type": "customer", "dst": 40285 },
{ "src": 20115, "type": "customer", "dst": 46449 },
{ "src": 20115, "type": "customer", "dst": 46479 },
{ "src": 20115, "type": "customer", "dst": 46925 },
{ "src": 20115, "type": "customer", "dst": 53586 },
{ "src": 20115, "type": "customer", "dst": 54619 },
{ "src": 20115, "type": "customer", "dst": 54814 },
{ "src": 20141, "type": "customer", "dst": 11591 },
{ "src": 20141, "type": "customer", "dst": 23413 },
{ "src": 20141, "type": "customer", "dst": 4452 },
{ "src": 20144, "type": "peer", "dst": 262394 },
{ "src": 20144, "type": "peer", "dst": 262750 },
{ "src": 20144, "type": "peer", "dst": 28303 },
{ "src": 20161, "type": "customer", "dst": 11037 },
{ "src": 20161, "type": "customer", "dst": 14948 },
{ "src": 20161, "type": "customer", "dst": 26441 },
{ "src": 20161, "type": "customer", "dst": 26680 },
{ "src": 201776, "type": "customer", "dst": 28761 },
{ "src": 201776, "type": "customer", "dst": 31148 },
{ "src": 201776, "type": "customer", "dst": 42238 },
{ "src": 201776, "type": "customer", "dst": 43936 },
{ "src": 201776, "type": "customer", "dst": 44917 },
{ "src": 201776, "type": "customer", "dst": 5593 },
{ "src": 201861, "type": "customer", "dst": 196754 },
{ "src": 201861, "type": "customer", "dst": 34843 },
{ "src": 201861, "type": "customer", "dst": 60212 },
{ "src": 20299, "type": "customer", "dst": 16973 },
{ "src": 20299, "type": "customer", "dst": 27742 },
{ "src": 20299, "type": "customer", "dst": 52342 },
{ "src": 20357, "type": "customer", "dst": 19391 },
{ "src": 20460, "type": "customer", "dst": 26866 },
{ "src": 20485, "type": "customer", "dst": 12389 },
{ "src": 20485, "type": "customer", "dst": 12418 },
{ "src": 20485, "type": "customer", "dst": 12714 },
{ "src": 20485, "type": "customer", "dst": 12772 },
{ "src": 20485, "type": "customer", "dst": 12883 },
{ "src": 20485, "type": "customer", "dst": 13249 },
{ "src": 20485, "type": "customer", "dst": 15772 },
{ "src": 20485, "type": "customer", "dst": 16179 },
{ "src": 20485, "type": "peer", "dst": 196844 },
{ "src": 20485, "type": "peer", "dst": 197099 },
{ "src": 20485, "type": "peer", "dst": 197426 },
{ "src": 20485, "type": "peer", "dst": 197572 },
{ "src": 20485, "type": "peer", "dst": 198126 },
{ "src": 20485, "type": "customer", "dst": 199782 },
{ "src": 20485, "type": "peer", "dst": 20562 },
{ "src": 20485, "type": "peer", "dst": 20633 },
{ "src": 20485, "type": "peer", "dst": 20681 },
{ "src": 20485, "type": "peer", "dst": 20804 },
{ "src": 20485, "type": "peer", "dst": 20940 },
{ "src": 20485, "type": "peer", "dst": 21013 },
{ "src": 20485, "type": "peer", "dst": 21056 },
{ "src": 20485, "type": "peer", "dst": 21309 },
{ "src": 20485, "type": "peer", "dst": 21413 },
{ "src": 20485, "type": "customer", "dst": 21488 },
{ "src": 20485, "type": "peer", "dst": 22822 },
{ "src": 20485, "type": "peer", "dst": 23749 },
{ "src": 20485, "type": "peer", "dst": 23944 },
{ "src": 20485, "type": "peer", "dst": 24151 },
{ "src": 20485, "type": "peer", "dst": 24637 },
{ "src": 20485, "type": "peer", "dst": 24940 },
{ "src": 20485, "type": "peer", "dst": 24961 },
{ "src": 20485, "type": "peer", "dst": 25192 },
{ "src": 20485, "type": "peer", "dst": 25394 },
{ "src": 20485, "type": "customer", "dst": 25408 },
{ "src": 20485, "type": "peer", "dst": 28676 },
{ "src": 20485, "type": "peer", "dst": 28757 },
{ "src": 20485, "type": "customer", "dst": 28910 },
{ "src": 20485, "type": "peer", "dst": 28917 },
{ "src": 20485, "type": "customer", "dst": 29049 },
{ "src": 20485, "type": "customer", "dst": 29226 },
{ "src": 20485, "type": "peer", "dst": 29305 },
{ "src": 20485, "type": "peer", "dst": 29405 },
{ "src": 20485, "type": "customer", "dst": 29520 },
{ "src": 20485, "type": "peer", "dst": 29632 },
{ "src": 20485, "type": "peer", "dst": 29649 },
{ "src": 20485, "type": "peer", "dst": 29791 },
{ "src": 20485, "type": "peer", "dst": 30851 },
{ "src": 20485, "type": "peer", "dst": 31042 },
{ "src": 20485, "type": "peer", "dst": 31133 },
{ "src": 20485, "type": "peer", "dst": 31500 },
{ "src": 20485, "type": "peer", "dst": 33854 },
{ "src": 20485, "type": "peer", "dst": 33891 },
{ "src": 20485, "type": "peer", "dst": 33986 },
{ "src": 20485, "type": "peer", "dst": 34224 },
{ "src": 20485, "type": "customer", "dst": 34277 },
{ "src": 20485, "type": "peer", "dst": 34407 },
{ "src": 20485, "type": "customer", "dst": 34703 },
{ "src": 20485, "type": "customer", "dst": 35022 },
{ "src": 20485, "type": "peer", "dst": 35434 },
{ "src": 20485, "type": "peer", "dst": 36236 },
{ "src": 20485, "type": "peer", "dst": 36408 },
{ "src": 20485, "type": "peer", "dst": 36692 },
{ "src": 20485, "type": "peer", "dst": 37179 },
{ "src": 20485, "type": "peer", "dst": 38193 },
{ "src": 20485, "type": "peer", "dst": 38235 },
{ "src": 20485, "type": "peer", "dst": 38949 },
{ "src": 20485, "type": "customer", "dst": 39256 },
{ "src": 20485, "type": "customer", "dst": 39264 },
{ "src": 20485, "type": "customer", "dst": 39792 },
{ "src": 20485, "type": "peer", "dst": 39869 },
{ "src": 20485, "type": "peer", "dst": 39912 },
{ "src": 20485, "type": "customer", "dst": 41034 },
{ "src": 20485, "type": "peer", "dst": 41090 },
{ "src": 20485, "type": "peer", "dst": 41256 },
{ "src": 20485, "type": "peer", "dst": 41313 },
{ "src": 20485, "type": "peer", "dst": 41711 },
{ "src": 20485, "type": "customer", "dst": 41798 },
{ "src": 20485, "type": "customer", "dst": 41938 },
{ "src": 20485, "type": "peer", "dst": 42000 },
{ "src": 20485, "type": "customer", "dst": 42368 },
{ "src": 20485, "type": "peer", "dst": 42473 },
{ "src": 20485, "type": "customer", "dst": 42632 },
{ "src": 20485, "type": "customer", "dst": 43465 },
{ "src": 20485, "type": "peer", "dst": 43561 },
{ "src": 20485, "type": "peer", "dst": 44646 },
{ "src": 20485, "type": "peer", "dst": 44654 },
{ "src": 20485, "type": "peer", "dst": 45177 },
{ "src": 20485, "type": "peer", "dst": 45896 },
{ "src": 20485, "type": "peer", "dst": 45899 },
{ "src": 20485, "type": "peer", "dst": 47169 },
{ "src": 20485, "type": "peer", "dst": 47232 },
{ "src": 20485, "type": "peer", "dst": 47622 },
{ "src": 20485, "type": "customer", "dst": 48585 },
{ "src": 20485, "type": "customer", "dst": 49373 },
{ "src": 20485, "type": "customer", "dst": 49439 },
{ "src": 20485, "type": "peer", "dst": 49605 },
{ "src": 20485, "type": "customer", "dst": 50453 },
{ "src": 20485, "type": "customer", "dst": 50958 },
{ "src": 20485, "type": "customer", "dst": 51028 },
{ "src": 20485, "type": "peer", "dst": 51580 },
{ "src": 20485, "type": "customer", "dst": 51666 },
{ "src": 20485, "type": "customer", "dst": 5563 },
{ "src": 20485, "type": "customer", "dst": 56326 },
{ "src": 20485, "type": "peer", "dst": 57344 },
{ "src": 20485, "type": "peer", "dst": 57463 },
{ "src": 20485, "type": "peer", "dst": 57731 },
{ "src": 20485, "type": "customer", "dst": 58002 },
{ "src": 20485, "type": "peer", "dst": 58453 },
{ "src": 20485, "type": "peer", "dst": 58779 },
{ "src": 20485, "type": "customer", "dst": 60347 },
{ "src": 20485, "type": "customer", "dst": 60764 },
{ "src": 20485, "type": "peer", "dst": 61026 },
{ "src": 20485, "type": "peer", "dst": 61266 },
{ "src": 20485, "type": "peer", "dst": 61337 },
{ "src": 20485, "type": "customer", "dst": 6697 },
{ "src": 20485, "type": "customer", "dst": 8249 },
{ "src": 20485, "type": "customer", "dst": 8470 },
{ "src": 20485, "type": "customer", "dst": 8641 },
{ "src": 20485, "type": "customer", "dst": 8764 },
{ "src": 20485, "type": "customer", "dst": 9049 },
{ "src": 20485, "type": "customer", "dst": 9198 },
{ "src": 20562, "type": "customer", "dst": 12715 },
{ "src": 20562, "type": "customer", "dst": 13127 },
{ "src": 20562, "type": "customer", "dst": 15412 },
{ "src": 20562, "type": "customer", "dst": 15772 },
{ "src": 20562, "type": "customer", "dst": 16637 },
{ "src": 20562, "type": "peer", "dst": 196844 },
{ "src": 20562, "type": "peer", "dst": 197426 },
{ "src": 20562, "type": "customer", "dst": 197985 },
{ "src": 20562, "type": "peer", "dst": 20764 },
{ "src": 20562, "type": "peer", "dst": 20804 },
{ "src": 20562, "type": "customer", "dst": 20867 },
{ "src": 20562, "type": "peer", "dst": 20940 },
{ "src": 20562, "type": "peer", "dst": 21011 },
{ "src": 20562, "type": "peer", "dst": 21219 },
{ "src": 20562, "type": "customer", "dst": 21315 },
{ "src": 20562, "type": "peer", "dst": 22822 },
{ "src": 20562, "type": "peer", "dst": 24724 },
{ "src": 20562, "type": "customer", "dst": 24753 },
{ "src": 20562, "type": "peer", "dst": 24785 },
{ "src": 20562, "type": "peer", "dst": 24940 },
{ "src": 20562, "type": "peer", "dst": 24961 },
{ "src": 20562, "type": "customer", "dst": 2686 },
{ "src": 20562, "type": "peer", "dst": 28283 },
{ "src": 20562, "type": "peer", "dst": 28917 },
{ "src": 20562, "type": "peer", "dst": 29119 },
{ "src": 20562, "type": "peer", "dst": 29791 },
{ "src": 20562, "type": "peer", "dst": 30419 },
{ "src": 20562, "type": "peer", "dst": 31042 },
{ "src": 20562, "type": "peer", "dst": 31133 },
{ "src": 20562, "type": "peer", "dst": 31500 },
{ "src": 20562, "type": "customer", "dst": 3209 },
{ "src": 20562, "type": "customer", "dst": 3255 },
{ "src": 20562, "type": "peer", "dst": 33891 },
{ "src": 20562, "type": "peer", "dst": 33986 },
{ "src": 20562, "type": "peer", "dst": 34224 },
{ "src": 20562, "type": "peer", "dst": 34968 },
{ "src": 20562, "type": "peer", "dst": 36236 },
{ "src": 20562, "type": "peer", "dst": 36408 },
{ "src": 20562, "type": "peer", "dst": 36692 },
{ "src": 20562, "type": "customer", "dst": 39234 },
{ "src": 20562, "type": "peer", "dst": 39792 },
{ "src": 20562, "type": "peer", "dst": 39912 },
{ "src": 20562, "type": "peer", "dst": 39923 },
{ "src": 20562, "type": "peer", "dst": 41090 },
{ "src": 20562, "type": "peer", "dst": 41313 },
{ "src": 20562, "type": "peer", "dst": 42184 },
{ "src": 20562, "type": "peer", "dst": 42473 },
{ "src": 20562, "type": "customer", "dst": 42517 },
{ "src": 20562, "type": "peer", "dst": 44654 },
{ "src": 20562, "type": "peer", "dst": 47622 },
{ "src": 20562, "type": "peer", "dst": 47872 },
{ "src": 20562, "type": "peer", "dst": 50384 },
{ "src": 20562, "type": "peer", "dst": 50923 },
{ "src": 20562, "type": "customer", "dst": 52102 },
{ "src": 20562, "type": "customer", "dst": 52144 },
{ "src": 20562, "type": "peer", "dst": 57463 },
{ "src": 20562, "type": "customer", "dst": 59560 },
{ "src": 20562, "type": "customer", "dst": 62383 },
{ "src": 20562, "type": "customer", "dst": 6327 },
{ "src": 20562, "type": "customer", "dst": 6774 },
{ "src": 20562, "type": "customer", "dst": 8764 },
{ "src": 20562, "type": "customer", "dst": 8881 },
{ "src": 20562, "type": "customer", "dst": 8966 },
{ "src": 20562, "type": "customer", "dst": 9009 },
{ "src": 20590, "type": "customer", "dst": 42485 },
{ "src": 20632, "type": "customer", "dst": 12418 },
{ "src": 20632, "type": "customer", "dst": 16321 },
{ "src": 20632, "type": "peer", "dst": 196695 },
{ "src": 20632, "type": "customer", "dst": 197934 },
{ "src": 20632, "type": "peer", "dst": 20764 },
{ "src": 20632, "type": "peer", "dst": 20940 },
{ "src": 20632, "type": "peer", "dst": 21011 },
{ "src": 20632, "type": "peer", "dst": 21219 },
{ "src": 20632, "type": "peer", "dst": 24724 },
{ "src": 20632, "type": "peer", "dst": 25408 },
{ "src": 20632, "type": "peer", "dst": 28917 },
{ "src": 20632, "type": "peer", "dst": 29053 },
{ "src": 20632, "type": "peer", "dst": 29076 },
{ "src": 20632, "type": "peer", "dst": 29632 },
{ "src": 20632, "type": "peer", "dst": 30968 },
{ "src": 20632, "type": "peer", "dst": 31500 },
{ "src": 20632, "type": "peer", "dst": 31703 },
{ "src": 20632, "type": "peer", "dst": 34123 },
{ "src": 20632, "type": "peer", "dst": 34898 },
{ "src": 20632, "type": "peer", "dst": 35539 },
{ "src": 20632, "type": "peer", "dst": 38984 },
{ "src": 20632, "type": "customer", "dst": 39710 },
{ "src": 20632, "type": "peer", "dst": 39792 },
{ "src": 20632, "type": "peer", "dst": 42368 },
{ "src": 20632, "type": "peer", "dst": 42632 },
{ "src": 20632, "type": "customer", "dst": 42893 },
{ "src": 20632, "type": "peer", "dst": 42909 },
{ "src": 20632, "type": "peer", "dst": 47211 },
{ "src": 20632, "type": "peer", "dst": 48096 },
{ "src": 20632, "type": "peer", "dst": 48287 },
{ "src": 20632, "type": "peer", "dst": 49373 },
{ "src": 20632, "type": "peer", "dst": 50384 },
{ "src": 20632, "type": "peer", "dst": 50923 },
{ "src": 20632, "type": "customer", "dst": 51552 },
{ "src": 20632, "type": "peer", "dst": 57487 },
{ "src": 20632, "type": "peer", "dst": 60299 },
{ "src": 20632, "type": "customer", "dst": 60623 },
{ "src": 20632, "type": "peer", "dst": 60764 },
{ "src": 20633, "type": "peer", "dst": 31133 },
{ "src": 20633, "type": "peer", "dst": 39792 },
{ "src": 20633, "type": "peer", "dst": 39912 },
{ "src": 20681, "type": "peer", "dst": 31133 },
{ "src": 20681, "type": "peer", "dst": 33891 },
{ "src": 20746, "type": "customer", "dst": 20580 },
{ "src": 20746, "type": "customer", "dst": 20658 },
{ "src": 20746, "type": "customer", "dst": 8660 },
{ "src": 20764, "type": "peer", "dst": 198093 },
{ "src": 20764, "type": "peer", "dst": 20940 },
{ "src": 20764, "type": "customer", "dst": 21453 },
{ "src": 20764, "type": "peer", "dst": 22822 },
{ "src": 20764, "type": "customer", "dst": 25478 },
{ "src": 20764, "type": "customer", "dst": 2854 },
{ "src": 20764, "type": "peer", "dst": 28917 },
{ "src": 20764, "type": "customer", "dst": 30968 },
{ "src": 20764, "type": "peer", "dst": 31133 },
{ "src": 20764, "type": "peer", "dst": 31500 },
{ "src": 20764, "type": "customer", "dst": 31703 },
{ "src": 20764, "type": "peer", "dst": 33891 },
{ "src": 20764, "type": "peer", "dst": 34123 },
{ "src": 20764, "type": "customer", "dst": 34232 },
{ "src": 20764, "type": "peer", "dst": 36616 },
{ "src": 20764, "type": "customer", "dst": 38984 },
{ "src": 20764, "type": "peer", "dst": 39792 },
{ "src": 20764, "type": "peer", "dst": 39912 },
{ "src": 20764, "type": "peer", "dst": 42632 },
{ "src": 20764, "type": "customer", "dst": 43267 },
{ "src": 20764, "type": "peer", "dst": 43727 },
{ "src": 20764, "type": "customer", "dst": 44678 },
{ "src": 20764, "type": "peer", "dst": 44953 },
{ "src": 20764, "type": "customer", "dst": 48366 },
{ "src": 20764, "type": "customer", "dst": 49218 },
{ "src": 20764, "type": "customer", "dst": 50384 },
{ "src": 20764, "type": "customer", "dst": 50453 },
{ "src": 20764, "type": "peer", "dst": 50538 },
{ "src": 20764, "type": "customer", "dst": 5563 },
{ "src": 20764, "type": "customer", "dst": 56534 },
{ "src": 20764, "type": "customer", "dst": 57420 },
{ "src": 20764, "type": "customer", "dst": 57530 },
{ "src": 20764, "type": "customer", "dst": 57731 },
{ "src": 20764, "type": "customer", "dst": 59653 },
{ "src": 20764, "type": "customer", "dst": 60098 },
{ "src": 20764, "type": "customer", "dst": 60299 },
{ "src": 20764, "type": "customer", "dst": 60764 },
{ "src": 20764, "type": "peer", "dst": 61316 },
{ "src": 20764, "type": "customer", "dst": 61382 },
{ "src": 20764, "type": "customer", "dst": 8470 },
{ "src": 20764, "type": "customer", "dst": 8641 },
{ "src": 20804, "type": "customer", "dst": 16110 },
{ "src": 20804, "type": "customer", "dst": 197135 },
{ "src": 20804, "type": "customer", "dst": 199981 },
{ "src": 20804, "type": "customer", "dst": 24607 },
{ "src": 20804, "type": "peer", "dst": 28917 },
{ "src": 20804, "type": "customer", "dst": 28978 },
{ "src": 20804, "type": "peer", "dst": 29076 },
{ "src": 20804, "type": "peer", "dst": 31133 },
{ "src": 20804, "type": "customer", "dst": 39174 },
{ "src": 20804, "type": "peer", "dst": 39792 },
{ "src": 20804, "type": "customer", "dst": 39869 },
{ "src": 20804, "type": "peer", "dst": 39912 },
{ "src": 20804, "type": "customer", "dst": 43290 },
{ "src": 20804, "type": "peer", "dst": 44953 },
{ "src": 20804, "type": "customer", "dst": 48424 },
{ "src": 20804, "type": "peer", "dst": 50384 },
{ "src": 20804, "type": "customer", "dst": 50607 },
{ "src": 20804, "type": "customer", "dst": 58017 },
{ "src": 20940, "type": "customer", "dst": 16625 },
{ "src": 20940, "type": "peer", "dst": 20965 },
{ "src": 20940, "type": "customer", "dst": 21342 },
{ "src": 20940, "type": "peer", "dst": 262394 },
{ "src": 20940, "type": "peer", "dst": 262750 },
{ "src": 20940, "type": "peer", "dst": 28303 },
{ "src": 20940, "type": "peer", "dst": 28917 },
{ "src": 20940, "type": "peer", "dst": 29076 },
{ "src": 20940, "type": "peer", "dst": 31133 },
{ "src": 20940, "type": "customer", "dst": 31500 },
{ "src": 20940, "type": "peer", "dst": 33891 },
{ "src": 20940, "type": "peer", "dst": 38809 },
{ "src": 20940, "type": "peer", "dst": 39792 },
{ "src": 20940, "type": "peer", "dst": 39912 },
{ "src": 20940, "type": "peer", "dst": 44953 },
{ "src": 20940, "type": "peer", "dst": 49605 },
{ "src": 20940, "type": "peer", "dst": 50384 },
{ "src": 20940, "type": "peer", "dst": 53237 },
{ "src": 20940, "type": "customer", "dst": 8966 },
{ "src": 20965, "type": "customer", "dst": 1853 },
{ "src": 20965, "type": "peer", "dst": 20485 },
{ "src": 20965, "type": "customer", "dst": 2107 },
{ "src": 20965, "type": "customer", "dst": 2607 },
{ "src": 20965, "type": "peer", "dst": 2721 },
{ "src": 20965, "type": "peer", "dst": 31133 },
{ "src": 20965, "type": "peer", "dst": 3209 },
{ "src": 20965, "type": "peer", "dst": 3255 },
{ "src": 20965, "type": "peer", "dst": 36692 },
{ "src": 20965, "type": "customer", "dst": 47623 },
{ "src": 20965, "type": "customer", "dst": 5379 },
{ "src": 20965, "type": "peer", "dst": 6830 },
{ "src": 20965, "type": "peer", "dst": 7575 },
{ "src": 20965, "type": "customer", "dst": 8501 },
{ "src": 209, "type": "peer", "dst": 10026 },
{ "src": 209, "type": "customer", "dst": 10361 },
{ "src": 209, "type": "customer", "dst": 10835 },
{ "src": 209, "type": "customer", "dst": 10913 },
{ "src": 209, "type": "customer", "dst": 11052 },
{ "src": 209, "type": "customer", "dst": 11071 },
{ "src": 209, "type": "customer", "dst": 11174 },
{ "src": 209, "type": "customer", "dst": 11261 },
{ "src": 209, "type": "customer", "dst": 112 },
{ "src": 209, "type": "customer", "dst": 11319 },
{ "src": 209, "type": "customer", "dst": 11643 },
{ "src": 209, "type": "customer", "dst": 11870 },
{ "src": 209, "type": "customer", "dst": 11953 },
{ "src": 209, "type": "customer", "dst": 12025 },
{ "src": 209, "type": "customer", "dst": 12179 },
{ "src": 209, "type": "customer", "dst": 12182 },
{ "src": 209, "type": "peer", "dst": 1273 },
{ "src": 209, "type": "customer", "dst": 12989 },
{ "src": 209, "type": "customer", "dst": 13346 },
{ "src": 209, "type": "customer", "dst": 13446 },
{ "src": 209, "type": "customer", "dst": 13649 },
{ "src": 209, "type": "customer", "dst": 13789 },
{ "src": 209, "type": "customer", "dst": 14230 },
{ "src": 209, "type": "customer", "dst": 14742 },
{ "src": 209, "type": "customer", "dst": 14745 },
{ "src": 209, "type": "customer", "dst": 14937 },
{ "src": 209, "type": "peer", "dst": 15412 },
{ "src": 209, "type": "customer", "dst": 15580 },
{ "src": 209, "type": "customer", "dst": 16480 },
{ "src": 209, "type": "customer", "dst": 16535 },
{ "src": 209, "type": "customer", "dst": 16625 },
{ "src": 209, "type": "customer", "dst": 16657 },
{ "src": 209, "type": "customer", "dst": 16839 },
{ "src": 209, "type": "customer", "dst": 17054 },
{ "src": 209, "type": "customer", "dst": 17143 },
{ "src": 209, "type": "customer", "dst": 17164 },
{ "src": 209, "type": "customer", "dst": 17206 },
{ "src": 209, "type": "customer", "dst": 18676 },
{ "src": 209, "type": "customer", "dst": 18734 },
{ "src": 209, "type": "customer", "dst": 18816 },
{ "src": 209, "type": "customer", "dst": 18874 },
{ "src": 209, "type": "customer", "dst": 19067 },
{ "src": 209, "type": "customer", "dst": 19271 },
{ "src": 209, "type": "customer", "dst": 19272 },
{ "src": 209, "type": "customer", "dst": 19325 },
{ "src": 209, "type": "customer", "dst": 19455 },
{ "src": 209, "type": "customer", "dst": 19581 },
{ "src": 209, "type": "customer", "dst": 19685 },
{ "src": 209, "type": "customer", "dst": 19865 },
{ "src": 209, "type": "customer", "dst": 19883 },
{ "src": 209, "type": "customer", "dst": 20021 },
{ "src": 209, "type": "customer", "dst": 20115 },
{ "src": 209, "type": "peer", "dst": 20485 },
{ "src": 209, "type": "customer", "dst": 20940 },
{ "src": 209, "type": "customer", "dst": 21509 },
{ "src": 209, "type": "customer", "dst": 2152 },
{ "src": 209, "type": "customer", "dst": 22198 },
{ "src": 209, "type": "customer", "dst": 22561 },
{ "src": 209, "type": "customer", "dst": 22625 },
{ "src": 209, "type": "customer", "dst": 22822 },
{ "src": 209, "type": "customer", "dst": 22911 },
{ "src": 209, "type": "customer", "dst": 22958 },
{ "src": 209, "type": "customer", "dst": 24637 },
{ "src": 209, "type": "customer", "dst": 2516 },
{ "src": 209, "type": "customer", "dst": 25606 },
{ "src": 209, "type": "customer", "dst": 25739 },
{ "src": 209, "type": "customer", "dst": 2576 },
{ "src": 209, "type": "customer", "dst": 25843 },
{ "src": 209, "type": "customer", "dst": 25899 },
{ "src": 209, "type": "customer", "dst": 26196 },
{ "src": 209, "type": "customer", "dst": 26252 },
{ "src": 209, "type": "customer", "dst": 26554 },
{ "src": 209, "type": "customer", "dst": 26783 },
{ "src": 209, "type": "customer", "dst": 2721 },
{ "src": 209, "type": "customer", "dst": 2722 },
{ "src": 209, "type": "customer", "dst": 27240 },
{ "src": 209, "type": "customer", "dst": 27379 },
{ "src": 209, "type": "customer", "dst": 27480 },
{ "src": 209, "type": "customer", "dst": 29 },
{ "src": 209, "type": "customer", "dst": 30614 },
{ "src": 209, "type": "customer", "dst": 31869 },
{ "src": 209, "type": "customer", "dst": 32312 },
{ "src": 209, "type": "customer", "dst": 32440 },
{ "src": 209, "type": "peer", "dst": 3292 },
{ "src": 209, "type": "peer", "dst": 3303 },
{ "src": 209, "type": "peer", "dst": 3320 },
{ "src": 209, "type": "customer", "dst": 33363 },
{ "src": 209, "type": "customer", "dst": 33445 },
{ "src": 209, "type": "customer", "dst": 33561 },
{ "src": 209, "type": "peer", "dst": 3356 },
{ "src": 209, "type": "customer", "dst": 33730 },
{ "src": 209, "type": "peer", "dst": 3491 },
{ "src": 209, "type": "peer", "dst": 3549 },
{ "src": 209, "type": "customer", "dst": 3561 },
{ "src": 209, "type": "customer", "dst": 36143 },
{ "src": 209, "type": "customer", "dst": 36171 },
{ "src": 209, "type": "peer", "dst": 3786 },
{ "src": 209, "type": "peer", "dst": 38809 },
{ "src": 209, "type": "customer", "dst": 3910 },
{ "src": 209, "type": "customer", "dst": 393299 },
{ "src": 209, "type": "customer", "dst": 393372 },
{ "src": 209, "type": "customer", "dst": 39944 },
{ "src": 209, "type": "customer", "dst": 40285 },
{ "src": 209, "type": "customer", "dst": 40380 },
{ "src": 209, "type": "peer", "dst": 4134 },
{ "src": 209, "type": "peer", "dst": 4323 },
{ "src": 209, "type": "customer", "dst": 46250 },
{ "src": 209, "type": "peer", "dst": 4637 },
{ "src": 209, "type": "customer", "dst": 46387 },
{ "src": 209, "type": "peer", "dst": 4648 },
{ "src": 209, "type": "peer", "dst": 4657 },
{ "src": 209, "type": "customer", "dst": 46849 },
{ "src": 209, "type": "customer", "dst": 46925 },
{ "src": 209, "type": "peer", "dst": 4725 },
{ "src": 209, "type": "customer", "dst": 53915 },
{ "src": 209, "type": "peer", "dst": 5400 },
{ "src": 209, "type": "customer", "dst": 54036 },
{ "src": 209, "type": "customer", "dst": 54167 },
{ "src": 209, "type": "customer", "dst": 54249 },
{ "src": 209, "type": "customer", "dst": 54399 },
{ "src": 209, "type": "customer", "dst": 54803 },
{ "src": 209, "type": "customer", "dst": 54922 },
{ "src": 209, "type": "customer", "dst": 54994 },
{ "src": 209, "type": "customer", "dst": 55099 },
{ "src": 209, "type": "peer", "dst": 5580 },
{ "src": 209, "type": "customer", "dst": 558 },
{ "src": 209, "type": "customer", "dst": 600 },
{ "src": 209, "type": "customer", "dst": 63174 },
{ "src": 209, "type": "peer", "dst": 6453 },
{ "src": 209, "type": "customer", "dst": 6536 },
{ "src": 209, "type": "customer", "dst": 6621 },
{ "src": 209, "type": "peer", "dst": 6830 },
{ "src": 209, "type": "customer", "dst": 721 },
{ "src": 209, "type": "customer", "dst": 7381 },
{ "src": 209, "type": "peer", "dst": 7473 },
{ "src": 209, "type": "peer", "dst": 7474 },
{ "src": 209, "type": "peer", "dst": 7575 },
{ "src": 209, "type": "peer", "dst": 7660 },
{ "src": 209, "type": "peer", "dst": 7922 },
{ "src": 209, "type": "peer", "dst": 852 },
{ "src": 209, "type": "customer", "dst": 8674 },
{ "src": 209, "type": "peer", "dst": 8928 },
{ "src": 209, "type": "peer", "dst": 9002 },
{ "src": 209, "type": "peer", "dst": 9304 },
{ "src": 209, "type": "peer", "dst": 9498 },
{ "src": 21011, "type": "customer", "dst": 12773 },
{ "src": 21011, "type": "customer", "dst": 15377 },
{ "src": 21011, "type": "customer", "dst": 197221 },
{ "src": 21011, "type": "customer", "dst": 20144 },
{ "src": 21011, "type": "peer", "dst": 22822 },
{ "src": 21011, "type": "customer", "dst": 24681 },
{ "src": 21011, "type": "customer", "dst": 25155 },
{ "src": 21011, "type": "customer", "dst": 28907 },
{ "src": 21011, "type": "peer", "dst": 28917 },
{ "src": 21011, "type": "peer", "dst": 31133 },
{ "src": 21011, "type": "customer", "dst": 31148 },
{ "src": 21011, "type": "customer", "dst": 34068 },
{ "src": 21011, "type": "peer", "dst": 39792 },
{ "src": 21011, "type": "peer", "dst": 39912 },
{ "src": 21011, "type": "peer", "dst": 42632 },
{ "src": 21011, "type": "customer", "dst": 42918 },
{ "src": 21011, "type": "peer", "dst": 44953 },
{ "src": 21011, "type": "peer", "dst": 50384 },
{ "src": 21011, "type": "customer", "dst": 57031 },
{ "src": 21011, "type": "customer", "dst": 6702 },
{ "src": 21011, "type": "customer", "dst": 6789 },
{ "src": 21013, "type": "peer", "dst": 28917 },
{ "src": 21013, "type": "peer", "dst": 29076 },
{ "src": 21013, "type": "peer", "dst": 31133 },
{ "src": 21013, "type": "peer", "dst": 39792 },
{ "src": 21013, "type": "peer", "dst": 39912 },
{ "src": 21013, "type": "customer", "dst": 42473 },
{ "src": 21013, "type": "customer", "dst": 43848 },
{ "src": 21013, "type": "customer", "dst": 44760 },
{ "src": 21056, "type": "customer", "dst": 198320 },
{ "src": 21056, "type": "customer", "dst": 48862 },
{ "src": 21056, "type": "peer", "dst": 49605 },
{ "src": 2107, "type": "customer", "dst": 28933 },
{ "src": 2107, "type": "peer", "dst": 3549 },
{ "src": 2107, "type": "customer", "dst": 50195 },
{ "src": 2107, "type": "customer", "dst": 58046 },
{ "src": 21183, "type": "customer", "dst": 202179 },
{ "src": 21183, "type": "customer", "dst": 56468 },
{ "src": 21183, "type": "customer", "dst": 58166 },
{ "src": 21189, "type": "customer", "dst": 42485 },
{ "src": 21189, "type": "customer", "dst": 42959 },
{ "src": 21189, "type": "customer", "dst": 47638 },
{ "src": 21189, "type": "customer", "dst": 52131 },
{ "src": 21219, "type": "customer", "dst": 12773 },
{ "src": 21219, "type": "customer", "dst": 12837 },
{ "src": 21219, "type": "customer", "dst": 15377 },
{ "src": 21219, "type": "customer", "dst": 198224 },
{ "src": 21219, "type": "customer", "dst": 198659 },
{ "src": 21219, "type": "customer", "dst": 201776 },
{ "src": 21219, "type": "customer", "dst": 21011 },
{ "src": 21219, "type": "customer", "dst": 25155 },
{ "src": 21219, "type": "customer", "dst": 28907 },
{ "src": 21219, "type": "peer", "dst": 28917 },
{ "src": 21219, "type": "customer", "dst": 28926 },
{ "src": 21219, "type": "peer", "dst": 29076 },
{ "src": 21219, "type": "customer", "dst": 29286 },
{ "src": 21219, "type": "peer", "dst": 31133 },
{ "src": 21219, "type": "customer", "dst": 31148 },
{ "src": 21219, "type": "customer", "dst": 31489 },
{ "src": 21219, "type": "customer", "dst": 34094 },
{ "src": 21219, "type": "customer", "dst": 34786 },
{ "src": 21219, "type": "customer", "dst": 39329 },
{ "src": 21219, "type": "peer", "dst": 39792 },
{ "src": 21219, "type": "peer", "dst": 39912 },
{ "src": 21219, "type": "customer", "dst": 41798 },
{ "src": 21219, "type": "customer", "dst": 42485 },
{ "src": 21219, "type": "customer", "dst": 42545 },
{ "src": 21219, "type": "peer", "dst": 42632 },
{ "src": 21219, "type": "customer", "dst": 43162 },
{ "src": 21219, "type": "customer", "dst": 43727 },
{ "src": 21219, "type": "peer", "dst": 44953 },
{ "src": 21219, "type": "customer", "dst": 49662 },
{ "src": 21219, "type": "customer", "dst": 50204 },
{ "src": 21219, "type": "customer", "dst": 57033 },
{ "src": 21219, "type": "customer", "dst": 6789 },
{ "src": 21219, "type": "customer", "dst": 6886 },
{ "src": 21277, "type": "customer", "dst": 197985 },
{ "src": 21277, "type": "customer", "dst": 39216 },
{ "src": 21277, "type": "customer", "dst": 62223 },
{ "src": 21299, "type": "customer", "dst": 31525 },
{ "src": 21299, "type": "customer", "dst": 39433 },
{ "src": 21299, "type": "customer", "dst": 48716 },
{ "src": 21309, "type": "customer", "dst": 15923 },
{ "src": 21309, "type": "customer", "dst": 196966 },
{ "src": 21309, "type": "customer", "dst": 49535 },
{ "src": 21309, "type": "peer", "dst": 49605 },
{ "src": 21315, "type": "peer", "dst": 50384 },
{ "src": 2134, "type": "peer", "dst": 13030 },
{ "src": 2134, "type": "customer", "dst": 20760 },
{ "src": 2134, "type": "customer", "dst": 25006 },
{ "src": 21360, "type": "peer", "dst": 39912 },
{ "src": 21413, "type": "customer", "dst": 16202 },
{ "src": 21413, "type": "customer", "dst": 201832 },
{ "src": 21413, "type": "peer", "dst": 29076 },
{ "src": 21413, "type": "customer", "dst": 35065 },
{ "src": 21413, "type": "peer", "dst": 39792 },
{ "src": 21413, "type": "peer", "dst": 39912 },
{ "src": 21413, "type": "customer", "dst": 59921 },
{ "src": 21453, "type": "customer", "dst": 197670 },
{ "src": 21453, "type": "customer", "dst": 199933 },
{ "src": 21453, "type": "peer", "dst": 28917 },
{ "src": 21453, "type": "customer", "dst": 34898 },
{ "src": 21453, "type": "peer", "dst": 39792 },
{ "src": 21453, "type": "customer", "dst": 48149 },
{ "src": 21488, "type": "customer", "dst": 13121 },
{ "src": 21488, "type": "peer", "dst": 28917 },
{ "src": 21488, "type": "customer", "dst": 41586 },
{ "src": 21488, "type": "customer", "dst": 44434 },
{ "src": 2152, "type": "customer", "dst": 101 },
{ "src": 2152, "type": "peer", "dst": 15412 },
{ "src": 2152, "type": "peer", "dst": 19151 },
{ "src": 2152, "type": "peer", "dst": 20940 },
{ "src": 2152, "type": "peer", "dst": 2516 },
{ "src": 2152, "type": "customer", "dst": 25 },
{ "src": 2152, "type": "peer", "dst": 29791 },
{ "src": 2152, "type": "customer", "dst": 31764 },
{ "src": 2152, "type": "peer", "dst": 3292 },
{ "src": 2152, "type": "peer", "dst": 3549 },
{ "src": 2152, "type": "peer", "dst": 3786 },
{ "src": 2152, "type": "customer", "dst": 3851 },
{ "src": 2152, "type": "customer", "dst": 40498 },
{ "src": 2152, "type": "peer", "dst": 4657 },
{ "src": 2152, "type": "peer", "dst": 4788 },
{ "src": 2152, "type": "peer", "dst": 7473 },
{ "src": 2152, "type": "peer", "dst": 7575 },
{ "src": 2152, "type": "peer", "dst": 9318 },
{ "src": 2152, "type": "peer", "dst": 9505 },
{ "src": 21547, "type": "customer", "dst": 18694 },
{ "src": 21547, "type": "customer", "dst": 33728 },
{ "src": 21547, "type": "customer", "dst": 36501 },
{ "src": 21782, "type": "customer", "dst": 11711 },
{ "src": 21782, "type": "customer", "dst": 23546 },
{ "src": 21782, "type": "customer", "dst": 26196 },
{ "src": 21949, "type": "customer", "dst": 14387 },
{ "src": 21949, "type": "customer", "dst": 14753 },
{ "src": 21949, "type": "customer", "dst": 16645 },
{ "src": 21949, "type": "customer", "dst": 32900 },
{ "src": 21949, "type": "peer", "dst": 33891 },
{ "src": 21992, "type": "customer", "dst": 26802 },
{ "src": 21992, "type": "customer", "dst": 32364 },
{ "src": 21992, "type": "customer", "dst": 3411 },
{ "src": 22002, "type": "customer", "dst": 26839 },
{ "src": 22400, "type": "customer", "dst": 19264 },
{ "src": 22489, "type": "customer", "dst": 20460 },
{ "src": 22489, "type": "customer", "dst": 54708 },
{ "src": 22489, "type": "customer", "dst": 7837 },
{ "src": 22561, "type": "customer", "dst": 2379 },
{ "src": 22561, "type": "customer", "dst": 29977 },
{ "src": 22561, "type": "customer", "dst": 30200 },
{ "src": 22561, "type": "customer", "dst": 36146 },
{ "src": 22561, "type": "customer", "dst": 4212 },
{ "src": 22561, "type": "customer", "dst": 46925 },
{ "src": 22561, "type": "customer", "dst": 5778 },
{ "src": 22625, "type": "customer", "dst": 32150 },
{ "src": 22625, "type": "customer", "dst": 46732 },
{ "src": 22625, "type": "customer", "dst": 54431 },
{ "src": 2274, "type": "peer", "dst": 3549 },
{ "src": 22772, "type": "customer", "dst": 10835 },
{ "src": 22772, "type": "customer", "dst": 23477 },
{ "src": 22772, "type": "customer", "dst": 6373 },
{ "src": 22773, "type": "customer", "dst": 10411 },
{ "src": 22773, "type": "peer", "dst": 11643 },
{ "src": 22773, "type": "peer", "dst": 11798 },
{ "src": 22773, "type": "peer", "dst": 1257 },
{ "src": 22773, "type": "customer", "dst": 13329 },
{ "src": 22773, "type": "customer", "dst": 13954 },
{ "src": 22773, "type": "customer", "dst": 14230 },
{ "src": 22773, "type": "peer", "dst": 15290 },
{ "src": 22773, "type": "peer", "dst": 16265 },
{ "src": 22773, "type": "peer", "dst": 16265 },
{ "src": 22773, "type": "customer", "dst": 16625 },
{ "src": 22773, "type": "customer", "dst": 16942 },
{ "src": 22773, "type": "customer", "dst": 1810 },
{ "src": 22773, "type": "customer", "dst": 18456 },
{ "src": 22773, "type": "customer", "dst": 18723 },
{ "src": 22773, "type": "customer", "dst": 19697 },
{ "src": 22773, "type": "customer", "dst": 20341 },
{ "src": 22773, "type": "peer", "dst": 2152 },
{ "src": 22773, "type": "peer", "dst": 2152 },
{ "src": 22773, "type": "customer", "dst": 22184 },
{ "src": 22773, "type": "customer", "dst": 22489 },
{ "src": 22773, "type": "peer", "dst": 22822 },
{ "src": 22773, "type": "peer", "dst": 22822 },
{ "src": 22773, "type": "customer", "dst": 22898 },
{ "src": 22773, "type": "customer", "dst": 23079 },
{ "src": 22773, "type": "customer", "dst": 23477 },
{ "src": 22773, "type": "customer", "dst": 2495 },
{ "src": 22773, "type": "customer", "dst": 26783 },
{ "src": 22773, "type": "peer", "dst": 29791 },
{ "src": 22773, "type": "peer", "dst": 29791 },
{ "src": 22773, "type": "customer", "dst": 35937 },
{ "src": 22773, "type": "peer", "dst": 36408 },
{ "src": 22773, "type": "peer", "dst": 36408 },
{ "src": 22773, "type": "peer", "dst": 3786 },
{ "src": 22773, "type": "peer", "dst": 3786 },
{ "src": 22773, "type": "customer", "dst": 3791 },
{ "src": 22773, "type": "peer", "dst": 4134 },
{ "src": 22773, "type": "customer", "dst": 4318 },
{ "src": 22773, "type": "peer", "dst": 4323 },
{ "src": 22773, "type": "peer", "dst": 4323 },
{ "src": 22773, "type": "customer", "dst": 46229 },
{ "src": 22773, "type": "peer", "dst": 4648 },
{ "src": 22773, "type": "customer", "dst": 46925 },
{ "src": 22773, "type": "peer", "dst": 4725 },
{ "src": 22773, "type": "peer", "dst": 4725 },
{ "src": 22773, "type": "peer", "dst": 5400 },
{ "src": 22773, "type": "peer", "dst": 5400 },
{ "src": 22773, "type": "customer", "dst": 54708 },
{ "src": 22773, "type": "customer", "dst": 54761 },
{ "src": 22773, "type": "customer", "dst": 54803 },
{ "src": 22773, "type": "customer", "dst": 54845 },
{ "src": 22773, "type": "peer", "dst": 6128 },
{ "src": 22773, "type": "customer", "dst": 62 },
{ "src": 22773, "type": "peer", "dst": 6327 },
{ "src": 22773, "type": "customer", "dst": 6448 },
{ "src": 22773, "type": "peer", "dst": 6774 },
{ "src": 22773, "type": "peer", "dst": 6774 },
{ "src": 22773, "type": "peer", "dst": 7385 },
{ "src": 22773, "type": "peer", "dst": 7385 },
{ "src": 22773, "type": "peer", "dst": 7843 },
{ "src": 22773, "type": "peer", "dst": 7843 },
{ "src": 22773, "type": "peer", "dst": 8657 },
{ "src": 22773, "type": "peer", "dst": 8657 },
{ "src": 22822, "type": "customer", "dst": 16637 },
{ "src": 22822, "type": "customer", "dst": 20965 },
{ "src": 22822, "type": "customer", "dst": 2152 },
{ "src": 22822, "type": "customer", "dst": 22911 },
{ "src": 22822, "type": "peer", "dst": 31133 },
{ "src": 22822, "type": "peer", "dst": 33891 },
{ "src": 22822, "type": "customer", "dst": 38621 },
{ "src": 22822, "type": "peer", "dst": 39912 },
{ "src": 22822, "type": "customer", "dst": 40076 },
{ "src": 22822, "type": "customer", "dst": 40627 },
{ "src": 22822, "type": "customer", "dst": 44217 },
{ "src": 22822, "type": "peer", "dst": 49605 },
{ "src": 22822, "type": "customer", "dst": 6774 },
{ "src": 22822, "type": "customer", "dst": 8529 },
{ "src": 22884, "type": "customer", "dst": 64097 },
{ "src": 22898, "type": "customer", "dst": 22316 },
{ "src": 22898, "type": "customer", "dst": 54328 },
{ "src": 22898, "type": "customer", "dst": 54945 },
{ "src": 22911, "type": "customer", "dst": 16645 },
{ "src": 22911, "type": "customer", "dst": 16667 },
{ "src": 22911, "type": "customer", "dst": 17012 },
{ "src": 22911, "type": "customer", "dst": 25843 },
{ "src": 22911, "type": "customer", "dst": 3851 },
{ "src": 22911, "type": "customer", "dst": 39944 },
{ "src": 22911, "type": "customer", "dst": 40443 },
{ "src": 22911, "type": "customer", "dst": 53428 },
{ "src": 22911, "type": "customer", "dst": 54876 },
{ "src": 22911, "type": "customer", "dst": 63174 },
{ "src": 22911, "type": "customer", "dst": 7754 },
{ "src": 22958, "type": "customer", "dst": 13697 },
{ "src": 22958, "type": "customer", "dst": 14230 },
{ "src": 22958, "type": "customer", "dst": 30289 },
{ "src": 22958, "type": "customer", "dst": 55160 },
{ "src": 23005, "type": "customer", "dst": 16645 },
{ "src": 23005, "type": "customer", "dst": 16667 },
{ "src": 23005, "type": "customer", "dst": 17012 },
{ "src": 23005, "type": "customer", "dst": 25843 },
{ "src": 23005, "type": "customer", "dst": 39944 },
{ "src": 23005, "type": "customer", "dst": 40443 },
{ "src": 23005, "type": "customer", "dst": 46263 },
{ "src": 23005, "type": "customer", "dst": 54876 },
{ "src": 23005, "type": "customer", "dst": 63174 },
{ "src": 23005, "type": "customer", "dst": 7754 },
{ "src": 23106, "type": "customer", "dst": 11432 },
{ "src": 23106, "type": "customer", "dst": 262306 },
{ "src": 23106, "type": "peer", "dst": 262394 },
{ "src": 23106, "type": "peer", "dst": 262750 },
{ "src": 23106, "type": "customer", "dst": 263424 },
{ "src": 23106, "type": "peer", "dst": 28303 },
{ "src": 23106, "type": "peer", "dst": 53237 },
{ "src": 23106, "type": "customer", "dst": 61710 },
{ "src": 23118, "type": "customer", "dst": 46347 },
{ "src": 23197, "type": "peer", "dst": 33891 },
{ "src": 23520, "type": "customer", "dst": 14754 },
{ "src": 23520, "type": "peer", "dst": 16265 },
{ "src": 23520, "type": "customer", "dst": 16973 },
{ "src": 23520, "type": "customer", "dst": 18678 },
{ "src": 23520, "type": "customer", "dst": 20299 },
{ "src": 23520, "type": "peer", "dst": 22822 },
{ "src": 23520, "type": "customer", "dst": 262205 },
{ "src": 23520, "type": "customer", "dst": 262206 },
{ "src": 23520, "type": "customer", "dst": 262226 },
{ "src": 23520, "type": "customer", "dst": 263689 },
{ "src": 23520, "type": "customer", "dst": 28083 },
{ "src": 23520, "type": "customer", "dst": 28088 },
{ "src": 23520, "type": "peer", "dst": 57731 },
{ "src": 23520, "type": "peer", "dst": 8657 },
{ "src": 23563, "type": "customer", "dst": 17597 },
{ "src": 23563, "type": "customer", "dst": 38095 },
{ "src": 23563, "type": "customer", "dst": 9971 },
{ "src": 23575, "type": "customer", "dst": 10051 },
{ "src": 23575, "type": "customer", "dst": 45999 },
{ "src": 23575, "type": "customer", "dst": 9773 },
{ "src": 23642, "type": "customer", "dst": 23618 },
{ "src": 23642, "type": "customer", "dst": 23775 },
{ "src": 23642, "type": "customer", "dst": 9622 },
{ "src": 2379, "type": "customer", "dst": 26151 },
{ "src": 2379, "type": "customer", "dst": 36467 },
{ "src": 2379, "type": "customer", "dst": 4212 },
{ "src": 2379, "type": "customer", "dst": 6912 },
{ "src": 23884, "type": "customer", "dst": 18362 },
{ "src": 23884, "type": "customer", "dst": 55522 },
{ "src": 23944, "type": "customer", "dst": 45351 },
{ "src": 23944, "type": "customer", "dst": 45754 },
{ "src": 23944, "type": "customer", "dst": 59348 },
{ "src": 24151, "type": "customer", "dst": 23596 },
{ "src": 24151, "type": "customer", "dst": 55439 },
{ "src": 24173, "type": "customer", "dst": 131373 },
{ "src": 24173, "type": "customer", "dst": 131419 },
{ "src": 24173, "type": "customer", "dst": 45541 },
{ "src": 24238, "type": "customer", "dst": 132070 },
{ "src": 243, "type": "peer", "dst": 3549 },
{ "src": 24406, "type": "peer", "dst": 39792 },
{ "src": 24532, "type": "customer", "dst": 38496 },
{ "src": 24532, "type": "customer", "dst": 38509 },
{ "src": 24532, "type": "customer", "dst": 38775 },
{ "src": 24607, "type": "customer", "dst": 15419 },
{ "src": 24607, "type": "customer", "dst": 35135 },
{ "src": 24607, "type": "customer", "dst": 42774 },
{ "src": 24607, "type": "customer", "dst": 43482 },
{ "src": 24631, "type": "customer", "dst": 47843 },
{ "src": 24631, "type": "customer", "dst": 51469 },
{ "src": 24631, "type": "customer", "dst": 56632 },
{ "src": 24634, "type": "customer", "dst": 197249 },
{ "src": 24634, "type": "customer", "dst": 61113 },
{ "src": 24637, "type": "peer", "dst": 28917 },
{ "src": 24637, "type": "peer", "dst": 29076 },
{ "src": 24637, "type": "customer", "dst": 29507 },
{ "src": 24637, "type": "peer", "dst": 31133 },
{ "src": 24637, "type": "peer", "dst": 33891 },
{ "src": 24637, "type": "peer", "dst": 39792 },
{ "src": 24637, "type": "peer", "dst": 39912 },
{ "src": 24637, "type": "customer", "dst": 43353 },
{ "src": 24637, "type": "peer", "dst": 49605 },
{ "src": 24637, "type": "customer", "dst": 54229 },
{ "src": 24703, "type": "peer", "dst": 28917 },
{ "src": 24703, "type": "peer", "dst": 35352 },
{ "src": 24703, "type": "customer", "dst": 41540 },
{ "src": 24703, "type": "customer", "dst": 49227 },
{ "src": 24703, "type": "customer", "dst": 61316 },
{ "src": 24724, "type": "customer", "dst": 13110 },
{ "src": 24724, "type": "customer", "dst": 15694 },
{ "src": 24724, "type": "customer", "dst": 198782 },
{ "src": 24724, "type": "peer", "dst": 28917 },
{ "src": 24724, "type": "peer", "dst": 29076 },
{ "src": 24724, "type": "customer", "dst": 30851 },
{ "src": 24724, "type": "peer", "dst": 31133 },
{ "src": 24724, "type": "peer", "dst": 39792 },
{ "src": 24724, "type": "peer", "dst": 39912 },
{ "src": 24724, "type": "customer", "dst": 41930 },
{ "src": 24724, "type": "peer", "dst": 44953 },
{ "src": 24724, "type": "customer", "dst": 48424 },
{ "src": 24724, "type": "customer", "dst": 48896 },
{ "src": 24724, "type": "customer", "dst": 50607 },
{ "src": 24724, "type": "customer", "dst": 51566 },
{ "src": 24724, "type": "customer", "dst": 51769 },
{ "src": 24753, "type": "customer", "dst": 13126 },
{ "src": 24753, "type": "customer", "dst": 197508 },
{ "src": 24753, "type": "customer", "dst": 199734 },
{ "src": 24753, "type": "peer", "dst": 50384 },
{ "src": 24785, "type": "customer", "dst": 197985 },
{ "src": 24785, "type": "customer", "dst": 198089 },
{ "src": 24785, "type": "customer", "dst": 20867 },
{ "src": 24785, "type": "customer", "dst": 24753 },
{ "src": 24785, "type": "customer", "dst": 39059 },
{ "src": 24785, "type": "customer", "dst": 39234 },
{ "src": 24785, "type": "customer", "dst": 39923 },
{ "src": 24785, "type": "customer", "dst": 42517 },
{ "src": 24785, "type": "customer", "dst": 44953 },
{ "src": 24785, "type": "customer", "dst": 51696 },
{ "src": 24785, "type": "customer", "dst": 52102 },
{ "src": 24785, "type": "customer", "dst": 52144 },
{ "src": 24785, "type": "customer", "dst": 62383 },
{ "src": 24940, "type": "customer", "dst": 199644 },
{ "src": 24940, "type": "customer", "dst": 21413 },
{ "src": 24940, "type": "peer", "dst": 31133 },
{ "src": 24940, "type": "peer", "dst": 39792 },
{ "src": 24940, "type": "peer", "dst": 39912 },
{ "src": 24940, "type": "customer", "dst": 44355 },
{ "src": 2495, "type": "customer", "dst": 18460 },
{ "src": 2495, "type": "customer", "dst": 2496 },
{ "src": 2495, "type": "customer", "dst": 2701 },
{ "src": 24961, "type": "customer", "dst": 13237 },
{ "src": 24961, "type": "customer", "dst": 13301 },
{ "src": 24961, "type": "peer", "dst": 28917 },
{ "src": 24961, "type": "peer", "dst": 29076 },
{ "src": 24961, "type": "peer", "dst": 31133 },
{ "src": 24961, "type": "peer", "dst": 39792 },
{ "src": 24961, "type": "peer", "dst": 39912 },
{ "src": 24961, "type": "peer", "dst": 50384 },
{ "src": 24961, "type": "customer", "dst": 62100 },
{ "src": 2516, "type": "customer", "dst": 10010 },
{ "src": 2516, "type": "peer", "dst": 10026 },
{ "src": 2516, "type": "customer", "dst": 10361 },
{ "src": 2516, "type": "peer", "dst": 12389 },
{ "src": 2516, "type": "peer", "dst": 13030 },
{ "src": 2516, "type": "customer", "dst": 132053 },
{ "src": 2516, "type": "peer", "dst": 15290 },
{ "src": 2516, "type": "peer", "dst": 15412 },
{ "src": 2516, "type": "peer", "dst": 16265 },
{ "src": 2516, "type": "peer", "dst": 17557 },
{ "src": 2516, "type": "customer", "dst": 18278 },
{ "src": 2516, "type": "peer", "dst": 19151 },
{ "src": 2516, "type": "customer", "dst": 20940 },
{ "src": 2516, "type": "peer", "dst": 22773 },
{ "src": 2516, "type": "peer", "dst": 22822 },
{ "src": 2516, "type": "customer", "dst": 23197 },
{ "src": 2516, "type": "customer", "dst": 23783 },
{ "src": 2516, "type": "customer", "dst": 26704 },
{ "src": 2516, "type": "customer", "dst": 2687 },
{ "src": 2516, "type": "customer", "dst": 2907 },
{ "src": 2516, "type": "peer", "dst": 29791 },
{ "src": 2516, "type": "peer", "dst": 3292 },
{ "src": 2516, "type": "peer", "dst": 3303 },
{ "src": 2516, "type": "peer", "dst": 3320 },
{ "src": 2516, "type": "peer", "dst": 3491 },
{ "src": 2516, "type": "peer", "dst": 3549 },
{ "src": 2516, "type": "customer", "dst": 36408 },
{ "src": 2516, "type": "peer", "dst": 3786 },
{ "src": 2516, "type": "customer", "dst": 38648 },
{ "src": 2516, "type": "peer", "dst": 4134 },
{ "src": 2516, "type": "peer", "dst": 4230 },
{ "src": 2516, "type": "peer", "dst": 4323 },
{ "src": 2516, "type": "customer", "dst": 45652 },
{ "src": 2516, "type": "customer", "dst": 45685 },
{ "src": 2516, "type": "peer", "dst": 45899 },
{ "src": 2516, "type": "peer", "dst": 4589 },
{ "src": 2516, "type": "customer", "dst": 4637 },
{ "src": 2516, "type": "peer", "dst": 4648 },
{ "src": 2516, "type": "customer", "dst": 4651 },
{ "src": 2516, "type": "peer", "dst": 4657 },
{ "src": 2516, "type": "customer", "dst": 4725 },
{ "src": 2516, "type": "peer", "dst": 4761 },
{ "src": 2516, "type": "peer", "dst": 4788 },
{ "src": 2516, "type": "peer", "dst": 5400 },
{ "src": 2516, "type": "peer", "dst": 5580 },
{ "src": 2516, "type": "peer", "dst": 58453 },
{ "src": 2516, "type": "peer", "dst": 6327 },
{ "src": 2516, "type": "peer", "dst": 6453 },
{ "src": 2516, "type": "customer", "dst": 6648 },
{ "src": 2516, "type": "peer", "dst": 6830 },
{ "src": 2516, "type": "customer", "dst": 703 },
{ "src": 2516, "type": "customer", "dst": 7430 },
{ "src": 2516, "type": "peer", "dst": 7473 },
{ "src": 2516, "type": "peer", "dst": 7575 },
{ "src": 2516, "type": "peer", "dst": 7643 },
{ "src": 2516, "type": "customer", "dst": 7660 },
{ "src": 2516, "type": "peer", "dst": 7843 },
{ "src": 2516, "type": "peer", "dst": 7922 },
{ "src": 2516, "type": "peer", "dst": 8674 },
{ "src": 2516, "type": "peer", "dst": 8966 },
{ "src": 2516, "type": "peer", "dst": 9318 },
{ "src": 2516, "type": "customer", "dst": 9381 },
{ "src": 2516, "type": "peer", "dst": 9505 },
{ "src": 25192, "type": "customer", "dst": 20701 },
{ "src": 25192, "type": "customer", "dst": 26710 },
{ "src": 25192, "type": "customer", "dst": 27678 },
{ "src": 25192, "type": "peer", "dst": 29076 },
{ "src": 25192, "type": "peer", "dst": 33891 },
{ "src": 25192, "type": "peer", "dst": 39792 },
{ "src": 25192, "type": "peer", "dst": 39912 },
{ "src": 25192, "type": "customer", "dst": 52234 },
{ "src": 25250, "type": "customer", "dst": 37309 },
{ "src": 25250, "type": "customer", "dst": 37503 },
{ "src": 25394, "type": "customer", "dst": 12915 },
{ "src": 25394, "type": "customer", "dst": 16152 },
{ "src": 25394, "type": "peer", "dst": 28917 },
{ "src": 25394, "type": "peer", "dst": 29076 },
{ "src": 25394, "type": "peer", "dst": 39792 },
{ "src": 25394, "type": "peer", "dst": 39912 },
{ "src": 25394, "type": "customer", "dst": 42730 },
{ "src": 25408, "type": "customer", "dst": 198155 },
{ "src": 25408, "type": "customer", "dst": 198907 },
{ "src": 25408, "type": "customer", "dst": 201861 },
{ "src": 25408, "type": "peer", "dst": 28917 },
{ "src": 25408, "type": "customer", "dst": 60832 },
{ "src": 25454, "type": "customer", "dst": 47729 },
{ "src": 25454, "type": "customer", "dst": 49691 },
{ "src": 25454, "type": "customer", "dst": 50560 },
{ "src": 25454, "type": "customer", "dst": 57776 },
{ "src": 25467, "type": "customer", "dst": 201683 },
{ "src": 25467, "type": "peer", "dst": 39912 },
{ "src": 25467, "type": "customer", "dst": 43947 },
{ "src": 25467, "type": "customer", "dst": 8534 },
{ "src": 25478, "type": "customer", "dst": 38984 },
{ "src": 25478, "type": "customer", "dst": 50471 },
{ "src": 25478, "type": "customer", "dst": 56534 },
{ "src": 25478, "type": "customer", "dst": 57420 },
{ "src": 25478, "type": "customer", "dst": 57530 },
{ "src": 25478, "type": "customer", "dst": 59653 },
{ "src": 25478, "type": "customer", "dst": 60299 },
{ "src": 25496, "type": "customer", "dst": 202224 },
{ "src": 25660, "type": "customer", "dst": 11106 },
{ "src": 25660, "type": "customer", "dst": 19793 },
{ "src": 25660, "type": "customer", "dst": 5015 },
{ "src": 25843, "type": "customer", "dst": 30288 },
{ "src": 25899, "type": "customer", "dst": 13692 },
{ "src": 25899, "type": "peer", "dst": 30583 },
{ "src": 25899, "type": "customer", "dst": 36172 },
{ "src": 25899, "type": "customer", "dst": 53607 },
{ "src": 25899, "type": "customer", "dst": 6296 },
{ "src": 25899, "type": "customer", "dst": 6621 },
{ "src": 25899, "type": "customer", "dst": 7441 },
{ "src": 25933, "type": "customer", "dst": 11432 },
{ "src": 25933, "type": "customer", "dst": 22128 },
{ "src": 25933, "type": "customer", "dst": 262315 },
{ "src": 25933, "type": "peer", "dst": 262394 },
{ "src": 25933, "type": "customer", "dst": 262416 },
{ "src": 25933, "type": "customer", "dst": 262441 },
{ "src": 25933, "type": "peer", "dst": 262750 },
{ "src": 25933, "type": "customer", "dst": 2716 },
{ "src": 25933, "type": "customer", "dst": 52734 },
{ "src": 25933, "type": "peer", "dst": 53237 },
{ "src": 25933, "type": "customer", "dst": 61903 },
{ "src": 25933, "type": "customer", "dst": 61936 },
{ "src": 2607, "type": "customer", "dst": 21019 },
{ "src": 2607, "type": "customer", "dst": 25496 },
{ "src": 2607, "type": "customer", "dst": 29405 },
{ "src": 2607, "type": "peer", "dst": 39392 },
{ "src": 2607, "type": "customer", "dst": 56800 },
{ "src": 2607, "type": "peer", "dst": 8501 },
{ "src": 2607, "type": "peer", "dst": 8928 },
{ "src": 262150, "type": "customer", "dst": 27940 },
{ "src": 262150, "type": "customer", "dst": 52323 },
{ "src": 262150, "type": "customer", "dst": 52428 },
{ "src": 262195, "type": "customer", "dst": 11664 },
{ "src": 262195, "type": "customer", "dst": 19889 },
{ "src": 262195, "type": "customer", "dst": 27769 },
{ "src": 262206, "type": "customer", "dst": 20299 },
{ "src": 262206, "type": "customer", "dst": 27742 },
{ "src": 262206, "type": "customer", "dst": 37124 },
{ "src": 262206, "type": "customer", "dst": 37649 },
{ "src": 262355, "type": "peer", "dst": 262394 },
{ "src": 262355, "type": "peer", "dst": 262750 },
{ "src": 262355, "type": "customer", "dst": 263257 },
{ "src": 262355, "type": "customer", "dst": 263329 },
{ "src": 262355, "type": "customer", "dst": 264520 },
{ "src": 262394, "type": "peer", "dst": 262434 },
{ "src": 262394, "type": "peer", "dst": 262659 },
{ "src": 262394, "type": "peer", "dst": 262727 },
{ "src": 262394, "type": "peer", "dst": 262750 },
{ "src": 262394, "type": "peer", "dst": 262761 },
{ "src": 262394, "type": "peer", "dst": 262907 },
{ "src": 262394, "type": "peer", "dst": 263099 },
{ "src": 262394, "type": "peer", "dst": 263113 },
{ "src": 262394, "type": "peer", "dst": 263301 },
{ "src": 262394, "type": "peer", "dst": 263314 },
{ "src": 262394, "type": "customer", "dst": 263340 },
{ "src": 262394, "type": "peer", "dst": 263432 },
{ "src": 262394, "type": "peer", "dst": 263535 },
{ "src": 262394, "type": "customer", "dst": 28240 },
{ "src": 262394, "type": "customer", "dst": 52547 },
{ "src": 262434, "type": "peer", "dst": 262750 },
{ "src": 262434, "type": "customer", "dst": 263419 },
{ "src": 262434, "type": "customer", "dst": 53226 },
{ "src": 262462, "type": "customer", "dst": 264465 },
{ "src": 262462, "type": "customer", "dst": 264525 },
{ "src": 262462, "type": "customer", "dst": 61804 },
{ "src": 262659, "type": "customer", "dst": 262622 },
{ "src": 262659, "type": "peer", "dst": 262750 },
{ "src": 262659, "type": "customer", "dst": 262755 },
{ "src": 262659, "type": "customer", "dst": 52579 },
{ "src": 262688, "type": "customer", "dst": 262290 },
{ "src": 262688, "type": "customer", "dst": 262806 },
{ "src": 262688, "type": "customer", "dst": 52670 },
{ "src": 262699, "type": "customer", "dst": 262461 },
{ "src": 262699, "type": "customer", "dst": 263266 },
{ "src": 262699, "type": "customer", "dst": 263535 },
{ "src": 262706, "type": "customer", "dst": 262701 },
{ "src": 262706, "type": "customer", "dst": 263301 },
{ "src": 262706, "type": "customer", "dst": 263432 },
{ "src": 262727, "type": "peer", "dst": 262750 },
{ "src": 262750, "type": "customer", "dst": 262373 },
{ "src": 262750, "type": "peer", "dst": 262761 },
{ "src": 262750, "type": "peer", "dst": 262907 },
{ "src": 262750, "type": "peer", "dst": 263099 },
{ "src": 262750, "type": "peer", "dst": 263113 },
{ "src": 262750, "type": "peer", "dst": 263301 },
{ "src": 262750, "type": "peer", "dst": 263314 },
{ "src": 262750, "type": "peer", "dst": 263432 },
{ "src": 262750, "type": "peer", "dst": 263535 },
{ "src": 262750, "type": "customer", "dst": 53180 },
{ "src": 262750, "type": "customer", "dst": 61904 },
{ "src": 262761, "type": "customer", "dst": 262699 },
{ "src": 262761, "type": "customer", "dst": 28324 },
{ "src": 262761, "type": "customer", "dst": 61937 },
{ "src": 262773, "type": "customer", "dst": 263259 },
{ "src": 262773, "type": "customer", "dst": 263302 },
{ "src": 262773, "type": "customer", "dst": 263564 },
{ "src": 262806, "type": "customer", "dst": 262577 },
{ "src": 262806, "type": "customer", "dst": 52455 },
{ "src": 262907, "type": "customer", "dst": 52734 },
{ "src": 262907, "type": "customer", "dst": 53015 },
{ "src": 262907, "type": "customer", "dst": 61695 },
{ "src": 262989, "type": "customer", "dst": 52655 },
{ "src": 262989, "type": "customer", "dst": 52858 },
{ "src": 262989, "type": "customer", "dst": 53024 },
{ "src": 263099, "type": "customer", "dst": 263054 },
{ "src": 263099, "type": "customer", "dst": 52741 },
{ "src": 263259, "type": "customer", "dst": 263399 },
{ "src": 263314, "type": "customer", "dst": 262702 },
{ "src": 263314, "type": "customer", "dst": 262986 },
{ "src": 263314, "type": "customer", "dst": 263572 },
{ "src": 263327, "type": "customer", "dst": 264496 },
{ "src": 263327, "type": "customer", "dst": 61837 },
{ "src": 263327, "type": "customer", "dst": 61876 },
{ "src": 263432, "type": "customer", "dst": 263305 },
{ "src": 263432, "type": "customer", "dst": 263591 },
{ "src": 263616, "type": "customer", "dst": 52656 },
{ "src": 263649, "type": "customer", "dst": 52843 },
{ "src": 263649, "type": "customer", "dst": 61653 },
{ "src": 264362, "type": "customer", "dst": 263299 },
{ "src": 264362, "type": "customer", "dst": 263401 },
{ "src": 264362, "type": "customer", "dst": 52673 },
{ "src": 26554, "type": "customer", "dst": 13346 },
{ "src": 26554, "type": "customer", "dst": 13549 },
{ "src": 26554, "type": "customer", "dst": 22958 },
{ "src": 26554, "type": "customer", "dst": 25660 },
{ "src": 26554, "type": "customer", "dst": 26510 },
{ "src": 26554, "type": "customer", "dst": 32427 },
{ "src": 26554, "type": "customer", "dst": 32976 },
{ "src": 2686, "type": "peer", "dst": 10026 },
{ "src": 2686, "type": "customer", "dst": 11911 },
{ "src": 2686, "type": "peer", "dst": 12874 },
{ "src": 2686, "type": "peer", "dst": 12989 },
{ "src": 2686, "type": "peer", "dst": 13030 },
{ "src": 2686, "type": "peer", "dst": 13237 },
{ "src": 2686, "type": "peer", "dst": 15412 },
{ "src": 2686, "type": "peer", "dst": 19151 },
{ "src": 2686, "type": "customer", "dst": 20464 },
{ "src": 2686, "type": "customer", "dst": 2687 },
{ "src": 2686, "type": "peer", "dst": 29076 },
{ "src": 2686, "type": "customer", "dst": 31547 },
{ "src": 2686, "type": "peer", "dst": 3216 },
{ "src": 2686, "type": "peer", "dst": 3292 },
{ "src": 2686, "type": "peer", "dst": 3303 },
{ "src": 2686, "type": "peer", "dst": 3320 },
{ "src": 2686, "type": "peer", "dst": 3356 },
{ "src": 2686, "type": "peer", "dst": 33891 },
{ "src": 2686, "type": "customer", "dst": 3421 },
{ "src": 2686, "type": "customer", "dst": 3455 },
{ "src": 2686, "type": "peer", "dst": 3549 },
{ "src": 2686, "type": "peer", "dst": 3561 },
{ "src": 2686, "type": "peer", "dst": 39912 },
{ "src": 2686, "type": "peer", "dst": 4589 },
{ "src": 2686, "type": "peer", "dst": 4637 },
{ "src": 2686, "type": "peer", "dst": 5580 },
{ "src": 2686, "type": "customer", "dst": 57515 },
{ "src": 2686, "type": "peer", "dst": 6453 },
{ "src": 2686, "type": "peer", "dst": 6830 },
{ "src": 2686, "type": "peer", "dst": 8359 },
{ "src": 2686, "type": "peer", "dst": 8758 },
{ "src": 2686, "type": "peer", "dst": 8928 },
{ "src": 2686, "type": "peer", "dst": 9002 },
{ "src": 2687, "type": "peer", "dst": 10026 },
{ "src": 2687, "type": "peer", "dst": 15412 },
{ "src": 2687, "type": "customer", "dst": 19485 },
{ "src": 2687, "type": "peer", "dst": 20485 },
{ "src": 2687, "type": "customer", "dst": 24189 },
{ "src": 2687, "type": "peer", "dst": 3303 },
{ "src": 2687, "type": "customer", "dst": 3455 },
{ "src": 2687, "type": "peer", "dst": 38809 },
{ "src": 2687, "type": "customer", "dst": 4761 },
{ "src": 2687, "type": "customer", "dst": 57515 },
{ "src": 2687, "type": "customer", "dst": 59248 },
{ "src": 2687, "type": "peer", "dst": 6453 },
{ "src": 2687, "type": "customer", "dst": 6904 },
{ "src": 2687, "type": "peer", "dst": 7474 },
{ "src": 2687, "type": "peer", "dst": 7575 },
{ "src": 2687, "type": "peer", "dst": 7660 },
{ "src": 2687, "type": "peer", "dst": 9002 },
{ "src": 2687, "type": "peer", "dst": 9304 },
{ "src": 26881, "type": "customer", "dst": 13338 },
{ "src": 26881, "type": "customer", "dst": 32113 },
{ "src": 26881, "type": "customer", "dst": 36350 },
{ "src": 26897, "type": "customer", "dst": 11932 },
{ "src": 2697, "type": "peer", "dst": 20965 },
{ "src": 2697, "type": "customer", "dst": 55566 },
{ "src": 27064, "type": "customer", "dst": 1475 },
{ "src": 27064, "type": "customer", "dst": 1591 },
{ "src": 27064, "type": "customer", "dst": 27065 },
{ "src": 27064, "type": "customer", "dst": 27066 },
{ "src": 27064, "type": "customer", "dst": 27153 },
{ "src": 27064, "type": "customer", "dst": 5927 },
{ "src": 27064, "type": "customer", "dst": 5953 },
{ "src": 27064, "type": "customer", "dst": 5979 },
{ "src": 27064, "type": "customer", "dst": 6025 },
{ "src": 27065, "type": "customer", "dst": 1733 },
{ "src": 27065, "type": "customer", "dst": 27153 },
{ "src": 27065, "type": "customer", "dst": 5927 },
{ "src": 27065, "type": "customer", "dst": 6025 },
{ "src": 27066, "type": "customer", "dst": 1733 },
{ "src": 27066, "type": "customer", "dst": 27153 },
{ "src": 27066, "type": "customer", "dst": 3538 },
{ "src": 27066, "type": "customer", "dst": 3916 },
{ "src": 27066, "type": "customer", "dst": 5927 },
{ "src": 27066, "type": "customer", "dst": 6025 },
{ "src": 2716, "type": "customer", "dst": 19611 },
{ "src": 2716, "type": "customer", "dst": 262441 },
{ "src": 2716, "type": "customer", "dst": 28623 },
{ "src": 2716, "type": "peer", "dst": 53237 },
{ "src": 2721, "type": "customer", "dst": 12148 },
{ "src": 2721, "type": "customer", "dst": 13548 },
{ "src": 2721, "type": "customer", "dst": 53257 },
{ "src": 2722, "type": "customer", "dst": 12148 },
{ "src": 2722, "type": "customer", "dst": 2721 },
{ "src": 2722, "type": "customer", "dst": 393251 },
{ "src": 2722, "type": "customer", "dst": 47 },
{ "src": 27678, "type": "customer", "dst": 3132 },
{ "src": 27678, "type": "customer", "dst": 33075 },
{ "src": 27678, "type": "customer", "dst": 52234 },
{ "src": 27693, "type": "peer", "dst": 262394 },
{ "src": 27693, "type": "peer", "dst": 262750 },
{ "src": 27693, "type": "customer", "dst": 28262 },
{ "src": 27693, "type": "peer", "dst": 28303 },
{ "src": 27693, "type": "customer", "dst": 53210 },
{ "src": 27693, "type": "customer", "dst": 53213 },
{ "src": 27693, "type": "peer", "dst": 53237 },
{ "src": 27742, "type": "customer", "dst": 19447 },
{ "src": 27742, "type": "customer", "dst": 25607 },
{ "src": 27742, "type": "customer", "dst": 27811 },
{ "src": 28024, "type": "customer", "dst": 27839 },
{ "src": 28032, "type": "customer", "dst": 262168 },
{ "src": 28032, "type": "customer", "dst": 262195 },
{ "src": 28032, "type": "customer", "dst": 263189 },
{ "src": 28145, "type": "customer", "dst": 263616 },
{ "src": 28145, "type": "customer", "dst": 28621 },
{ "src": 28145, "type": "customer", "dst": 52616 },
{ "src": 28146, "type": "peer", "dst": 262394 },
{ "src": 28146, "type": "customer", "dst": 262746 },
{ "src": 28146, "type": "peer", "dst": 262750 },
{ "src": 28146, "type": "customer", "dst": 263659 },
{ "src": 28146, "type": "customer", "dst": 52952 },
{ "src": 28146, "type": "customer", "dst": 53169 },
{ "src": 28146, "type": "peer", "dst": 53237 },
{ "src": 28158, "type": "peer", "dst": 262394 },
{ "src": 28158, "type": "peer", "dst": 262750 },
{ "src": 28158, "type": "customer", "dst": 262841 },
{ "src": 28158, "type": "peer", "dst": 28303 },
{ "src": 28158, "type": "customer", "dst": 52724 },
{ "src": 28158, "type": "peer", "dst": 53237 },
{ "src": 28158, "type": "customer", "dst": 61892 },
{ "src": 28165, "type": "peer", "dst": 262394 },
{ "src": 28165, "type": "peer", "dst": 262750 },
{ "src": 28165, "type": "customer", "dst": 264473 },
{ "src": 28165, "type": "peer", "dst": 28303 },
{ "src": 28165, "type": "peer", "dst": 53237 },
{ "src": 28165, "type": "customer", "dst": 61823 },
{ "src": 28202, "type": "customer", "dst": 262314 },
{ "src": 28202, "type": "peer", "dst": 262394 },
{ "src": 28202, "type": "peer", "dst": 262750 },
{ "src": 28202, "type": "customer", "dst": 263623 },
{ "src": 28202, "type": "customer", "dst": 28250 },
{ "src": 28202, "type": "peer", "dst": 28303 },
{ "src": 28202, "type": "customer", "dst": 53125 },
{ "src": 28202, "type": "peer", "dst": 53237 },
{ "src": 28250, "type": "peer", "dst": 262394 },
{ "src": 28250, "type": "peer", "dst": 262750 },
{ "src": 28250, "type": "customer", "dst": 263406 },
{ "src": 28250, "type": "customer", "dst": 264362 },
{ "src": 28250, "type": "peer", "dst": 28303 },
{ "src": 28250, "type": "customer", "dst": 53077 },
{ "src": 28250, "type": "peer", "dst": 53237 },
{ "src": 28277, "type": "peer", "dst": 262394 },
{ "src": 28277, "type": "peer", "dst": 262750 },
{ "src": 28277, "type": "peer", "dst": 28303 },
{ "src": 28277, "type": "peer", "dst": 53237 },
{ "src": 28283, "type": "peer", "dst": 262394 },
{ "src": 28283, "type": "peer", "dst": 262750 },
{ "src": 28283, "type": "customer", "dst": 262907 },
{ "src": 28283, "type": "customer", "dst": 263113 },
{ "src": 28283, "type": "customer", "dst": 263126 },
{ "src": 28283, "type": "customer", "dst": 28599 },
{ "src": 28283, "type": "peer", "dst": 28917 },
{ "src": 28283, "type": "peer", "dst": 31133 },
{ "src": 28283, "type": "peer", "dst": 39792 },
{ "src": 28283, "type": "peer", "dst": 39912 },
{ "src": 28283, "type": "peer", "dst": 44953 },
{ "src": 28283, "type": "peer", "dst": 50384 },
{ "src": 28283, "type": "peer", "dst": 53237 },
{ "src": 28285, "type": "customer", "dst": 262434 },
{ "src": 28285, "type": "customer", "dst": 263419 },
{ "src": 28285, "type": "customer", "dst": 28620 },
{ "src": 28288, "type": "peer", "dst": 262394 },
{ "src": 28288, "type": "peer", "dst": 262750 },
{ "src": 28288, "type": "peer", "dst": 28303 },
{ "src": 28288, "type": "peer", "dst": 53237 },
{ "src": 28303, "type": "peer", "dst": 262355 },
{ "src": 28303, "type": "peer", "dst": 262394 },
{ "src": 28303, "type": "customer", "dst": 262399 },
{ "src": 28303, "type": "peer", "dst": 262434 },
{ "src": 28303, "type": "peer", "dst": 262659 },
{ "src": 28303, "type": "customer", "dst": 262746 },
{ "src": 28303, "type": "peer", "dst": 262750 },
{ "src": 28303, "type": "peer", "dst": 262761 },
{ "src": 28303, "type": "customer", "dst": 262782 },
{ "src": 28303, "type": "peer", "dst": 262907 },
{ "src": 28303, "type": "peer", "dst": 262989 },
{ "src": 28303, "type": "customer", "dst": 263051 },
{ "src": 28303, "type": "peer", "dst": 263099 },
{ "src": 28303, "type": "peer", "dst": 263113 },
{ "src": 28303, "type": "peer", "dst": 263301 },
{ "src": 28303, "type": "peer", "dst": 263314 },
{ "src": 28303, "type": "customer", "dst": 263368 },
{ "src": 28303, "type": "peer", "dst": 263432 },
{ "src": 28303, "type": "peer", "dst": 263535 },
{ "src": 28303, "type": "customer", "dst": 28146 },
{ "src": 28303, "type": "customer", "dst": 28283 },
{ "src": 28303, "type": "peer", "dst": 28306 },
{ "src": 28303, "type": "peer", "dst": 28327 },
{ "src": 28303, "type": "peer", "dst": 28343 },
{ "src": 28303, "type": "peer", "dst": 28359 },
{ "src": 28303, "type": "peer", "dst": 28360 },
{ "src": 28303, "type": "peer", "dst": 28665 },
{ "src": 28303, "type": "peer", "dst": 36408 },
{ "src": 28303, "type": "peer", "dst": 52547 },
{ "src": 28303, "type": "peer", "dst": 52579 },
{ "src": 28303, "type": "peer", "dst": 52734 },
{ "src": 28303, "type": "peer", "dst": 52858 },
{ "src": 28303, "type": "customer", "dst": 52977 },
{ "src": 28303, "type": "peer", "dst": 53059 },
{ "src": 28303, "type": "peer", "dst": 53208 },
{ "src": 28303, "type": "customer", "dst": 53222 },
{ "src": 28303, "type": "peer", "dst": 53237 },
{ "src": 28303, "type": "peer", "dst": 61568 },
{ "src": 28306, "type": "peer", "dst": 262394 },
{ "src": 28306, "type": "peer", "dst": 262750 },
{ "src": 28306, "type": "customer", "dst": 263305 },
{ "src": 28306, "type": "customer", "dst": 263432 },
{ "src": 28306, "type": "customer", "dst": 263591 },
{ "src": 28306, "type": "customer", "dst": 52918 },
{ "src": 28306, "type": "customer", "dst": 53059 },
{ "src": 28306, "type": "customer", "dst": 53216 },
{ "src": 28306, "type": "peer", "dst": 53237 },
{ "src": 28327, "type": "peer", "dst": 53237 },
{ "src": 28329, "type": "customer", "dst": 262394 },
{ "src": 28329, "type": "customer", "dst": 262462 },
{ "src": 28329, "type": "customer", "dst": 262562 },
{ "src": 28329, "type": "peer", "dst": 262688 },
{ "src": 28329, "type": "customer", "dst": 262750 },
{ "src": 28329, "type": "customer", "dst": 262989 },
{ "src": 28329, "type": "customer", "dst": 263340 },
{ "src": 28329, "type": "customer", "dst": 263432 },
{ "src": 28329, "type": "customer", "dst": 264362 },
{ "src": 28329, "type": "customer", "dst": 28178 },
{ "src": 28329, "type": "customer", "dst": 28250 },
{ "src": 28329, "type": "customer", "dst": 28327 },
{ "src": 28329, "type": "peer", "dst": 28343 },
{ "src": 28329, "type": "peer", "dst": 28360 },
{ "src": 28329, "type": "customer", "dst": 52860 },
{ "src": 28329, "type": "customer", "dst": 53045 },
{ "src": 28329, "type": "peer", "dst": 53237 },
{ "src": 28343, "type": "customer", "dst": 11835 },
{ "src": 28343, "type": "peer", "dst": 262394 },
{ "src": 28343, "type": "customer", "dst": 262746 },
{ "src": 28343, "type": "peer", "dst": 262750 },
{ "src": 28343, "type": "customer", "dst": 263051 },
{ "src": 28343, "type": "customer", "dst": 263368 },
{ "src": 28343, "type": "customer", "dst": 28176 },
{ "src": 28343, "type": "customer", "dst": 28283 },
{ "src": 28343, "type": "peer", "dst": 53237 },
{ "src": 28359, "type": "peer", "dst": 262394 },
{ "src": 28359, "type": "customer", "dst": 262688 },
{ "src": 28359, "type": "peer", "dst": 262750 },
{ "src": 28359, "type": "peer", "dst": 53237 },
{ "src": 28359, "type": "customer", "dst": 61725 },
{ "src": 28359, "type": "customer", "dst": 61872 },
{ "src": 28360, "type": "peer", "dst": 262394 },
{ "src": 28360, "type": "peer", "dst": 262750 },
{ "src": 28360, "type": "customer", "dst": 263054 },
{ "src": 28360, "type": "customer", "dst": 263099 },
{ "src": 28360, "type": "customer", "dst": 263252 },
{ "src": 28360, "type": "customer", "dst": 52936 },
{ "src": 28360, "type": "peer", "dst": 53237 },
{ "src": 28368, "type": "customer", "dst": 262312 },
{ "src": 28368, "type": "peer", "dst": 262394 },
{ "src": 28368, "type": "customer", "dst": 262706 },
{ "src": 28368, "type": "customer", "dst": 262727 },
{ "src": 28368, "type": "peer", "dst": 262750 },
{ "src": 28368, "type": "customer", "dst": 263327 },
{ "src": 28368, "type": "customer", "dst": 263383 },
{ "src": 28368, "type": "customer", "dst": 263606 },
{ "src": 28368, "type": "customer", "dst": 52996 },
{ "src": 28368, "type": "peer", "dst": 53237 },
{ "src": 28438, "type": "customer", "dst": 14249 },
{ "src": 28438, "type": "customer", "dst": 28539 },
{ "src": 28438, "type": "customer", "dst": 36408 },
{ "src": 2854, "type": "peer", "dst": 10026 },
{ "src": 2854, "type": "peer", "dst": 12989 },
{ "src": 2854, "type": "peer", "dst": 13237 },
{ "src": 2854, "type": "customer", "dst": 196914 },
{ "src": 2854, "type": "customer", "dst": 197258 },
{ "src": 2854, "type": "customer", "dst": 197756 },
{ "src": 2854, "type": "customer", "dst": 20144 },
{ "src": 2854, "type": "peer", "dst": 20562 },
{ "src": 2854, "type": "peer", "dst": 20632 },
{ "src": 2854, "type": "peer", "dst": 25478 },
{ "src": 2854, "type": "peer", "dst": 28917 },
{ "src": 2854, "type": "peer", "dst": 3267 },
{ "src": 2854, "type": "customer", "dst": 35022 },
{ "src": 2854, "type": "customer", "dst": 39264 },
{ "src": 2854, "type": "peer", "dst": 39792 },
{ "src": 2854, "type": "peer", "dst": 39912 },
{ "src": 2854, "type": "peer", "dst": 42632 },
{ "src": 2854, "type": "customer", "dst": 44192 },
{ "src": 2854, "type": "peer", "dst": 44953 },
{ "src": 2854, "type": "customer", "dst": 49841 },
{ "src": 2854, "type": "customer", "dst": 49897 },
{ "src": 2854, "type": "customer", "dst": 50279 },
{ "src": 2854, "type": "customer", "dst": 57031 },
{ "src": 2854, "type": "peer", "dst": 9304 },
{ "src": 2856, "type": "peer", "dst": 10026 },
{ "src": 2856, "type": "peer", "dst": 12989 },
{ "src": 2856, "type": "peer", "dst": 13030 },
{ "src": 2856, "type": "peer", "dst": 13237 },
{ "src": 2856, "type": "customer", "dst": 15084 },
{ "src": 2856, "type": "peer", "dst": 15412 },
{ "src": 2856, "type": "peer", "dst": 19151 },
{ "src": 2856, "type": "customer", "dst": 19812 },
{ "src": 2856, "type": "customer", "dst": 2134 },
{ "src": 2856, "type": "customer", "dst": 30614 },
{ "src": 2856, "type": "peer", "dst": 3292 },
{ "src": 2856, "type": "peer", "dst": 3303 },
{ "src": 2856, "type": "peer", "dst": 33891 },
{ "src": 2856, "type": "customer", "dst": 39060 },
{ "src": 2856, "type": "customer", "dst": 41380 },
{ "src": 2856, "type": "customer", "dst": 42284 },
{ "src": 2856, "type": "peer", "dst": 4589 },
{ "src": 2856, "type": "customer", "dst": 47563 },
{ "src": 2856, "type": "customer", "dst": 49413 },
{ "src": 2856, "type": "peer", "dst": 5580 },
{ "src": 2856, "type": "peer", "dst": 6830 },
{ "src": 2856, "type": "peer", "dst": 8657 },
{ "src": 2856, "type": "peer", "dst": 8928 },
{ "src": 2856, "type": "peer", "dst": 9002 },
{ "src": 28599, "type": "peer", "dst": 262394 },
{ "src": 28599, "type": "peer", "dst": 262750 },
{ "src": 28599, "type": "peer", "dst": 53237 },
{ "src": 28620, "type": "customer", "dst": 61910 },
{ "src": 28623, "type": "peer", "dst": 53237 },
{ "src": 28646, "type": "peer", "dst": 53237 },
{ "src": 28665, "type": "peer", "dst": 262394 },
{ "src": 28665, "type": "peer", "dst": 262750 },
{ "src": 28665, "type": "peer", "dst": 53237 },
{ "src": 28676, "type": "peer", "dst": 28917 },
{ "src": 28676, "type": "peer", "dst": 29076 },
{ "src": 28676, "type": "customer", "dst": 29515 },
{ "src": 28676, "type": "peer", "dst": 31133 },
{ "src": 28676, "type": "customer", "dst": 31550 },
{ "src": 28676, "type": "peer", "dst": 39792 },
{ "src": 28676, "type": "peer", "dst": 39912 },
{ "src": 28676, "type": "customer", "dst": 57974 },
{ "src": 28684, "type": "customer", "dst": 35622 },
{ "src": 28684, "type": "customer", "dst": 35772 },
{ "src": 28684, "type": "customer", "dst": 44421 },
{ "src": 28757, "type": "peer", "dst": 31133 },
{ "src": 28761, "type": "peer", "dst": 28917 },
{ "src": 28761, "type": "customer", "dst": 31148 },
{ "src": 28761, "type": "customer", "dst": 42238 },
{ "src": 28761, "type": "customer", "dst": 43822 },
{ "src": 28885, "type": "customer", "dst": 15679 },
{ "src": 28885, "type": "customer", "dst": 201684 },
{ "src": 28885, "type": "customer", "dst": 60680 },
{ "src": 28907, "type": "customer", "dst": 21343 },
{ "src": 28907, "type": "customer", "dst": 43580 },
{ "src": 28907, "type": "customer", "dst": 48641 },
{ "src": 28910, "type": "customer", "dst": 29385 },
{ "src": 28910, "type": "customer", "dst": 30728 },
{ "src": 28910, "type": "customer", "dst": 34718 },
{ "src": 28917, "type": "customer", "dst": 12773 },
{ "src": 28917, "type": "customer", "dst": 16047 },
{ "src": 28917, "type": "peer", "dst": 196844 },
{ "src": 28917, "type": "peer", "dst": 197235 },
{ "src": 28917, "type": "peer", "dst": 197426 },
{ "src": 28917, "type": "customer", "dst": 198297 },
{ "src": 28917, "type": "customer", "dst": 28907 },
{ "src": 28917, "type": "peer", "dst": 29049 },
{ "src": 28917, "type": "peer", "dst": 29053 },
{ "src": 28917, "type": "peer", "dst": 29119 },
{ "src": 28917, "type": "peer", "dst": 29791 },
{ "src": 28917, "type": "peer", "dst": 30419 },
{ "src": 28917, "type": "peer", "dst": 30968 },
{ "src": 28917, "type": "peer", "dst": 31042 },
{ "src": 28917, "type": "peer", "dst": 31133 },
{ "src": 28917, "type": "peer", "dst": 31500 },
{ "src": 28917, "type": "customer", "dst": 3255 },
{ "src": 28917, "type": "customer", "dst": 3261 },
{ "src": 28917, "type": "peer", "dst": 33891 },
{ "src": 28917, "type": "peer", "dst": 33986 },
{ "src": 28917, "type": "peer", "dst": 34123 },
{ "src": 28917, "type": "peer", "dst": 34224 },
{ "src": 28917, "type": "peer", "dst": 34232 },
{ "src": 28917, "type": "peer", "dst": 34968 },
{ "src": 28917, "type": "customer", "dst": 35539 },
{ "src": 28917, "type": "peer", "dst": 36236 },
{ "src": 28917, "type": "peer", "dst": 36408 },
{ "src": 28917, "type": "peer", "dst": 38193 },
{ "src": 28917, "type": "customer", "dst": 39153 },
{ "src": 28917, "type": "peer", "dst": 39912 },
{ "src": 28917, "type": "peer", "dst": 39923 },
{ "src": 28917, "type": "peer", "dst": 41090 },
{ "src": 28917, "type": "peer", "dst": 41313 },
{ "src": 28917, "type": "peer", "dst": 42184 },
{ "src": 28917, "type": "peer", "dst": 42368 },
{ "src": 28917, "type": "peer", "dst": 42473 },
{ "src": 28917, "type": "peer", "dst": 42632 },
{ "src": 28917, "type": "peer", "dst": 42893 },
{ "src": 28917, "type": "peer", "dst": 43267 },
{ "src": 28917, "type": "peer", "dst": 43561 },
{ "src": 28917, "type": "customer", "dst": 43727 },
{ "src": 28917, "type": "peer", "dst": 44654 },
{ "src": 28917, "type": "peer", "dst": 44927 },
{ "src": 28917, "type": "peer", "dst": 44953 },
{ "src": 28917, "type": "peer", "dst": 47169 },
{ "src": 28917, "type": "customer", "dst": 47872 },
{ "src": 28917, "type": "peer", "dst": 48223 },
{ "src": 28917, "type": "peer", "dst": 48366 },
{ "src": 28917, "type": "peer", "dst": 48370 },
{ "src": 28917, "type": "customer", "dst": 48658 },
{ "src": 28917, "type": "customer", "dst": 48674 },
{ "src": 28917, "type": "peer", "dst": 50384 },
{ "src": 28917, "type": "peer", "dst": 50538 },
{ "src": 28917, "type": "customer", "dst": 50923 },
{ "src": 28917, "type": "peer", "dst": 51028 },
{ "src": 28917, "type": "peer", "dst": 51478 },
{ "src": 28917, "type": "peer", "dst": 57344 },
{ "src": 28917, "type": "peer", "dst": 57463 },
{ "src": 28917, "type": "peer", "dst": 58002 },
{ "src": 28917, "type": "peer", "dst": 58453 },
{ "src": 28917, "type": "peer", "dst": 60764 },
{ "src": 28917, "type": "peer", "dst": 61266 },
{ "src": 28917, "type": "peer", "dst": 61316 },
{ "src": 28917, "type": "customer", "dst": 8936 },
{ "src": 28926, "type": "customer", "dst": 197287 },
{ "src": 28926, "type": "customer", "dst": 39726 },
{ "src": 28926, "type": "customer", "dst": 50927 },
{ "src": 28926, "type": "customer", "dst": 62028 },
{ "src": 28978, "type": "customer", "dst": 20491 },
{ "src": 28978, "type": "customer", "dst": 42564 },
{ "src": 28978, "type": "customer", "dst": 47128 },
{ "src": 29049, "type": "customer", "dst": 12880 },
{ "src": 29049, "type": "customer", "dst": 197223 },
{ "src": 29049, "type": "customer", "dst": 20144 },
{ "src": 29049, "type": "peer", "dst": 29076 },
{ "src": 29049, "type": "peer", "dst": 31133 },
{ "src": 29049, "type": "peer", "dst": 33891 },
{ "src": 29049, "type": "customer", "dst": 34876 },
{ "src": 29049, "type": "customer", "dst": 39216 },
{ "src": 29049, "type": "peer", "dst": 39792 },
{ "src": 29049, "type": "peer", "dst": 39912 },
{ "src": 29049, "type": "customer", "dst": 48159 },
{ "src": 29049, "type": "peer", "dst": 50384 },
{ "src": 29053, "type": "customer", "dst": 196811 },
{ "src": 29053, "type": "customer", "dst": 198297 },
{ "src": 29053, "type": "peer", "dst": 39792 },
{ "src": 29053, "type": "customer", "dst": 51578 },
{ "src": 29053, "type": "customer", "dst": 61141 },
{ "src": 29056, "type": "customer", "dst": 29143 },
{ "src": 29056, "type": "customer", "dst": 35646 },
{ "src": 29056, "type": "customer", "dst": 48339 },
{ "src": 29061, "type": "customer", "dst": 39819 },
{ "src": 29061, "type": "customer", "dst": 50251 },
{ "src": 29061, "type": "customer", "dst": 61196 },
{ "src": 29076, "type": "customer", "dst": 197140 },
{ "src": 29076, "type": "customer", "dst": 198226 },
{ "src": 29076, "type": "customer", "dst": 21453 },
{ "src": 29076, "type": "customer", "dst": 24703 },
{ "src": 29076, "type": "customer", "dst": 28761 },
{ "src": 29076, "type": "customer", "dst": 29226 },
{ "src": 29076, "type": "customer", "dst": 30968 },
{ "src": 29076, "type": "peer", "dst": 31042 },
{ "src": 29076, "type": "peer", "dst": 31133 },
{ "src": 29076, "type": "customer", "dst": 3255 },
{ "src": 29076, "type": "peer", "dst": 34224 },
{ "src": 29076, "type": "customer", "dst": 34277 },
{ "src": 29076, "type": "peer", "dst": 36236 },
{ "src": 29076, "type": "peer", "dst": 36408 },
{ "src": 29076, "type": "peer", "dst": 38193 },
{ "src": 29076, "type": "customer", "dst": 38984 },
{ "src": 29076, "type": "customer", "dst": 39153 },
{ "src": 29076, "type": "peer", "dst": 39792 },
{ "src": 29076, "type": "peer", "dst": 39912 },
{ "src": 29076, "type": "peer", "dst": 41313 },
{ "src": 29076, "type": "peer", "dst": 42632 },
{ "src": 29076, "type": "customer", "dst": 42893 },
{ "src": 29076, "type": "customer", "dst": 43267 },
{ "src": 29076, "type": "peer", "dst": 43561 },
{ "src": 29076, "type": "customer", "dst": 43727 },
{ "src": 29076, "type": "peer", "dst": 44654 },
{ "src": 29076, "type": "peer", "dst": 47169 },
{ "src": 29076, "type": "customer", "dst": 47211 },
{ "src": 29076, "type": "customer", "dst": 47934 },
{ "src": 29076, "type": "peer", "dst": 48287 },
{ "src": 29076, "type": "customer", "dst": 48366 },
{ "src": 29076, "type": "customer", "dst": 48822 },
{ "src": 29076, "type": "customer", "dst": 48964 },
{ "src": 29076, "type": "customer", "dst": 49124 },
{ "src": 29076, "type": "peer", "dst": 49218 },
{ "src": 29076, "type": "peer", "dst": 50538 },
{ "src": 29076, "type": "customer", "dst": 50923 },
{ "src": 29076, "type": "customer", "dst": 5563 },
{ "src": 29076, "type": "customer", "dst": 57191 },
{ "src": 29076, "type": "peer", "dst": 57344 },
{ "src": 29076, "type": "customer", "dst": 58002 },
{ "src": 29076, "type": "peer", "dst": 58453 },
{ "src": 29076, "type": "customer", "dst": 61063 },
{ "src": 29076, "type": "peer", "dst": 61266 },
{ "src": 29076, "type": "peer", "dst": 61316 },
{ "src": 29076, "type": "customer", "dst": 6789 },
{ "src": 2907, "type": "peer", "dst": 10026 },
{ "src": 2907, "type": "peer", "dst": 15412 },
{ "src": 2907, "type": "customer", "dst": 17943 },
{ "src": 2907, "type": "peer", "dst": 20965 },
{ "src": 2907, "type": "customer", "dst": 24264 },
{ "src": 2907, "type": "customer", "dst": 2523 },
{ "src": 2907, "type": "customer", "dst": 45685 },
{ "src": 2907, "type": "customer", "dst": 45688 },
{ "src": 2907, "type": "customer", "dst": 55904 },
{ "src": 2907, "type": "customer", "dst": 56218 },
{ "src": 2907, "type": "peer", "dst": 7473 },
{ "src": 2907, "type": "peer", "dst": 7575 },
{ "src": 2907, "type": "customer", "dst": 7660 },
{ "src": 2907, "type": "peer", "dst": 9002 },
{ "src": 2907, "type": "peer", "dst": 9505 },
{ "src": 29119, "type": "customer", "dst": 29337 },
{ "src": 29119, "type": "peer", "dst": 31133 },
{ "src": 29119, "type": "peer", "dst": 39792 },
{ "src": 29119, "type": "peer", "dst": 39912 },
{ "src": 29119, "type": "customer", "dst": 43402 },
{ "src": 29119, "type": "peer", "dst": 44953 },
{ "src": 29119, "type": "customer", "dst": 4589 },
{ "src": 29119, "type": "customer", "dst": 48427 },
{ "src": 29119, "type": "peer", "dst": 50384 },
{ "src": 29119, "type": "customer", "dst": 52037 },
{ "src": 29119, "type": "customer", "dst": 61337 },
{ "src": 29226, "type": "customer", "dst": 196695 },
{ "src": 29226, "type": "customer", "dst": 200016 },
{ "src": 29226, "type": "customer", "dst": 31336 },
{ "src": 29226, "type": "customer", "dst": 34472 },
{ "src": 29226, "type": "peer", "dst": 39792 },
{ "src": 29226, "type": "peer", "dst": 39912 },
{ "src": 29226, "type": "peer", "dst": 43727 },
{ "src": 29226, "type": "customer", "dst": 48096 },
{ "src": 29226, "type": "customer", "dst": 49509 },
{ "src": 29226, "type": "peer", "dst": 50384 },
{ "src": 29226, "type": "customer", "dst": 57573 },
{ "src": 29226, "type": "customer", "dst": 60308 },
{ "src": 29286, "type": "customer", "dst": 24634 },
{ "src": 29286, "type": "customer", "dst": 31126 },
{ "src": 29305, "type": "customer", "dst": 43290 },
{ "src": 29305, "type": "customer", "dst": 49753 },
{ "src": 29305, "type": "customer", "dst": 57524 },
{ "src": 29317, "type": "customer", "dst": 12817 },
{ "src": 29405, "type": "peer", "dst": 33891 },
{ "src": 29405, "type": "customer", "dst": 38949 },
{ "src": 29405, "type": "customer", "dst": 58328 },
{ "src": 29405, "type": "customer", "dst": 61424 },
{ "src": 29520, "type": "peer", "dst": 39792 },
{ "src": 29614, "type": "customer", "dst": 15825 },
{ "src": 29614, "type": "customer", "dst": 33786 },
{ "src": 29614, "type": "customer", "dst": 37392 },
{ "src": 29632, "type": "peer", "dst": 34224 },
{ "src": 29632, "type": "customer", "dst": 34775 },
{ "src": 29632, "type": "customer", "dst": 35352 },
{ "src": 29632, "type": "customer", "dst": 35524 },
{ "src": 29632, "type": "peer", "dst": 39792 },
{ "src": 29632, "type": "peer", "dst": 39912 },
{ "src": 29632, "type": "peer", "dst": 42632 },
{ "src": 29632, "type": "customer", "dst": 6768 },
{ "src": 29648, "type": "customer", "dst": 12418 },
{ "src": 29648, "type": "customer", "dst": 12772 },
{ "src": 29648, "type": "customer", "dst": 49845 },
{ "src": 29648, "type": "customer", "dst": 56342 },
{ "src": 29649, "type": "customer", "dst": 197848 },
{ "src": 29649, "type": "customer", "dst": 34546 },
{ "src": 29649, "type": "customer", "dst": 51075 },
{ "src": 29649, "type": "customer", "dst": 56523 },
{ "src": 29791, "type": "customer", "dst": 10913 },
{ "src": 29791, "type": "peer", "dst": 31133 },
{ "src": 29791, "type": "peer", "dst": 33891 },
{ "src": 29791, "type": "peer", "dst": 39792 },
{ "src": 29791, "type": "peer", "dst": 39912 },
{ "src": 29791, "type": "peer", "dst": 44953 },
{ "src": 29791, "type": "peer", "dst": 50384 },
{ "src": 29791, "type": "customer", "dst": 54416 },
{ "src": 29791, "type": "customer", "dst": 62597 },
{ "src": 29863, "type": "customer", "dst": 14600 },
{ "src": 29863, "type": "customer", "dst": 19869 },
{ "src": 29863, "type": "customer", "dst": 40522 },
{ "src": 29863, "type": "customer", "dst": 40728 },
{ "src": 29863, "type": "customer", "dst": 63152 },
{ "src": 29889, "type": "customer", "dst": 11362 },
{ "src": 29889, "type": "customer", "dst": 32740 },
{ "src": 29944, "type": "customer", "dst": 29778 },
{ "src": 29944, "type": "customer", "dst": 29889 },
{ "src": 29944, "type": "customer", "dst": 32740 },
{ "src": 30023, "type": "customer", "dst": 17466 },
{ "src": 30023, "type": "customer", "dst": 18676 },
{ "src": 30023, "type": "customer", "dst": 19384 },
{ "src": 30023, "type": "customer", "dst": 19857 },
{ "src": 30023, "type": "customer", "dst": 22334 },
{ "src": 30036, "type": "customer", "dst": 19685 },
{ "src": 30036, "type": "customer", "dst": 46115 },
{ "src": 30036, "type": "customer", "dst": 46925 },
{ "src": 30036, "type": "customer", "dst": 62920 },
{ "src": 30359, "type": "customer", "dst": 14739 },
{ "src": 30419, "type": "peer", "dst": 31133 },
{ "src": 30419, "type": "peer", "dst": 33891 },
{ "src": 30419, "type": "peer", "dst": 39792 },
{ "src": 30419, "type": "peer", "dst": 39912 },
{ "src": 30419, "type": "peer", "dst": 44953 },
{ "src": 30419, "type": "peer", "dst": 50384 },
{ "src": 30583, "type": "customer", "dst": 19883 },
{ "src": 30583, "type": "customer", "dst": 21561 },
{ "src": 30583, "type": "customer", "dst": 36222 },
{ "src": 30851, "type": "customer", "dst": 43498 },
{ "src": 30851, "type": "customer", "dst": 59670 },
{ "src": 30851, "type": "customer", "dst": 59990 },
{ "src": 30968, "type": "peer", "dst": 39792 },
{ "src": 30971, "type": "customer", "dst": 1921 },
{ "src": 30971, "type": "customer", "dst": 201612 },
{ "src": 30971, "type": "peer", "dst": 39912 },
{ "src": 30985, "type": "customer", "dst": 327722 },
{ "src": 30985, "type": "customer", "dst": 36864 },
{ "src": 31042, "type": "customer", "dst": 15926 },
{ "src": 31042, "type": "peer", "dst": 31133 },
{ "src": 31042, "type": "customer", "dst": 3212 },
{ "src": 31042, "type": "customer", "dst": 34404 },
{ "src": 31042, "type": "peer", "dst": 39792 },
{ "src": 31042, "type": "peer", "dst": 39912 },
{ "src": 31042, "type": "customer", "dst": 42473 },
{ "src": 31042, "type": "peer", "dst": 44953 },
{ "src": 31042, "type": "customer", "dst": 48653 },
{ "src": 31042, "type": "customer", "dst": 49167 },
{ "src": 31042, "type": "customer", "dst": 49402 },
{ "src": 31042, "type": "customer", "dst": 49486 },
{ "src": 31042, "type": "peer", "dst": 50384 },
{ "src": 31042, "type": "customer", "dst": 51859 },
{ "src": 31126, "type": "customer", "dst": 39918 },
{ "src": 31126, "type": "customer", "dst": 58281 },
{ "src": 31126, "type": "customer", "dst": 62144 },
{ "src": 3112, "type": "customer", "dst": 26818 },
{ "src": 3112, "type": "customer", "dst": 26894 },
{ "src": 3112, "type": "customer", "dst": 30298 },
{ "src": 3112, "type": "customer", "dst": 33167 },
{ "src": 3112, "type": "customer", "dst": 7925 },
{ "src": 31133, "type": "customer", "dst": 12297 },
{ "src": 31133, "type": "customer", "dst": 12418 },
{ "src": 31133, "type": "customer", "dst": 12578 },
{ "src": 31133, "type": "customer", "dst": 12695 },
{ "src": 31133, "type": "customer", "dst": 12714 },
{ "src": 31133, "type": "customer", "dst": 12772 },
{ "src": 31133, "type": "customer", "dst": 196695 },
{ "src": 31133, "type": "peer", "dst": 196844 },
{ "src": 31133, "type": "customer", "dst": 197235 },
{ "src": 31133, "type": "peer", "dst": 197426 },
{ "src": 31133, "type": "customer", "dst": 197708 },
{ "src": 31133, "type": "peer", "dst": 197985 },
{ "src": 31133, "type": "peer", "dst": 198093 },
{ "src": 31133, "type": "customer", "dst": 199020 },
{ "src": 31133, "type": "customer", "dst": 201516 },
{ "src": 31133, "type": "customer", "dst": 201861 },
{ "src": 31133, "type": "customer", "dst": 201952 },
{ "src": 31133, "type": "customer", "dst": 20632 },
{ "src": 31133, "type": "customer", "dst": 25408 },
{ "src": 31133, "type": "customer", "dst": 28910 },
{ "src": 31133, "type": "customer", "dst": 29648 },
{ "src": 31133, "type": "peer", "dst": 31500 },
{ "src": 31133, "type": "customer", "dst": 3216 },
{ "src": 31133, "type": "peer", "dst": 33854 },
{ "src": 31133, "type": "peer", "dst": 33891 },
{ "src": 31133, "type": "peer", "dst": 33986 },
{ "src": 31133, "type": "peer", "dst": 34224 },
{ "src": 31133, "type": "peer", "dst": 34407 },
{ "src": 31133, "type": "customer", "dst": 34703 },
{ "src": 31133, "type": "peer", "dst": 34968 },
{ "src": 31133, "type": "customer", "dst": 35104 },
{ "src": 31133, "type": "customer", "dst": 35805 },
{ "src": 31133, "type": "peer", "dst": 36236 },
{ "src": 31133, "type": "customer", "dst": 36408 },
{ "src": 31133, "type": "peer", "dst": 36616 },
{ "src": 31133, "type": "peer", "dst": 37179 },
{ "src": 31133, "type": "peer", "dst": 38193 },
{ "src": 31133, "type": "customer", "dst": 39153 },
{ "src": 31133, "type": "customer", "dst": 39264 },
{ "src": 31133, "type": "peer", "dst": 39792 },
{ "src": 31133, "type": "peer", "dst": 39912 },
{ "src": 31133, "type": "peer", "dst": 39923 },
{ "src": 31133, "type": "peer", "dst": 41090 },
{ "src": 31133, "type": "peer", "dst": 41313 },
{ "src": 31133, "type": "customer", "dst": 41743 },
{ "src": 31133, "type": "peer", "dst": 42184 },
{ "src": 31133, "type": "customer", "dst": 42922 },
{ "src": 31133, "type": "peer", "dst": 43561 },
{ "src": 31133, "type": "customer", "dst": 44572 },
{ "src": 31133, "type": "peer", "dst": 44646 },
{ "src": 31133, "type": "peer", "dst": 44654 },
{ "src": 31133, "type": "customer", "dst": 44678 },
{ "src": 31133, "type": "peer", "dst": 44953 },
{ "src": 31133, "type": "peer", "dst": 45177 },
{ "src": 31133, "type": "peer", "dst": 47169 },
{ "src": 31133, "type": "peer", "dst": 47622 },
{ "src": 31133, "type": "peer", "dst": 47872 },
{ "src": 31133, "type": "customer", "dst": 49218 },
{ "src": 31133, "type": "customer", "dst": 50538 },
{ "src": 31133, "type": "customer", "dst": 51547 },
{ "src": 31133, "type": "customer", "dst": 5563 },
{ "src": 31133, "type": "customer", "dst": 57006 },
{ "src": 31133, "type": "peer", "dst": 57344 },
{ "src": 31133, "type": "peer", "dst": 57463 },
{ "src": 31133, "type": "customer", "dst": 57487 },
{ "src": 31133, "type": "customer", "dst": 57489 },
{ "src": 31133, "type": "peer", "dst": 57731 },
{ "src": 31133, "type": "customer", "dst": 58347 },
{ "src": 31133, "type": "peer", "dst": 58453 },
{ "src": 31133, "type": "peer", "dst": 59560 },
{ "src": 31133, "type": "customer", "dst": 59733 },
{ "src": 31133, "type": "customer", "dst": 60764 },
{ "src": 31133, "type": "customer", "dst": 61228 },
{ "src": 31133, "type": "customer", "dst": 61264 },
{ "src": 31133, "type": "peer", "dst": 61266 },
{ "src": 31133, "type": "peer", "dst": 61337 },
{ "src": 31133, "type": "customer", "dst": 61979 },
{ "src": 31133, "type": "customer", "dst": 62287 },
{ "src": 31133, "type": "customer", "dst": 6697 },
{ "src": 31133, "type": "customer", "dst": 8249 },
{ "src": 31133, "type": "customer", "dst": 8641 },
{ "src": 31133, "type": "customer", "dst": 9198 },
{ "src": 31148, "type": "customer", "dst": 198238 },
{ "src": 31148, "type": "customer", "dst": 25174 },
{ "src": 31148, "type": "customer", "dst": 35524 },
{ "src": 31287, "type": "customer", "dst": 199048 },
{ "src": 31287, "type": "customer", "dst": 31435 },
{ "src": 31287, "type": "customer", "dst": 34917 },
{ "src": 31287, "type": "customer", "dst": 59742 },
{ "src": 31293, "type": "peer", "dst": 50384 },
{ "src": 3132, "type": "customer", "dst": 14650 },
{ "src": 3132, "type": "customer", "dst": 20144 },
{ "src": 3132, "type": "customer", "dst": 26136 },
{ "src": 3132, "type": "customer", "dst": 52234 },
{ "src": 31500, "type": "customer", "dst": 12418 },
{ "src": 31500, "type": "customer", "dst": 16321 },
{ "src": 31500, "type": "customer", "dst": 21342 },
{ "src": 31500, "type": "peer", "dst": 39792 },
{ "src": 31500, "type": "peer", "dst": 39912 },
{ "src": 31500, "type": "customer", "dst": 42893 },
{ "src": 31500, "type": "peer", "dst": 44953 },
{ "src": 31500, "type": "customer", "dst": 47211 },
{ "src": 31500, "type": "customer", "dst": 50488 },
{ "src": 31500, "type": "customer", "dst": 50923 },
{ "src": 31500, "type": "customer", "dst": 58002 },
{ "src": 31500, "type": "customer", "dst": 60212 },
{ "src": 31546, "type": "customer", "dst": 15836 },
{ "src": 31546, "type": "customer", "dst": 39526 },
{ "src": 31546, "type": "customer", "dst": 8474 },
{ "src": 31577, "type": "customer", "dst": 25487 },
{ "src": 31577, "type": "customer", "dst": 50926 },
{ "src": 31669, "type": "customer", "dst": 41778 },
{ "src": 31703, "type": "peer", "dst": 39792 },
{ "src": 31703, "type": "customer", "dst": 41996 },
{ "src": 32016, "type": "customer", "dst": 33609 },
{ "src": 32016, "type": "customer", "dst": 7234 },
{ "src": 32016, "type": "customer", "dst": 9385 },
{ "src": 3202, "type": "peer", "dst": 50384 },
{ "src": 3209, "type": "customer", "dst": 12302 },
{ "src": 3209, "type": "peer", "dst": 12874 },
{ "src": 3209, "type": "peer", "dst": 12989 },
{ "src": 3209, "type": "peer", "dst": 13030 },
{ "src": 3209, "type": "customer", "dst": 13233 },
{ "src": 3209, "type": "peer", "dst": 13237 },
{ "src": 3209, "type": "peer", "dst": 15412 },
{ "src": 3209, "type": "customer", "dst": 15924 },
{ "src": 3209, "type": "peer", "dst": 19151 },
{ "src": 3209, "type": "customer", "dst": 19637 },
{ "src": 3209, "type": "customer", "dst": 196714 },
{ "src": 3209, "type": "customer", "dst": 197269 },
{ "src": 3209, "type": "customer", "dst": 198145 },
{ "src": 3209, "type": "customer", "dst": 201832 },
{ "src": 3209, "type": "peer", "dst": 20485 },
{ "src": 3209, "type": "customer", "dst": 25276 },
{ "src": 3209, "type": "customer", "dst": 29614 },
{ "src": 3209, "type": "customer", "dst": 3211 },
{ "src": 3209, "type": "peer", "dst": 3216 },
{ "src": 3209, "type": "peer", "dst": 3267 },
{ "src": 3209, "type": "peer", "dst": 3292 },
{ "src": 3209, "type": "peer", "dst": 3303 },
{ "src": 3209, "type": "peer", "dst": 3320 },
{ "src": 3209, "type": "customer", "dst": 36994 },
{ "src": 3209, "type": "peer", "dst": 3741 },
{ "src": 3209, "type": "peer", "dst": 39792 },
{ "src": 3209, "type": "peer", "dst": 39912 },
{ "src": 3209, "type": "peer", "dst": 4589 },
{ "src": 3209, "type": "customer", "dst": 49034 },
{ "src": 3209, "type": "peer", "dst": 49605 },
{ "src": 3209, "type": "customer", "dst": 55410 },
{ "src": 3209, "type": "peer", "dst": 5580 },
{ "src": 3209, "type": "customer", "dst": 57911 },
{ "src": 3209, "type": "peer", "dst": 6830 },
{ "src": 3209, "type": "peer", "dst": 7473 },
{ "src": 3209, "type": "peer", "dst": 8220 },
{ "src": 3209, "type": "peer", "dst": 8359 },
{ "src": 3209, "type": "peer", "dst": 8928 },
{ "src": 3209, "type": "peer", "dst": 9002 },
{ "src": 3212, "type": "peer", "dst": 13237 },
{ "src": 3212, "type": "peer", "dst": 39912 },
{ "src": 3212, "type": "customer", "dst": 43061 },
{ "src": 3212, "type": "customer", "dst": 48653 },
{ "src": 3212, "type": "customer", "dst": 56513 },
{ "src": 3212, "type": "peer", "dst": 8928 },
{ "src": 3212, "type": "peer", "dst": 9002 },
{ "src": 3216, "type": "customer", "dst": 12297 },
{ "src": 3216, "type": "peer", "dst": 12389 },
{ "src": 3216, "type": "customer", "dst": 12418 },
{ "src": 3216, "type": "peer", "dst": 12552 },
{ "src": 3216, "type": "customer", "dst": 12695 },
{ "src": 3216, "type": "peer", "dst": 12715 },
{ "src": 3216, "type": "customer", "dst": 12772 },
{ "src": 3216, "type": "peer", "dst": 12874 },
{ "src": 3216, "type": "customer", "dst": 12883 },
{ "src": 3216, "type": "peer", "dst": 12989 },
{ "src": 3216, "type": "peer", "dst": 13030 },
{ "src": 3216, "type": "peer", "dst": 13127 },
{ "src": 3216, "type": "customer", "dst": 13296 },
{ "src": 3216, "type": "peer", "dst": 14610 },
{ "src": 3216, "type": "peer", "dst": 15412 },
{ "src": 3216, "type": "peer", "dst": 15830 },
{ "src": 3216, "type": "customer", "dst": 15895 },
{ "src": 3216, "type": "peer", "dst": 16150 },
{ "src": 3216, "type": "peer", "dst": 16265 },
{ "src": 3216, "type": "peer", "dst": 19151 },
{ "src": 3216, "type": "peer", "dst": 197235 },
{ "src": 3216, "type": "customer", "dst": 197632 },
{ "src": 3216, "type": "customer", "dst": 199063 },
{ "src": 3216, "type": "customer", "dst": 201468 },
{ "src": 3216, "type": "customer", "dst": 201820 },
{ "src": 3216, "type": "customer", "dst": 201861 },
{ "src": 3216, "type": "peer", "dst": 20485 },
{ "src": 3216, "type": "peer", "dst": 20562 },
{ "src": 3216, "type": "customer", "dst": 20764 },
{ "src": 3216, "type": "peer", "dst": 20940 },
{ "src": 3216, "type": "customer", "dst": 21453 },
{ "src": 3216, "type": "peer", "dst": 22822 },
{ "src": 3216, "type": "peer", "dst": 24724 },
{ "src": 3216, "type": "customer", "dst": 28910 },
{ "src": 3216, "type": "peer", "dst": 28917 },
{ "src": 3216, "type": "peer", "dst": 29076 },
{ "src": 3216, "type": "peer", "dst": 29791 },
{ "src": 3216, "type": "customer", "dst": 31707 },
{ "src": 3216, "type": "peer", "dst": 3267 },
{ "src": 3216, "type": "peer", "dst": 3303 },
{ "src": 3216, "type": "peer", "dst": 3320 },
{ "src": 3216, "type": "peer", "dst": 33891 },
{ "src": 3216, "type": "peer", "dst": 34224 },
{ "src": 3216, "type": "customer", "dst": 35022 },
{ "src": 3216, "type": "customer", "dst": 35104 },
{ "src": 3216, "type": "peer", "dst": 3549 },
{ "src": 3216, "type": "peer", "dst": 36236 },
{ "src": 3216, "type": "peer", "dst": 36408 },
{ "src": 3216, "type": "peer", "dst": 3741 },
{ "src": 3216, "type": "peer", "dst": 38193 },
{ "src": 3216, "type": "peer", "dst": 39912 },
{ "src": 3216, "type": "customer", "dst": 41798 },
{ "src": 3216, "type": "peer", "dst": 42473 },
{ "src": 3216, "type": "customer", "dst": 42632 },
{ "src": 3216, "type": "customer", "dst": 42766 },
{ "src": 3216, "type": "peer", "dst": 44824 },
{ "src": 3216, "type": "peer", "dst": 4589 },
{ "src": 3216, "type": "peer", "dst": 4788 },
{ "src": 3216, "type": "customer", "dst": 47934 },
{ "src": 3216, "type": "customer", "dst": 49347 },
{ "src": 3216, "type": "customer", "dst": 49373 },
{ "src": 3216, "type": "customer", "dst": 49841 },
{ "src": 3216, "type": "customer", "dst": 49897 },
{ "src": 3216, "type": "customer", "dst": 50149 },
{ "src": 3216, "type": "peer", "dst": 5089 },
{ "src": 3216, "type": "customer", "dst": 50923 },
{ "src": 3216, "type": "customer", "dst": 51397 },
{ "src": 3216, "type": "customer", "dst": 52162 },
{ "src": 3216, "type": "peer", "dst": 53276 },
{ "src": 3216, "type": "peer", "dst": 5580 },
{ "src": 3216, "type": "peer", "dst": 5588 },
{ "src": 3216, "type": "customer", "dst": 57019 },
{ "src": 3216, "type": "customer", "dst": 57296 },
{ "src": 3216, "type": "customer", "dst": 57671 },
{ "src": 3216, "type": "customer", "dst": 58290 },
{ "src": 3216, "type": "customer", "dst": 60473 },
{ "src": 3216, "type": "customer", "dst": 60710 },
{ "src": 3216, "type": "customer", "dst": 60832 },
{ "src": 3216, "type": "customer", "dst": 61411 },
{ "src": 3216, "type": "customer", "dst": 62287 },
{ "src": 3216, "type": "customer", "dst": 62404 },
{ "src": 3216, "type": "peer", "dst": 6327 },
{ "src": 3216, "type": "peer", "dst": 6663 },
{ "src": 3216, "type": "customer", "dst": 6697 },
{ "src": 3216, "type": "peer", "dst": 6774 },
{ "src": 3216, "type": "peer", "dst": 8220 },
{ "src": 3216, "type": "peer", "dst": 8359 },
{ "src": 3216, "type": "peer", "dst": 8400 },
{ "src": 3216, "type": "customer", "dst": 8595 },
{ "src": 3216, "type": "peer", "dst": 8657 },
{ "src": 3216, "type": "peer", "dst": 8732 },
{ "src": 3216, "type": "customer", "dst": 8764 },
{ "src": 3216, "type": "peer", "dst": 8881 },
{ "src": 3216, "type": "customer", "dst": 8888 },
{ "src": 3216, "type": "customer", "dst": 8905 },
{ "src": 3216, "type": "customer", "dst": 8926 },
{ "src": 3216, "type": "peer", "dst": 8928 },
{ "src": 3216, "type": "peer", "dst": 8966 },
{ "src": 3216, "type": "peer", "dst": 9002 },
{ "src": 3216, "type": "peer", "dst": 9009 },
{ "src": 3216, "type": "peer", "dst": 9050 },
{ "src": 3216, "type": "peer", "dst": 9121 },
{ "src": 3216, "type": "peer", "dst": 9318 },
{ "src": 3216, "type": "peer", "dst": 9505 },
{ "src": 32440, "type": "customer", "dst": 26303 },
{ "src": 32440, "type": "customer", "dst": 30564 },
{ "src": 32440, "type": "customer", "dst": 40189 },
{ "src": 3255, "type": "peer", "dst": 10026 },
{ "src": 3255, "type": "peer", "dst": 12989 },
{ "src": 3255, "type": "peer", "dst": 13237 },
{ "src": 3255, "type": "peer", "dst": 19151 },
{ "src": 3255, "type": "customer", "dst": 196844 },
{ "src": 3255, "type": "customer", "dst": 198323 },
{ "src": 3255, "type": "peer", "dst": 20485 },
{ "src": 3255, "type": "peer", "dst": 20764 },
{ "src": 3255, "type": "peer", "dst": 22822 },
{ "src": 3255, "type": "customer", "dst": 30886 },
{ "src": 3255, "type": "peer", "dst": 31133 },
{ "src": 3255, "type": "peer", "dst": 3267 },
{ "src": 3255, "type": "peer", "dst": 3303 },
{ "src": 3255, "type": "peer", "dst": 39792 },
{ "src": 3255, "type": "peer", "dst": 39912 },
{ "src": 3255, "type": "customer", "dst": 44629 },
{ "src": 3255, "type": "peer", "dst": 44953 },
{ "src": 3255, "type": "customer", "dst": 48082 },
{ "src": 3255, "type": "customer", "dst": 50012 },
{ "src": 3255, "type": "peer", "dst": 50384 },
{ "src": 3255, "type": "customer", "dst": 6702 },
{ "src": 3255, "type": "peer", "dst": 8220 },
{ "src": 3255, "type": "peer", "dst": 8732 },
{ "src": 3255, "type": "customer", "dst": 8788 },
{ "src": 3255, "type": "peer", "dst": 9304 },
{ "src": 32592, "type": "customer", "dst": 21952 },
{ "src": 32592, "type": "customer", "dst": 27294 },
{ "src": 32592, "type": "customer", "dst": 33701 },
{ "src": 3261, "type": "peer", "dst": 12883 },
{ "src": 3261, "type": "customer", "dst": 199025 },
{ "src": 3261, "type": "customer", "dst": 21189 },
{ "src": 3261, "type": "customer", "dst": 42485 },
{ "src": 3261, "type": "customer", "dst": 43162 },
{ "src": 3261, "type": "customer", "dst": 48595 },
{ "src": 3261, "type": "customer", "dst": 50204 },
{ "src": 3261, "type": "peer", "dst": 50384 },
{ "src": 3261, "type": "customer", "dst": 50927 },
{ "src": 3261, "type": "customer", "dst": 50981 },
{ "src": 3261, "type": "customer", "dst": 52213 },
{ "src": 32622, "type": "customer", "dst": 33399 },
{ "src": 3267, "type": "peer", "dst": 10026 },
{ "src": 3267, "type": "peer", "dst": 12389 },
{ "src": 3267, "type": "peer", "dst": 12552 },
{ "src": 3267, "type": "peer", "dst": 12578 },
{ "src": 3267, "type": "peer", "dst": 12695 },
{ "src": 3267, "type": "peer", "dst": 12714 },
{ "src": 3267, "type": "peer", "dst": 12715 },
{ "src": 3267, "type": "peer", "dst": 12874 },
{ "src": 3267, "type": "peer", "dst": 12883 },
{ "src": 3267, "type": "peer", "dst": 12989 },
{ "src": 3267, "type": "peer", "dst": 13127 },
{ "src": 3267, "type": "peer", "dst": 13237 },
{ "src": 3267, "type": "peer", "dst": 13249 },
{ "src": 3267, "type": "peer", "dst": 15547 },
{ "src": 3267, "type": "peer", "dst": 15720 },
{ "src": 3267, "type": "peer", "dst": 15763 },
{ "src": 3267, "type": "peer", "dst": 15772 },
{ "src": 3267, "type": "peer", "dst": 15830 },
{ "src": 3267, "type": "peer", "dst": 16150 },
{ "src": 3267, "type": "peer", "dst": 16265 },
{ "src": 3267, "type": "peer", "dst": 16637 },
{ "src": 3267, "type": "peer", "dst": 16839 },
{ "src": 3267, "type": "peer", "dst": 17557 },
{ "src": 3267, "type": "peer", "dst": 19151 },
{ "src": 3267, "type": "peer", "dst": 196695 },
{ "src": 3267, "type": "peer", "dst": 196844 },
{ "src": 3267, "type": "peer", "dst": 197426 },
{ "src": 3267, "type": "peer", "dst": 197985 },
{ "src": 3267, "type": "peer", "dst": 20485 },
{ "src": 3267, "type": "peer", "dst": 20562 },
{ "src": 3267, "type": "peer", "dst": 20632 },
{ "src": 3267, "type": "peer", "dst": 20764 },
{ "src": 3267, "type": "peer", "dst": 20804 },
{ "src": 3267, "type": "peer", "dst": 20940 },
{ "src": 3267, "type": "peer", "dst": 21011 },
{ "src": 3267, "type": "peer", "dst": 21219 },
{ "src": 3267, "type": "peer", "dst": 24406 },
{ "src": 3267, "type": "peer", "dst": 24724 },
{ "src": 3267, "type": "peer", "dst": 24940 },
{ "src": 3267, "type": "peer", "dst": 25408 },
{ "src": 3267, "type": "peer", "dst": 28283 },
{ "src": 3267, "type": "peer", "dst": 28917 },
{ "src": 3267, "type": "peer", "dst": 29053 },
{ "src": 3267, "type": "peer", "dst": 29076 },
{ "src": 3267, "type": "peer", "dst": 29119 },
{ "src": 3267, "type": "peer", "dst": 29520 },
{ "src": 3267, "type": "peer", "dst": 29632 },
{ "src": 3267, "type": "peer", "dst": 29791 },
{ "src": 3267, "type": "peer", "dst": 30419 },
{ "src": 3267, "type": "peer", "dst": 31042 },
{ "src": 3267, "type": "peer", "dst": 31133 },
{ "src": 3267, "type": "customer", "dst": 31500 },
{ "src": 3267, "type": "customer", "dst": 31575 },
{ "src": 3267, "type": "customer", "dst": 31707 },
{ "src": 3267, "type": "peer", "dst": 3303 },
{ "src": 3267, "type": "peer", "dst": 3327 },
{ "src": 3267, "type": "customer", "dst": 3351 },
{ "src": 3267, "type": "peer", "dst": 33891 },
{ "src": 3267, "type": "peer", "dst": 33986 },
{ "src": 3267, "type": "peer", "dst": 34123 },
{ "src": 3267, "type": "peer", "dst": 34224 },
{ "src": 3267, "type": "peer", "dst": 34898 },
{ "src": 3267, "type": "peer", "dst": 34968 },
{ "src": 3267, "type": "peer", "dst": 3549 },
{ "src": 3267, "type": "peer", "dst": 35539 },
{ "src": 3267, "type": "peer", "dst": 36236 },
{ "src": 3267, "type": "peer", "dst": 36408 },
{ "src": 3267, "type": "customer", "dst": 38984 },
{ "src": 3267, "type": "peer", "dst": 39792 },
{ "src": 3267, "type": "peer", "dst": 39912 },
{ "src": 3267, "type": "peer", "dst": 39923 },
{ "src": 3267, "type": "peer", "dst": 41090 },
{ "src": 3267, "type": "peer", "dst": 41313 },
{ "src": 3267, "type": "peer", "dst": 42184 },
{ "src": 3267, "type": "peer", "dst": 42368 },
{ "src": 3267, "type": "peer", "dst": 42473 },
{ "src": 3267, "type": "peer", "dst": 42632 },
{ "src": 3267, "type": "peer", "dst": 42909 },
{ "src": 3267, "type": "peer", "dst": 43727 },
{ "src": 3267, "type": "peer", "dst": 44654 },
{ "src": 3267, "type": "peer", "dst": 44927 },
{ "src": 3267, "type": "peer", "dst": 44953 },
{ "src": 3267, "type": "peer", "dst": 4589 },
{ "src": 3267, "type": "peer", "dst": 4651 },
{ "src": 3267, "type": "peer", "dst": 4761 },
{ "src": 3267, "type": "peer", "dst": 47622 },
{ "src": 3267, "type": "peer", "dst": 47872 },
{ "src": 3267, "type": "peer", "dst": 4788 },
{ "src": 3267, "type": "peer", "dst": 48287 },
{ "src": 3267, "type": "peer", "dst": 48822 },
{ "src": 3267, "type": "peer", "dst": 49373 },
{ "src": 3267, "type": "peer", "dst": 50384 },
{ "src": 3267, "type": "peer", "dst": 5089 },
{ "src": 3267, "type": "peer", "dst": 50923 },
{ "src": 3267, "type": "customer", "dst": 5537 },
{ "src": 3267, "type": "peer", "dst": 5563 },
{ "src": 3267, "type": "peer", "dst": 5580 },
{ "src": 3267, "type": "peer", "dst": 5588 },
{ "src": 3267, "type": "customer", "dst": 56534 },
{ "src": 3267, "type": "peer", "dst": 5713 },
{ "src": 3267, "type": "peer", "dst": 57463 },
{ "src": 3267, "type": "peer", "dst": 59560 },
{ "src": 3267, "type": "peer", "dst": 60299 },
{ "src": 3267, "type": "peer", "dst": 6327 },
{ "src": 3267, "type": "peer", "dst": 6663 },
{ "src": 3267, "type": "peer", "dst": 6768 },
{ "src": 3267, "type": "peer", "dst": 6774 },
{ "src": 3267, "type": "peer", "dst": 7385 },
{ "src": 3267, "type": "peer", "dst": 7713 },
{ "src": 3267, "type": "peer", "dst": 8220 },
{ "src": 3267, "type": "peer", "dst": 8400 },
{ "src": 3267, "type": "peer", "dst": 8470 },
{ "src": 3267, "type": "peer", "dst": 8487 },
{ "src": 3267, "type": "peer", "dst": 8529 },
{ "src": 3267, "type": "peer", "dst": 8595 },
{ "src": 3267, "type": "customer", "dst": 8599 },
{ "src": 3267, "type": "peer", "dst": 8641 },
{ "src": 3267, "type": "peer", "dst": 8657 },
{ "src": 3267, "type": "customer", "dst": 8663 },
{ "src": 3267, "type": "peer", "dst": 8764 },
{ "src": 3267, "type": "peer", "dst": 8767 },
{ "src": 3267, "type": "peer", "dst": 8866 },
{ "src": 3267, "type": "peer", "dst": 8881 },
{ "src": 3267, "type": "peer", "dst": 8905 },
{ "src": 3267, "type": "peer", "dst": 8926 },
{ "src": 3267, "type": "peer", "dst": 8966 },
{ "src": 3267, "type": "peer", "dst": 9002 },
{ "src": 3267, "type": "peer", "dst": 9049 },
{ "src": 3267, "type": "peer", "dst": 9050 },
{ "src": 3267, "type": "peer", "dst": 9198 },
{ "src": 3267, "type": "peer", "dst": 9304 },
{ "src": 3267, "type": "peer", "dst": 9318 },
{ "src": 3267, "type": "peer", "dst": 9498 },
{ "src": 3267, "type": "peer", "dst": 9505 },
{ "src": 3267, "type": "peer", "dst": 9583 },
{ "src": 3269, "type": "customer", "dst": 15720 },
{ "src": 3269, "type": "customer", "dst": 20637 },
{ "src": 3269, "type": "customer", "dst": 20746 },
{ "src": 3269, "type": "customer", "dst": 21014 },
{ "src": 3269, "type": "customer", "dst": 21309 },
{ "src": 3269, "type": "customer", "dst": 33986 },
{ "src": 3269, "type": "customer", "dst": 43976 },
{ "src": 3269, "type": "customer", "dst": 44485 },
{ "src": 3269, "type": "customer", "dst": 49605 },
{ "src": 3269, "type": "customer", "dst": 56911 },
{ "src": 3269, "type": "customer", "dst": 57525 },
{ "src": 3269, "type": "peer", "dst": 8220 },
{ "src": 32734, "type": "customer", "dst": 120 },
{ "src": 32743, "type": "customer", "dst": 11728 },
{ "src": 32743, "type": "customer", "dst": 14105 },
{ "src": 32743, "type": "customer", "dst": 18187 },
{ "src": 32791, "type": "customer", "dst": 3762 },
{ "src": 3292, "type": "peer", "dst": 11643 },
{ "src": 3292, "type": "peer", "dst": 11798 },
{ "src": 3292, "type": "peer", "dst": 12389 },
{ "src": 3292, "type": "peer", "dst": 12552 },
{ "src": 3292, "type": "peer", "dst": 12578 },
{ "src": 3292, "type": "peer", "dst": 12989 },
{ "src": 3292, "type": "peer", "dst": 13030 },
{ "src": 3292, "type": "peer", "dst": 13127 },
{ "src": 3292, "type": "peer", "dst": 13237 },
{ "src": 3292, "type": "customer", "dst": 1421 },
{ "src": 3292, "type": "peer", "dst": 15412 },
{ "src": 3292, "type": "customer", "dst": 15516 },
{ "src": 3292, "type": "customer", "dst": 15912 },
{ "src": 3292, "type": "customer", "dst": 16095 },
{ "src": 3292, "type": "customer", "dst": 16245 },
{ "src": 3292, "type": "peer", "dst": 16265 },
{ "src": 3292, "type": "peer", "dst": 16735 },
{ "src": 3292, "type": "peer", "dst": 19151 },
{ "src": 3292, "type": "customer", "dst": 198206 },
{ "src": 3292, "type": "customer", "dst": 199564 },
{ "src": 3292, "type": "customer", "dst": 201720 },
{ "src": 3292, "type": "customer", "dst": 20681 },
{ "src": 3292, "type": "peer", "dst": 20764 },
{ "src": 3292, "type": "peer", "dst": 20940 },
{ "src": 3292, "type": "peer", "dst": 22773 },
{ "src": 3292, "type": "peer", "dst": 22822 },
{ "src": 3292, "type": "peer", "dst": 29791 },
{ "src": 3292, "type": "peer", "dst": 3303 },
{ "src": 3292, "type": "peer", "dst": 3320 },
{ "src": 3292, "type": "peer", "dst": 3327 },
{ "src": 3292, "type": "peer", "dst": 3491 },
{ "src": 3292, "type": "customer", "dst": 35033 },
{ "src": 3292, "type": "peer", "dst": 3549 },
{ "src": 3292, "type": "peer", "dst": 3561 },
{ "src": 3292, "type": "peer", "dst": 36692 },
{ "src": 3292, "type": "peer", "dst": 3910 },
{ "src": 3292, "type": "customer", "dst": 3943 },
{ "src": 3292, "type": "peer", "dst": 39792 },
{ "src": 3292, "type": "customer", "dst": 41164 },
{ "src": 3292, "type": "peer", "dst": 4134 },
{ "src": 3292, "type": "peer", "dst": 4323 },
{ "src": 3292, "type": "customer", "dst": 43959 },
{ "src": 3292, "type": "peer", "dst": 4589 },
{ "src": 3292, "type": "peer", "dst": 4637 },
{ "src": 3292, "type": "peer", "dst": 4648 },
{ "src": 3292, "type": "peer", "dst": 4651 },
{ "src": 3292, "type": "peer", "dst": 4657 },
{ "src": 3292, "type": "peer", "dst": 4788 },
{ "src": 3292, "type": "peer", "dst": 5089 },
{ "src": 3292, "type": "peer", "dst": 5400 },
{ "src": 3292, "type": "peer", "dst": 5580 },
{ "src": 3292, "type": "peer", "dst": 5588 },
{ "src": 3292, "type": "peer", "dst": 6128 },
{ "src": 3292, "type": "customer", "dst": 62254 },
{ "src": 3292, "type": "peer", "dst": 6327 },
{ "src": 3292, "type": "peer", "dst": 6453 },
{ "src": 3292, "type": "peer", "dst": 6774 },
{ "src": 3292, "type": "peer", "dst": 6830 },
{ "src": 3292, "type": "peer", "dst": 7385 },
{ "src": 3292, "type": "peer", "dst": 7473 },
{ "src": 3292, "type": "peer", "dst": 7575 },
{ "src": 3292, "type": "peer", "dst": 7843 },
{ "src": 3292, "type": "peer", "dst": 7922 },
{ "src": 3292, "type": "peer", "dst": 8220 },
{ "src": 3292, "type": "peer", "dst": 8359 },
{ "src": 3292, "type": "peer", "dst": 8657 },
{ "src": 3292, "type": "peer", "dst": 8674 },
{ "src": 3292, "type": "peer", "dst": 8881 },
{ "src": 3292, "type": "peer", "dst": 8928 },
{ "src": 3292, "type": "peer", "dst": 9002 },
{ "src": 3292, "type": "peer", "dst": 9009 },
{ "src": 3292, "type": "peer", "dst": 9304 },
{ "src": 3292, "type": "peer", "dst": 9318 },
{ "src": 3292, "type": "peer", "dst": 9498 },
{ "src": 3292, "type": "peer", "dst": 9505 },
{ "src": 32959, "type": "customer", "dst": 7961 },
{ "src": 32976, "type": "customer", "dst": 14532 },
{ "src": 32976, "type": "customer", "dst": 40022 },
{ "src": 3303, "type": "peer", "dst": 10026 },
{ "src": 3303, "type": "customer", "dst": 12511 },
{ "src": 3303, "type": "peer", "dst": 12552 },
{ "src": 3303, "type": "peer", "dst": 12715 },
{ "src": 3303, "type": "customer", "dst": 12874 },
{ "src": 3303, "type": "peer", "dst": 13030 },
{ "src": 3303, "type": "peer", "dst": 13127 },
{ "src": 3303, "type": "peer", "dst": 13249 },
{ "src": 3303, "type": "peer", "dst": 15290 },
{ "src": 3303, "type": "peer", "dst": 15412 },
{ "src": 3303, "type": "peer", "dst": 15576 },
{ "src": 3303, "type": "peer", "dst": 15623 },
{ "src": 3303, "type": "peer", "dst": 15830 },
{ "src": 3303, "type": "peer", "dst": 16735 },
{ "src": 3303, "type": "customer", "dst": 16839 },
{ "src": 3303, "type": "peer", "dst": 20764 },
{ "src": 3303, "type": "peer", "dst": 20940 },
{ "src": 3303, "type": "peer", "dst": 21011 },
{ "src": 3303, "type": "peer", "dst": 22773 },
{ "src": 3303, "type": "peer", "dst": 24724 },
{ "src": 3303, "type": "peer", "dst": 24961 },
{ "src": 3303, "type": "peer", "dst": 28917 },
{ "src": 3303, "type": "peer", "dst": 29791 },
{ "src": 3303, "type": "peer", "dst": 31133 },
{ "src": 3303, "type": "customer", "dst": 32066 },
{ "src": 3303, "type": "peer", "dst": 3327 },
{ "src": 3303, "type": "peer", "dst": 3356 },
{ "src": 3303, "type": "peer", "dst": 34224 },
{ "src": 3303, "type": "peer", "dst": 3491 },
{ "src": 3303, "type": "peer", "dst": 36408 },
{ "src": 3303, "type": "peer", "dst": 3741 },
{ "src": 3303, "type": "peer", "dst": 3786 },
{ "src": 3303, "type": "peer", "dst": 3910 },
{ "src": 3303, "type": "peer", "dst": 39792 },
{ "src": 3303, "type": "peer", "dst": 4134 },
{ "src": 3303, "type": "peer", "dst": 4323 },
{ "src": 3303, "type": "peer", "dst": 45896 },
{ "src": 3303, "type": "peer", "dst": 4589 },
{ "src": 3303, "type": "peer", "dst": 4637 },
{ "src": 3303, "type": "peer", "dst": 4641 },
{ "src": 3303, "type": "peer", "dst": 4648 },
{ "src": 3303, "type": "peer", "dst": 4651 },
{ "src": 3303, "type": "peer", "dst": 4657 },
{ "src": 3303, "type": "peer", "dst": 4788 },
{ "src": 3303, "type": "peer", "dst": 4800 },
{ "src": 3303, "type": "peer", "dst": 49605 },
{ "src": 3303, "type": "peer", "dst": 5089 },
{ "src": 3303, "type": "customer", "dst": 51817 },
{ "src": 3303, "type": "peer", "dst": 5400 },
{ "src": 3303, "type": "peer", "dst": 5588 },
{ "src": 3303, "type": "peer", "dst": 58453 },
{ "src": 3303, "type": "peer", "dst": 6128 },
{ "src": 3303, "type": "peer", "dst": 6327 },
{ "src": 3303, "type": "peer", "dst": 6453 },
{ "src": 3303, "type": "peer", "dst": 6648 },
{ "src": 3303, "type": "customer", "dst": 6774 },
{ "src": 3303, "type": "peer", "dst": 6830 },
{ "src": 3303, "type": "peer", "dst": 7473 },
{ "src": 3303, "type": "peer", "dst": 7568 },
{ "src": 3303, "type": "peer", "dst": 7575 },
{ "src": 3303, "type": "peer", "dst": 7738 },
{ "src": 3303, "type": "peer", "dst": 7862 },
{ "src": 3303, "type": "peer", "dst": 8220 },
{ "src": 3303, "type": "peer", "dst": 8359 },
{ "src": 3303, "type": "peer", "dst": 8400 },
{ "src": 3303, "type": "peer", "dst": 8657 },
{ "src": 3303, "type": "customer", "dst": 8674 },
{ "src": 3303, "type": "peer", "dst": 8732 },
{ "src": 3303, "type": "peer", "dst": 8767 },
{ "src": 3303, "type": "peer", "dst": 8866 },
{ "src": 3303, "type": "peer", "dst": 8881 },
{ "src": 3303, "type": "peer", "dst": 8928 },
{ "src": 3303, "type": "peer", "dst": 8966 },
{ "src": 3303, "type": "peer", "dst": 9050 },
{ "src": 3303, "type": "peer", "dst": 9121 },
{ "src": 3303, "type": "peer", "dst": 9228 },
{ "src": 3303, "type": "peer", "dst": 9304 },
{ "src": 3303, "type": "peer", "dst": 9318 },
{ "src": 3303, "type": "peer", "dst": 9498 },
{ "src": 3303, "type": "peer", "dst": 9505 },
{ "src": 3303, "type": "peer", "dst": 9584 },
{ "src": 3312, "type": "customer", "dst": 197273 },
{ "src": 3312, "type": "customer", "dst": 42809 },
{ "src": 3313, "type": "peer", "dst": 12874 },
{ "src": 3313, "type": "customer", "dst": 33942 },
{ "src": 3313, "type": "customer", "dst": 43338 },
{ "src": 3313, "type": "customer", "dst": 59419 },
{ "src": 33189, "type": "customer", "dst": 11602 },
{ "src": 33189, "type": "customer", "dst": 11607 },
{ "src": 33189, "type": "customer", "dst": 22215 },
{ "src": 3320, "type": "customer", "dst": 11643 },
{ "src": 3320, "type": "customer", "dst": 12576 },
{ "src": 3320, "type": "customer", "dst": 12578 },
{ "src": 3320, "type": "customer", "dst": 12715 },
{ "src": 3320, "type": "customer", "dst": 12874 },
{ "src": 3320, "type": "customer", "dst": 12989 },
{ "src": 3320, "type": "peer", "dst": 13237 },
{ "src": 3320, "type": "peer", "dst": 15412 },
{ "src": 3320, "type": "customer", "dst": 15763 },
{ "src": 3320, "type": "customer", "dst": 15830 },
{ "src": 3320, "type": "peer", "dst": 16265 },
{ "src": 3320, "type": "customer", "dst": 1764 },
{ "src": 3320, "type": "customer", "dst": 18403 },
{ "src": 3320, "type": "customer", "dst": 199271 },
{ "src": 3320, "type": "customer", "dst": 199403 },
{ "src": 3320, "type": "customer", "dst": 20572 },
{ "src": 3320, "type": "customer", "dst": 20940 },
{ "src": 3320, "type": "customer", "dst": 2134 },
{ "src": 3320, "type": "customer", "dst": 22822 },
{ "src": 3320, "type": "customer", "dst": 23047 },
{ "src": 3320, "type": "customer", "dst": 24637 },
{ "src": 3320, "type": "customer", "dst": 24785 },
{ "src": 3320, "type": "customer", "dst": 24961 },
{ "src": 3320, "type": "peer", "dst": 25394 },
{ "src": 3320, "type": "customer", "dst": 25432 },
{ "src": 3320, "type": "customer", "dst": 28676 },
{ "src": 3320, "type": "customer", "dst": 31450 },
{ "src": 3320, "type": "customer", "dst": 31547 },
{ "src": 3320, "type": "customer", "dst": 31550 },
{ "src": 3320, "type": "customer", "dst": 3303 },
{ "src": 3320, "type": "peer", "dst": 3356 },
{ "src": 3320, "type": "peer", "dst": 33891 },
{ "src": 3320, "type": "peer", "dst": 3491 },
{ "src": 3320, "type": "customer", "dst": 34984 },
{ "src": 3320, "type": "peer", "dst": 3549 },
{ "src": 3320, "type": "customer", "dst": 36408 },
{ "src": 3320, "type": "customer", "dst": 39944 },
{ "src": 3320, "type": "customer", "dst": 41313 },
{ "src": 3320, "type": "peer", "dst": 4134 },
{ "src": 3320, "type": "customer", "dst": 41625 },
{ "src": 3320, "type": "customer", "dst": 42184 },
{ "src": 3320, "type": "customer", "dst": 42249 },
{ "src": 3320, "type": "peer", "dst": 4230 },
{ "src": 3320, "type": "customer", "dst": 42473 },
{ "src": 3320, "type": "customer", "dst": 43338 },
{ "src": 3320, "type": "customer", "dst": 44217 },
{ "src": 3320, "type": "customer", "dst": 44355 },
{ "src": 3320, "type": "peer", "dst": 4589 },
{ "src": 3320, "type": "peer", "dst": 4637 },
{ "src": 3320, "type": "customer", "dst": 4657 },
{ "src": 3320, "type": "customer", "dst": 4788 },
{ "src": 3320, "type": "customer", "dst": 48049 },
{ "src": 3320, "type": "customer", "dst": 4809 },
{ "src": 3320, "type": "customer", "dst": 49651 },
{ "src": 3320, "type": "customer", "dst": 51417 },
{ "src": 3320, "type": "customer", "dst": 5391 },
{ "src": 3320, "type": "peer", "dst": 5400 },
{ "src": 3320, "type": "customer", "dst": 5483 },
{ "src": 3320, "type": "customer", "dst": 5588 },
{ "src": 3320, "type": "customer", "dst": 57443 },
{ "src": 3320, "type": "customer", "dst": 57911 },
{ "src": 3320, "type": "customer", "dst": 58453 },
{ "src": 3320, "type": "customer", "dst": 59253 },
{ "src": 3320, "type": "customer", "dst": 62460 },
{ "src": 3320, "type": "peer", "dst": 6453 },
{ "src": 3320, "type": "peer", "dst": 6830 },
{ "src": 3320, "type": "peer", "dst": 7473 },
{ "src": 3320, "type": "customer", "dst": 7497 },
{ "src": 3320, "type": "customer", "dst": 7738 },
{ "src": 3320, "type": "peer", "dst": 7922 },
{ "src": 3320, "type": "customer", "dst": 8220 },
{ "src": 3320, "type": "peer", "dst": 8767 },
{ "src": 3320, "type": "customer", "dst": 8881 },
{ "src": 3320, "type": "customer", "dst": 9050 },
{ "src": 3320, "type": "customer", "dst": 9121 },
{ "src": 3320, "type": "customer", "dst": 9183 },
{ "src": 3320, "type": "customer", "dst": 9498 },
{ "src": 3320, "type": "customer", "dst": 9583 },
{ "src": 3327, "type": "peer", "dst": 10026 },
{ "src": 3327, "type": "peer", "dst": 12989 },
{ "src": 3327, "type": "peer", "dst": 13237 },
{ "src": 3327, "type": "peer", "dst": 19151 },
{ "src": 3327, "type": "peer", "dst": 20485 },
{ "src": 3327, "type": "peer", "dst": 20562 },
{ "src": 3327, "type": "peer", "dst": 20632 },
{ "src": 3327, "type": "peer", "dst": 20764 },
{ "src": 3327, "type": "peer", "dst": 28917 },
{ "src": 3327, "type": "peer", "dst": 31133 },
{ "src": 3327, "type": "peer", "dst": 39792 },
{ "src": 3327, "type": "peer", "dst": 39912 },
{ "src": 3327, "type": "customer", "dst": 41798 },
{ "src": 3327, "type": "peer", "dst": 44953 },
{ "src": 3327, "type": "peer", "dst": 4589 },
{ "src": 3327, "type": "customer", "dst": 51504 },
{ "src": 3327, "type": "peer", "dst": 5580 },
{ "src": 3327, "type": "peer", "dst": 8359 },
{ "src": 3327, "type": "peer", "dst": 8657 },
{ "src": 3327, "type": "customer", "dst": 8728 },
{ "src": 3327, "type": "peer", "dst": 9304 },
{ "src": 3327, "type": "peer", "dst": 9505 },
{ "src": 33363, "type": "customer", "dst": 22498 },
{ "src": 33363, "type": "customer", "dst": 264 },
{ "src": 33363, "type": "customer", "dst": 26713 },
{ "src": 33363, "type": "customer", "dst": 26814 },
{ "src": 33363, "type": "customer", "dst": 30659 },
{ "src": 33363, "type": "customer", "dst": 46123 },
{ "src": 33480, "type": "customer", "dst": 132969 },
{ "src": 33480, "type": "customer", "dst": 133596 },
{ "src": 33480, "type": "customer", "dst": 42473 },
{ "src": 33561, "type": "customer", "dst": 18874 },
{ "src": 33561, "type": "customer", "dst": 40380 },
{ "src": 3356, "type": "customer", "dst": 10026 },
{ "src": 3356, "type": "customer", "dst": 101 },
{ "src": 3356, "type": "customer", "dst": 10361 },
{ "src": 3356, "type": "customer", "dst": 10411 },
{ "src": 3356, "type": "customer", "dst": 10474 },
{ "src": 3356, "type": "customer", "dst": 10753 },
{ "src": 3356, "type": "customer", "dst": 10891 },
{ "src": 3356, "type": "customer", "dst": 10919 },
{ "src": 3356, "type": "customer", "dst": 11052 },
{ "src": 3356, "type": "customer", "dst": 11247 },
{ "src": 3356, "type": "customer", "dst": 11266 },
{ "src": 3356, "type": "customer", "dst": 11643 },
{ "src": 3356, "type": "customer", "dst": 11651 },
{ "src": 3356, "type": "customer", "dst": 11686 },
{ "src": 3356, "type": "customer", "dst": 11711 },
{ "src": 3356, "type": "customer", "dst": 11911 },
{ "src": 3356, "type": "customer", "dst": 11986 },
{ "src": 3356, "type": "customer", "dst": 12025 },
{ "src": 3356, "type": "customer", "dst": 12028 },
{ "src": 3356, "type": "customer", "dst": 12129 },
{ "src": 3356, "type": "customer", "dst": 12147 },
{ "src": 3356, "type": "customer", "dst": 12251 },
{ "src": 3356, "type": "customer", "dst": 12297 },
{ "src": 3356, "type": "customer", "dst": 12552 },
{ "src": 3356, "type": "customer", "dst": 12578 },
{ "src": 3356, "type": "customer", "dst": 12617 },
{ "src": 3356, "type": "customer", "dst": 1267 },
{ "src": 3356, "type": "customer", "dst": 12709 },
{ "src": 3356, "type": "customer", "dst": 12715 },
{ "src": 3356, "type": "customer", "dst": 1273 },
{ "src": 3356, "type": "customer", "dst": 12874 },
{ "src": 3356, "type": "customer", "dst": 12883 },
{ "src": 3356, "type": "customer", "dst": 13008 },
{ "src": 3356, "type": "customer", "dst": 13110 },
{ "src": 3356, "type": "customer", "dst": 13247 },
{ "src": 3356, "type": "customer", "dst": 13329 },
{ "src": 3356, "type": "customer", "dst": 13446 },
{ "src": 3356, "type": "customer", "dst": 13649 },
{ "src": 3356, "type": "customer", "dst": 13697 },
{ "src": 3356, "type": "customer", "dst": 13938 },
{ "src": 3356, "type": "customer", "dst": 13954 },
{ "src": 3356, "type": "customer", "dst": 14135 },
{ "src": 3356, "type": "customer", "dst": 14208 },
{ "src": 3356, "type": "customer", "dst": 14610 },
{ "src": 3356, "type": "customer", "dst": 14717 },
{ "src": 3356, "type": "customer", "dst": 14739 },
{ "src": 3356, "type": "customer", "dst": 14948 },
{ "src": 3356, "type": "customer", "dst": 15085 },
{ "src": 3356, "type": "customer", "dst": 15290 },
{ "src": 3356, "type": "customer", "dst": 15388 },
{ "src": 3356, "type": "customer", "dst": 15412 },
{ "src": 3356, "type": "customer", "dst": 15547 },
{ "src": 3356, "type": "customer", "dst": 15623 },
{ "src": 3356, "type": "customer", "dst": 15694 },
{ "src": 3356, "type": "customer", "dst": 15830 },
{ "src": 3356, "type": "customer", "dst": 16095 },
{ "src": 3356, "type": "customer", "dst": 16178 },
{ "src": 3356, "type": "customer", "dst": 16202 },
{ "src": 3356, "type": "customer", "dst": 16265 },
{ "src": 3356, "type": "customer", "dst": 16429 },
{ "src": 3356, "type": "customer", "dst": 16535 },
{ "src": 3356, "type": "customer", "dst": 16570 },
{ "src": 3356, "type": "customer", "dst": 16617 },
{ "src": 3356, "type": "customer", "dst": 16637 },
{ "src": 3356, "type": "customer", "dst": 16657 },
{ "src": 3356, "type": "customer", "dst": 16839 },
{ "src": 3356, "type": "customer", "dst": 17011 },
{ "src": 3356, "type": "customer", "dst": 17054 },
{ "src": 3356, "type": "customer", "dst": 17072 },
{ "src": 3356, "type": "customer", "dst": 17113 },
{ "src": 3356, "type": "customer", "dst": 17195 },
{ "src": 3356, "type": "customer", "dst": 17378 },
{ "src": 3356, "type": "customer", "dst": 17466 },
{ "src": 3356, "type": "customer", "dst": 17557 },
{ "src": 3356, "type": "customer", "dst": 1764 },
{ "src": 3356, "type": "customer", "dst": 1810 },
{ "src": 3356, "type": "customer", "dst": 1853 },
{ "src": 3356, "type": "customer", "dst": 18588 },
{ "src": 3356, "type": "customer", "dst": 18734 },
{ "src": 3356, "type": "customer", "dst": 18757 },
{ "src": 3356, "type": "customer", "dst": 19067 },
{ "src": 3356, "type": "customer", "dst": 19151 },
{ "src": 3356, "type": "customer", "dst": 19271 },
{ "src": 3356, "type": "customer", "dst": 1932 },
{ "src": 3356, "type": "customer", "dst": 19384 },
{ "src": 3356, "type": "customer", "dst": 19528 },
{ "src": 3356, "type": "customer", "dst": 19581 },
{ "src": 3356, "type": "customer", "dst": 19685 },
{ "src": 3356, "type": "customer", "dst": 19727 },
{ "src": 3356, "type": "customer", "dst": 197334 },
{ "src": 3356, "type": "customer", "dst": 197508 },
{ "src": 3356, "type": "customer", "dst": 19752 },
{ "src": 3356, "type": "customer", "dst": 198911 },
{ "src": 3356, "type": "customer", "dst": 19893 },
{ "src": 3356, "type": "customer", "dst": 199391 },
{ "src": 3356, "type": "customer", "dst": 199455 },
{ "src": 3356, "type": "customer", "dst": 199843 },
{ "src": 3356, "type": "customer", "dst": 20021 },
{ "src": 3356, "type": "customer", "dst": 20115 },
{ "src": 3356, "type": "customer", "dst": 20144 },
{ "src": 3356, "type": "customer", "dst": 20187 },
{ "src": 3356, "type": "customer", "dst": 20460 },
{ "src": 3356, "type": "customer", "dst": 20485 },
{ "src": 3356, "type": "customer", "dst": 20681 },
{ "src": 3356, "type": "customer", "dst": 20764 },
{ "src": 3356, "type": "customer", "dst": 20804 },
{ "src": 3356, "type": "customer", "dst": 20965 },
{ "src": 3356, "type": "customer", "dst": 21011 },
{ "src": 3356, "type": "customer", "dst": 21013 },
{ "src": 3356, "type": "customer", "dst": 21056 },
{ "src": 3356, "type": "customer", "dst": 2107 },
{ "src": 3356, "type": "customer", "dst": 21219 },
{ "src": 3356, "type": "customer", "dst": 21277 },
{ "src": 3356, "type": "customer", "dst": 2134 },
{ "src": 3356, "type": "customer", "dst": 2152 },
{ "src": 3356, "type": "customer", "dst": 21782 },
{ "src": 3356, "type": "customer", "dst": 21949 },
{ "src": 3356, "type": "customer", "dst": 22198 },
{ "src": 3356, "type": "customer", "dst": 22334 },
{ "src": 3356, "type": "customer", "dst": 22353 },
{ "src": 3356, "type": "customer", "dst": 22489 },
{ "src": 3356, "type": "customer", "dst": 22557 },
{ "src": 3356, "type": "customer", "dst": 22625 },
{ "src": 3356, "type": "customer", "dst": 2274 },
{ "src": 3356, "type": "customer", "dst": 22773 },
{ "src": 3356, "type": "customer", "dst": 22898 },
{ "src": 3356, "type": "customer", "dst": 22958 },
{ "src": 3356, "type": "customer", "dst": 22961 },
{ "src": 3356, "type": "customer", "dst": 23005 },
{ "src": 3356, "type": "customer", "dst": 23047 },
{ "src": 3356, "type": "customer", "dst": 23102 },
{ "src": 3356, "type": "customer", "dst": 23118 },
{ "src": 3356, "type": "customer", "dst": 23141 },
{ "src": 3356, "type": "customer", "dst": 23197 },
{ "src": 3356, "type": "customer", "dst": 23520 },
{ "src": 3356, "type": "customer", "dst": 23521 },
{ "src": 3356, "type": "customer", "dst": 23944 },
{ "src": 3356, "type": "customer", "dst": 24151 },
{ "src": 3356, "type": "customer", "dst": 243 },
{ "src": 3356, "type": "customer", "dst": 24637 },
{ "src": 3356, "type": "customer", "dst": 24724 },
{ "src": 3356, "type": "customer", "dst": 24753 },
{ "src": 3356, "type": "customer", "dst": 24785 },
{ "src": 3356, "type": "customer", "dst": 24940 },
{ "src": 3356, "type": "customer", "dst": 2495 },
{ "src": 3356, "type": "customer", "dst": 24961 },
{ "src": 3356, "type": "customer", "dst": 2516 },
{ "src": 3356, "type": "customer", "dst": 25843 },
{ "src": 3356, "type": "customer", "dst": 25899 },
{ "src": 3356, "type": "customer", "dst": 26074 },
{ "src": 3356, "type": "customer", "dst": 262206 },
{ "src": 3356, "type": "customer", "dst": 26694 },
{ "src": 3356, "type": "customer", "dst": 27240 },
{ "src": 3356, "type": "customer", "dst": 27294 },
{ "src": 3356, "type": "customer", "dst": 27459 },
{ "src": 3356, "type": "customer", "dst": 27471 },
{ "src": 3356, "type": "customer", "dst": 28438 },
{ "src": 3356, "type": "customer", "dst": 2856 },
{ "src": 3356, "type": "customer", "dst": 28676 },
{ "src": 3356, "type": "customer", "dst": 28917 },
{ "src": 3356, "type": "customer", "dst": 29049 },
{ "src": 3356, "type": "customer", "dst": 29076 },
{ "src": 3356, "type": "customer", "dst": 29119 },
{ "src": 3356, "type": "customer", "dst": 29649 },
{ "src": 3356, "type": "customer", "dst": 29664 },
{ "src": 3356, "type": "customer", "dst": 29863 },
{ "src": 3356, "type": "customer", "dst": 29899 },
{ "src": 3356, "type": "customer", "dst": 29944 },
{ "src": 3356, "type": "customer", "dst": 29990 },
{ "src": 3356, "type": "customer", "dst": 29 },
{ "src": 3356, "type": "customer", "dst": 30023 },
{ "src": 3356, "type": "customer", "dst": 30036 },
{ "src": 3356, "type": "customer", "dst": 30152 },
{ "src": 3356, "type": "customer", "dst": 30410 },
{ "src": 3356, "type": "customer", "dst": 30419 },
{ "src": 3356, "type": "customer", "dst": 30586 },
{ "src": 3356, "type": "customer", "dst": 30614 },
{ "src": 3356, "type": "customer", "dst": 31042 },
{ "src": 3356, "type": "customer", "dst": 31133 },
{ "src": 3356, "type": "customer", "dst": 31287 },
{ "src": 3356, "type": "customer", "dst": 31418 },
{ "src": 3356, "type": "customer", "dst": 31500 },
{ "src": 3356, "type": "customer", "dst": 31888 },
{ "src": 3356, "type": "customer", "dst": 31968 },
{ "src": 3356, "type": "customer", "dst": 32012 },
{ "src": 3356, "type": "customer", "dst": 32015 },
{ "src": 3356, "type": "customer", "dst": 32066 },
{ "src": 3356, "type": "customer", "dst": 3209 },
{ "src": 3356, "type": "customer", "dst": 3216 },
{ "src": 3356, "type": "customer", "dst": 32182 },
{ "src": 3356, "type": "customer", "dst": 32401 },
{ "src": 3356, "type": "customer", "dst": 32440 },
{ "src": 3356, "type": "customer", "dst": 3267 },
{ "src": 3356, "type": "customer", "dst": 32734 },
{ "src": 3356, "type": "customer", "dst": 32743 },
{ "src": 3356, "type": "customer", "dst": 3292 },
{ "src": 3356, "type": "customer", "dst": 32976 },
{ "src": 3356, "type": "customer", "dst": 33043 },
{ "src": 3356, "type": "customer", "dst": 33047 },
{ "src": 3356, "type": "customer", "dst": 33257 },
{ "src": 3356, "type": "customer", "dst": 3327 },
{ "src": 3356, "type": "customer", "dst": 33351 },
{ "src": 3356, "type": "peer", "dst": 33363 },
{ "src": 3356, "type": "customer", "dst": 33411 },
{ "src": 3356, "type": "customer", "dst": 33419 },
{ "src": 3356, "type": "customer", "dst": 33445 },
{ "src": 3356, "type": "customer", "dst": 33561 },
{ "src": 3356, "type": "customer", "dst": 33588 },
{ "src": 3356, "type": "customer", "dst": 33609 },
{ "src": 3356, "type": "customer", "dst": 33891 },
{ "src": 3356, "type": "customer", "dst": 34224 },
{ "src": 3356, "type": "customer", "dst": 34407 },
{ "src": 3356, "type": "customer", "dst": 3491 },
{ "src": 3356, "type": "customer", "dst": 3549 },
{ "src": 3356, "type": "peer", "dst": 3561 },
{ "src": 3356, "type": "customer", "dst": 35805 },
{ "src": 3356, "type": "customer", "dst": 36032 },
{ "src": 3356, "type": "customer", "dst": 36346 },
{ "src": 3356, "type": "customer", "dst": 36350 },
{ "src": 3356, "type": "customer", "dst": 36371 },
{ "src": 3356, "type": "customer", "dst": 36408 },
{ "src": 3356, "type": "customer", "dst": 36419 },
{ "src": 3356, "type": "customer", "dst": 36421 },
{ "src": 3356, "type": "customer", "dst": 36616 },
{ "src": 3356, "type": "customer", "dst": 36692 },
{ "src": 3356, "type": "customer", "dst": 36858 },
{ "src": 3356, "type": "customer", "dst": 36989 },
{ "src": 3356, "type": "customer", "dst": 36994 },
{ "src": 3356, "type": "customer", "dst": 37179 },
{ "src": 3356, "type": "customer", "dst": 3741 },
{ "src": 3356, "type": "customer", "dst": 3762 },
{ "src": 3356, "type": "peer", "dst": 3786 },
{ "src": 3356, "type": "customer", "dst": 3791 },
{ "src": 3356, "type": "customer", "dst": 38193 },
{ "src": 3356, "type": "customer", "dst": 39234 },
{ "src": 3356, "type": "customer", "dst": 393372 },
{ "src": 3356, "type": "customer", "dst": 39392 },
{ "src": 3356, "type": "customer", "dst": 39923 },
{ "src": 3356, "type": "customer", "dst": 39944 },
{ "src": 3356, "type": "customer", "dst": 40111 },
{ "src": 3356, "type": "customer", "dst": 40125 },
{ "src": 3356, "type": "customer", "dst": 40155 },
{ "src": 3356, "type": "customer", "dst": 40285 },
{ "src": 3356, "type": "customer", "dst": 40498 },
{ "src": 3356, "type": "customer", "dst": 40590 },
{ "src": 3356, "type": "customer", "dst": 40627 },
{ "src": 3356, "type": "customer", "dst": 40715 },
{ "src": 3356, "type": "customer", "dst": 41164 },
{ "src": 3356, "type": "customer", "dst": 4134 },
{ "src": 3356, "type": "customer", "dst": 41625 },
{ "src": 3356, "type": "customer", "dst": 41707 },
{ "src": 3356, "type": "customer", "dst": 4184 },
{ "src": 3356, "type": "customer", "dst": 4230 },
{ "src": 3356, "type": "customer", "dst": 42473 },
{ "src": 3356, "type": "customer", "dst": 42992 },
{ "src": 3356, "type": "customer", "dst": 43061 },
{ "src": 3356, "type": "customer", "dst": 4323 },
{ "src": 3356, "type": "customer", "dst": 43439 },
{ "src": 3356, "type": "customer", "dst": 43561 },
{ "src": 3356, "type": "customer", "dst": 43751 },
{ "src": 3356, "type": "customer", "dst": 44217 },
{ "src": 3356, "type": "customer", "dst": 44646 },
{ "src": 3356, "type": "customer", "dst": 44654 },
{ "src": 3356, "type": "customer", "dst": 44824 },
{ "src": 3356, "type": "customer", "dst": 45899 },
{ "src": 3356, "type": "customer", "dst": 46347 },
{ "src": 3356, "type": "peer", "dst": 4637 },
{ "src": 3356, "type": "customer", "dst": 4648 },
{ "src": 3356, "type": "customer", "dst": 4651 },
{ "src": 3356, "type": "customer", "dst": 4657 },
{ "src": 3356, "type": "customer", "dst": 46742 },
{ "src": 3356, "type": "customer", "dst": 46849 },
{ "src": 3356, "type": "customer", "dst": 46887 },
{ "src": 3356, "type": "customer", "dst": 47622 },
{ "src": 3356, "type": "customer", "dst": 47872 },
{ "src": 3356, "type": "customer", "dst": 47877 },
{ "src": 3356, "type": "customer", "dst": 4788 },
{ "src": 3356, "type": "customer", "dst": 4809 },
{ "src": 3356, "type": "customer", "dst": 48896 },
{ "src": 3356, "type": "customer", "dst": 49025 },
{ "src": 3356, "type": "customer", "dst": 5067 },
{ "src": 3356, "type": "customer", "dst": 5088 },
{ "src": 3356, "type": "customer", "dst": 51593 },
{ "src": 3356, "type": "customer", "dst": 53276 },
{ "src": 3356, "type": "customer", "dst": 53428 },
{ "src": 3356, "type": "customer", "dst": 53465 },
{ "src": 3356, "type": "customer", "dst": 5400 },
{ "src": 3356, "type": "customer", "dst": 54013 },
{ "src": 3356, "type": "customer", "dst": 54018 },
{ "src": 3356, "type": "customer", "dst": 54100 },
{ "src": 3356, "type": "customer", "dst": 54167 },
{ "src": 3356, "type": "customer", "dst": 54229 },
{ "src": 3356, "type": "customer", "dst": 54431 },
{ "src": 3356, "type": "customer", "dst": 54761 },
{ "src": 3356, "type": "customer", "dst": 54845 },
{ "src": 3356, "type": "customer", "dst": 54922 },
{ "src": 3356, "type": "customer", "dst": 54994 },
{ "src": 3356, "type": "customer", "dst": 55029 },
{ "src": 3356, "type": "customer", "dst": 55137 },
{ "src": 3356, "type": "peer", "dst": 55264 },
{ "src": 3356, "type": "customer", "dst": 55410 },
{ "src": 3356, "type": "customer", "dst": 5580 },
{ "src": 3356, "type": "customer", "dst": 5588 },
{ "src": 3356, "type": "customer", "dst": 5693 },
{ "src": 3356, "type": "customer", "dst": 57344 },
{ "src": 3356, "type": "customer", "dst": 58453 },
{ "src": 3356, "type": "customer", "dst": 6062 },
{ "src": 3356, "type": "customer", "dst": 60725 },
{ "src": 3356, "type": "customer", "dst": 61266 },
{ "src": 3356, "type": "customer", "dst": 6128 },
{ "src": 3356, "type": "customer", "dst": 6195 },
{ "src": 3356, "type": "customer", "dst": 6203 },
{ "src": 3356, "type": "customer", "dst": 6250 },
{ "src": 3356, "type": "customer", "dst": 62850 },
{ "src": 3356, "type": "customer", "dst": 62928 },
{ "src": 3356, "type": "customer", "dst": 62944 },
{ "src": 3356, "type": "customer", "dst": 62958 },
{ "src": 3356, "type": "customer", "dst": 62 },
{ "src": 3356, "type": "customer", "dst": 63249 },
{ "src": 3356, "type": "peer", "dst": 6453 },
{ "src": 3356, "type": "customer", "dst": 6536 },
{ "src": 3356, "type": "customer", "dst": 6621 },
{ "src": 3356, "type": "customer", "dst": 6648 },
{ "src": 3356, "type": "customer", "dst": 6663 },
{ "src": 3356, "type": "customer", "dst": 6774 },
{ "src": 3356, "type": "customer", "dst": 6830 },
{ "src": 3356, "type": "customer", "dst": 6848 },
{ "src": 3356, "type": "customer", "dst": 6983 },
{ "src": 3356, "type": "customer", "dst": 7106 },
{ "src": 3356, "type": "customer", "dst": 7349 },
{ "src": 3356, "type": "customer", "dst": 7381 },
{ "src": 3356, "type": "customer", "dst": 7385 },
{ "src": 3356, "type": "customer", "dst": 7497 },
{ "src": 3356, "type": "customer", "dst": 7713 },
{ "src": 3356, "type": "customer", "dst": 7754 },
{ "src": 3356, "type": "peer", "dst": 7843 },
{ "src": 3356, "type": "peer", "dst": 7922 },
{ "src": 3356, "type": "customer", "dst": 812 },
{ "src": 3356, "type": "customer", "dst": 8220 },
{ "src": 3356, "type": "customer", "dst": 8245 },
{ "src": 3356, "type": "customer", "dst": 8359 },
{ "src": 3356, "type": "customer", "dst": 8400 },
{ "src": 3356, "type": "customer", "dst": 8445 },
{ "src": 3356, "type": "customer", "dst": 8487 },
{ "src": 3356, "type": "customer", "dst": 8501 },
{ "src": 3356, "type": "customer", "dst": 8529 },
{ "src": 3356, "type": "customer", "dst": 8561 },
{ "src": 3356, "type": "customer", "dst": 8641 },
{ "src": 3356, "type": "customer", "dst": 8657 },
{ "src": 3356, "type": "customer", "dst": 8732 },
{ "src": 3356, "type": "customer", "dst": 8767 },
{ "src": 3356, "type": "customer", "dst": 8789 },
{ "src": 3356, "type": "customer", "dst": 8866 },
{ "src": 3356, "type": "customer", "dst": 8881 },
{ "src": 3356, "type": "peer", "dst": 8928 },
{ "src": 3356, "type": "customer", "dst": 8966 },
{ "src": 3356, "type": "customer", "dst": 8968 },
{ "src": 3356, "type": "customer", "dst": 9002 },
{ "src": 3356, "type": "customer", "dst": 9050 },
{ "src": 3356, "type": "customer", "dst": 9121 },
{ "src": 3356, "type": "customer", "dst": 9318 },
{ "src": 3356, "type": "customer", "dst": 9498 },
{ "src": 3356, "type": "customer", "dst": 9505 },
{ "src": 3356, "type": "customer", "dst": 9583 },
{ "src": 33588, "type": "customer", "dst": 11046 },
{ "src": 33588, "type": "customer", "dst": 264 },
{ "src": 33588, "type": "customer", "dst": 33561 },
{ "src": 33588, "type": "customer", "dst": 40380 },
{ "src": 33701, "type": "customer", "dst": 16923 },
{ "src": 33701, "type": "customer", "dst": 22464 },
{ "src": 33788, "type": "customer", "dst": 15706 },
{ "src": 33788, "type": "customer", "dst": 36972 },
{ "src": 33788, "type": "customer", "dst": 36998 },
{ "src": 33788, "type": "customer", "dst": 37197 },
{ "src": 33788, "type": "customer", "dst": 37211 },
{ "src": 33874, "type": "customer", "dst": 12709 },
{ "src": 33874, "type": "customer", "dst": 35134 },
{ "src": 33874, "type": "customer", "dst": 42108 },
{ "src": 33891, "type": "customer", "dst": 16628 },
{ "src": 33891, "type": "peer", "dst": 196621 },
{ "src": 33891, "type": "peer", "dst": 197426 },
{ "src": 33891, "type": "customer", "dst": 21413 },
{ "src": 33891, "type": "customer", "dst": 24940 },
{ "src": 33891, "type": "peer", "dst": 34224 },
{ "src": 33891, "type": "peer", "dst": 34407 },
{ "src": 33891, "type": "peer", "dst": 35805 },
{ "src": 33891, "type": "peer", "dst": 36236 },
{ "src": 33891, "type": "peer", "dst": 36408 },
{ "src": 33891, "type": "peer", "dst": 36616 },
{ "src": 33891, "type": "peer", "dst": 37179 },
{ "src": 33891, "type": "peer", "dst": 38949 },
{ "src": 33891, "type": "customer", "dst": 39392 },
{ "src": 33891, "type": "peer", "dst": 39792 },
{ "src": 33891, "type": "customer", "dst": 39912 },
{ "src": 33891, "type": "peer", "dst": 41711 },
{ "src": 33891, "type": "peer", "dst": 42000 },
{ "src": 33891, "type": "peer", "dst": 42303 },
{ "src": 33891, "type": "peer", "dst": 44217 },
{ "src": 33891, "type": "peer", "dst": 44646 },
{ "src": 33891, "type": "peer", "dst": 44654 },
{ "src": 33891, "type": "peer", "dst": 45177 },
{ "src": 33891, "type": "peer", "dst": 47232 },
{ "src": 33891, "type": "peer", "dst": 48971 },
{ "src": 33891, "type": "peer", "dst": 49025 },
{ "src": 33891, "type": "peer", "dst": 53276 },
{ "src": 33891, "type": "peer", "dst": 57731 },
{ "src": 33891, "type": "peer", "dst": 58453 },
{ "src": 33891, "type": "customer", "dst": 61303 },
{ "src": 33891, "type": "customer", "dst": 62359 },
{ "src": 33986, "type": "peer", "dst": 39792 },
{ "src": 33986, "type": "peer", "dst": 39912 },
{ "src": 33986, "type": "peer", "dst": 49605 },
{ "src": 3401, "type": "peer", "dst": 12989 },
{ "src": 34123, "type": "customer", "dst": 35539 },
{ "src": 34123, "type": "peer", "dst": 39792 },
{ "src": 34123, "type": "peer", "dst": 39912 },
{ "src": 34123, "type": "customer", "dst": 48149 },
{ "src": 34123, "type": "customer", "dst": 50553 },
{ "src": 34123, "type": "customer", "dst": 59653 },
{ "src": 34123, "type": "customer", "dst": 61380 },
{ "src": 3421, "type": "customer", "dst": 24652 },
{ "src": 3421, "type": "customer", "dst": 26704 },
{ "src": 3421, "type": "customer", "dst": 56640 },
{ "src": 34224, "type": "peer", "dst": 10474 },
{ "src": 34224, "type": "peer", "dst": 12576 },
{ "src": 34224, "type": "peer", "dst": 12578 },
{ "src": 34224, "type": "peer", "dst": 12695 },
{ "src": 34224, "type": "peer", "dst": 12714 },
{ "src": 34224, "type": "peer", "dst": 12883 },
{ "src": 34224, "type": "peer", "dst": 13249 },
{ "src": 34224, "type": "peer", "dst": 15763 },
{ "src": 34224, "type": "peer", "dst": 15830 },
{ "src": 34224, "type": "peer", "dst": 15895 },
{ "src": 34224, "type": "peer", "dst": 16178 },
{ "src": 34224, "type": "customer", "dst": 198283 },
{ "src": 34224, "type": "peer", "dst": 20764 },
{ "src": 34224, "type": "peer", "dst": 20804 },
{ "src": 34224, "type": "customer", "dst": 20940 },
{ "src": 34224, "type": "peer", "dst": 21011 },
{ "src": 34224, "type": "peer", "dst": 21219 },
{ "src": 34224, "type": "peer", "dst": 24637 },
{ "src": 34224, "type": "peer", "dst": 24940 },
{ "src": 34224, "type": "peer", "dst": 24961 },
{ "src": 34224, "type": "customer", "dst": 25224 },
{ "src": 34224, "type": "peer", "dst": 25394 },
{ "src": 34224, "type": "peer", "dst": 2854 },
{ "src": 34224, "type": "peer", "dst": 28676 },
{ "src": 34224, "type": "peer", "dst": 29049 },
{ "src": 34224, "type": "peer", "dst": 29226 },
{ "src": 34224, "type": "peer", "dst": 29791 },
{ "src": 34224, "type": "peer", "dst": 31042 },
{ "src": 34224, "type": "peer", "dst": 31287 },
{ "src": 34224, "type": "customer", "dst": 31293 },
{ "src": 34224, "type": "peer", "dst": 31500 },
{ "src": 34224, "type": "peer", "dst": 3327 },
{ "src": 34224, "type": "peer", "dst": 33854 },
{ "src": 34224, "type": "customer", "dst": 34984 },
{ "src": 34224, "type": "peer", "dst": 35805 },
{ "src": 34224, "type": "peer", "dst": 37179 },
{ "src": 34224, "type": "customer", "dst": 39533 },
{ "src": 34224, "type": "peer", "dst": 39792 },
{ "src": 34224, "type": "peer", "dst": 39912 },
{ "src": 34224, "type": "peer", "dst": 42473 },
{ "src": 34224, "type": "peer", "dst": 43561 },
{ "src": 34224, "type": "peer", "dst": 43727 },
{ "src": 34224, "type": "peer", "dst": 44654 },
{ "src": 34224, "type": "peer", "dst": 44953 },
{ "src": 34224, "type": "peer", "dst": 47169 },
{ "src": 34224, "type": "peer", "dst": 47622 },
{ "src": 34224, "type": "customer", "dst": 47748 },
{ "src": 34224, "type": "peer", "dst": 4800 },
{ "src": 34224, "type": "customer", "dst": 48584 },
{ "src": 34224, "type": "peer", "dst": 50384 },
{ "src": 34224, "type": "peer", "dst": 5089 },
{ "src": 34224, "type": "peer", "dst": 50923 },
{ "src": 34224, "type": "peer", "dst": 5391 },
{ "src": 34224, "type": "peer", "dst": 5404 },
{ "src": 34224, "type": "peer", "dst": 5483 },
{ "src": 34224, "type": "peer", "dst": 5563 },
{ "src": 34224, "type": "peer", "dst": 5588 },
{ "src": 34224, "type": "peer", "dst": 5713 },
{ "src": 34224, "type": "customer", "dst": 57463 },
{ "src": 34224, "type": "customer", "dst": 57634 },
{ "src": 34224, "type": "peer", "dst": 58453 },
{ "src": 34224, "type": "peer", "dst": 61337 },
{ "src": 34224, "type": "customer", "dst": 62386 },
{ "src": 34224, "type": "peer", "dst": 6648 },
{ "src": 34224, "type": "peer", "dst": 6663 },
{ "src": 34224, "type": "peer", "dst": 6697 },
{ "src": 34224, "type": "peer", "dst": 6774 },
{ "src": 34224, "type": "peer", "dst": 7713 },
{ "src": 34224, "type": "peer", "dst": 8220 },
{ "src": 34224, "type": "peer", "dst": 8400 },
{ "src": 34224, "type": "peer", "dst": 8487 },
{ "src": 34224, "type": "peer", "dst": 8529 },
{ "src": 34224, "type": "peer", "dst": 8641 },
{ "src": 34224, "type": "peer", "dst": 8732 },
{ "src": 34224, "type": "peer", "dst": 8764 },
{ "src": 34224, "type": "peer", "dst": 8767 },
{ "src": 34224, "type": "peer", "dst": 8881 },
{ "src": 34224, "type": "peer", "dst": 8966 },
{ "src": 34224, "type": "peer", "dst": 9009 },
{ "src": 34224, "type": "peer", "dst": 9119 },
{ "src": 34224, "type": "peer", "dst": 9127 },
{ "src": 34224, "type": "peer", "dst": 9318 },
{ "src": 34224, "type": "peer", "dst": 9498 },
{ "src": 34232, "type": "customer", "dst": 198580 },
{ "src": 34232, "type": "customer", "dst": 48223 },
{ "src": 34232, "type": "customer", "dst": 51478 },
{ "src": 34277, "type": "customer", "dst": 197756 },
{ "src": 34277, "type": "peer", "dst": 39792 },
{ "src": 34277, "type": "customer", "dst": 48946 },
{ "src": 34277, "type": "customer", "dst": 49244 },
{ "src": 34430, "type": "customer", "dst": 48812 },
{ "src": 34688, "type": "customer", "dst": 44666 },
{ "src": 34688, "type": "customer", "dst": 57643 },
{ "src": 34688, "type": "customer", "dst": 60158 },
{ "src": 34718, "type": "customer", "dst": 197917 },
{ "src": 34718, "type": "customer", "dst": 47141 },
{ "src": 34718, "type": "customer", "dst": 61019 },
{ "src": 34772, "type": "customer", "dst": 21183 },
{ "src": 34772, "type": "customer", "dst": 5379 },
{ "src": 34772, "type": "customer", "dst": 61332 },
{ "src": 34786, "type": "customer", "dst": 41875 },
{ "src": 34898, "type": "customer", "dst": 197632 },
{ "src": 34898, "type": "peer", "dst": 39792 },
{ "src": 34898, "type": "customer", "dst": 51547 },
{ "src": 34898, "type": "customer", "dst": 51578 },
{ "src": 3491, "type": "customer", "dst": 10026 },
{ "src": 3491, "type": "peer", "dst": 11404 },
{ "src": 3491, "type": "customer", "dst": 12389 },
{ "src": 3491, "type": "customer", "dst": 12491 },
{ "src": 3491, "type": "customer", "dst": 12880 },
{ "src": 3491, "type": "peer", "dst": 13237 },
{ "src": 3491, "type": "customer", "dst": 132865 },
{ "src": 3491, "type": "customer", "dst": 133165 },
{ "src": 3491, "type": "customer", "dst": 133334 },
{ "src": 3491, "type": "peer", "dst": 15290 },
{ "src": 3491, "type": "peer", "dst": 15412 },
{ "src": 3491, "type": "customer", "dst": 15830 },
{ "src": 3491, "type": "customer", "dst": 17657 },
{ "src": 3491, "type": "customer", "dst": 18403 },
{ "src": 3491, "type": "customer", "dst": 18678 },
{ "src": 3491, "type": "customer", "dst": 18734 },
{ "src": 3491, "type": "peer", "dst": 19151 },
{ "src": 3491, "type": "customer", "dst": 19528 },
{ "src": 3491, "type": "customer", "dst": 19807 },
{ "src": 3491, "type": "customer", "dst": 19809 },
{ "src": 3491, "type": "peer", "dst": 20485 },
{ "src": 3491, "type": "customer", "dst": 20940 },
{ "src": 3491, "type": "peer", "dst": 22773 },
{ "src": 3491, "type": "customer", "dst": 22822 },
{ "src": 3491, "type": "customer", "dst": 23944 },
{ "src": 3491, "type": "customer", "dst": 24637 },
{ "src": 3491, "type": "customer", "dst": 2687 },
{ "src": 3491, "type": "customer", "dst": 29944 },
{ "src": 3491, "type": "customer", "dst": 31133 },
{ "src": 3491, "type": "customer", "dst": 33047 },
{ "src": 3491, "type": "peer", "dst": 3549 },
{ "src": 3491, "type": "customer", "dst": 36236 },
{ "src": 3491, "type": "customer", "dst": 36408 },
{ "src": 3491, "type": "customer", "dst": 3662 },
{ "src": 3491, "type": "peer", "dst": 3741 },
{ "src": 3491, "type": "customer", "dst": 3786 },
{ "src": 3491, "type": "customer", "dst": 37991 },
{ "src": 3491, "type": "customer", "dst": 38107 },
{ "src": 3491, "type": "customer", "dst": 38235 },
{ "src": 3491, "type": "customer", "dst": 38496 },
{ "src": 3491, "type": "customer", "dst": 38621 },
{ "src": 3491, "type": "peer", "dst": 4134 },
{ "src": 3491, "type": "customer", "dst": 41625 },
{ "src": 3491, "type": "customer", "dst": 42473 },
{ "src": 3491, "type": "peer", "dst": 4323 },
{ "src": 3491, "type": "customer", "dst": 45166 },
{ "src": 3491, "type": "customer", "dst": 45652 },
{ "src": 3491, "type": "customer", "dst": 45754 },
{ "src": 3491, "type": "customer", "dst": 45896 },
{ "src": 3491, "type": "customer", "dst": 45899 },
{ "src": 3491, "type": "peer", "dst": 4589 },
{ "src": 3491, "type": "customer", "dst": 45903 },
{ "src": 3491, "type": "customer", "dst": 4609 },
{ "src": 3491, "type": "peer", "dst": 4637 },
{ "src": 3491, "type": "peer", "dst": 4648 },
{ "src": 3491, "type": "customer", "dst": 4651 },
{ "src": 3491, "type": "customer", "dst": 4657 },
{ "src": 3491, "type": "customer", "dst": 4761 },
{ "src": 3491, "type": "customer", "dst": 4788 },
{ "src": 3491, "type": "customer", "dst": 4800 },
{ "src": 3491, "type": "customer", "dst": 4809 },
{ "src": 3491, "type": "customer", "dst": 55410 },
{ "src": 3491, "type": "customer", "dst": 55854 },
{ "src": 3491, "type": "customer", "dst": 56308 },
{ "src": 3491, "type": "customer", "dst": 5713 },
{ "src": 3491, "type": "customer", "dst": 58453 },
{ "src": 3491, "type": "customer", "dst": 59253 },
{ "src": 3491, "type": "peer", "dst": 60725 },
{ "src": 3491, "type": "peer", "dst": 6128 },
{ "src": 3491, "type": "peer", "dst": 6453 },
{ "src": 3491, "type": "customer", "dst": 6473 },
{ "src": 3491, "type": "customer", "dst": 6648 },
{ "src": 3491, "type": "peer", "dst": 6774 },
{ "src": 3491, "type": "peer", "dst": 6830 },
{ "src": 3491, "type": "customer", "dst": 7473 },
{ "src": 3491, "type": "customer", "dst": 7568 },
{ "src": 3491, "type": "peer", "dst": 7575 },
{ "src": 3491, "type": "peer", "dst": 7660 },
{ "src": 3491, "type": "peer", "dst": 7843 },
{ "src": 3491, "type": "peer", "dst": 7922 },
{ "src": 3491, "type": "peer", "dst": 8220 },
{ "src": 3491, "type": "peer", "dst": 8359 },
{ "src": 3491, "type": "customer", "dst": 8529 },
{ "src": 3491, "type": "peer", "dst": 8657 },
{ "src": 3491, "type": "peer", "dst": 8881 },
{ "src": 3491, "type": "peer", "dst": 8928 },
{ "src": 3491, "type": "customer", "dst": 8966 },
{ "src": 3491, "type": "peer", "dst": 9002 },
{ "src": 3491, "type": "customer", "dst": 9304 },
{ "src": 3491, "type": "customer", "dst": 9318 },
{ "src": 3491, "type": "customer", "dst": 9498 },
{ "src": 3491, "type": "peer", "dst": 9505 },
{ "src": 3491, "type": "customer", "dst": 9583 },
{ "src": 3491, "type": "customer", "dst": 9590 },
{ "src": 3491, "type": "customer", "dst": 9729 },
{ "src": 3491, "type": "customer", "dst": 9848 },
{ "src": 34968, "type": "peer", "dst": 39792 },
{ "src": 34968, "type": "peer", "dst": 39912 },
{ "src": 34968, "type": "customer", "dst": 44928 },
{ "src": 34968, "type": "peer", "dst": 44953 },
{ "src": 34968, "type": "customer", "dst": 47863 },
{ "src": 34968, "type": "customer", "dst": 48645 },
{ "src": 34968, "type": "peer", "dst": 50384 },
{ "src": 34984, "type": "customer", "dst": 12880 },
{ "src": 34984, "type": "customer", "dst": 25323 },
{ "src": 34984, "type": "customer", "dst": 31085 },
{ "src": 34984, "type": "customer", "dst": 41902 },
{ "src": 34984, "type": "customer", "dst": 42701 },
{ "src": 34984, "type": "customer", "dst": 44217 },
{ "src": 34984, "type": "customer", "dst": 47123 },
{ "src": 34984, "type": "customer", "dst": 48159 },
{ "src": 34984, "type": "customer", "dst": 50111 },
{ "src": 34984, "type": "customer", "dst": 51739 },
{ "src": 34984, "type": "customer", "dst": 9000 },
{ "src": 35033, "type": "customer", "dst": 3272 },
{ "src": 35104, "type": "customer", "dst": 12764 },
{ "src": 35104, "type": "customer", "dst": 15549 },
{ "src": 35104, "type": "customer", "dst": 16525 },
{ "src": 35104, "type": "customer", "dst": 21299 },
{ "src": 35104, "type": "customer", "dst": 47237 },
{ "src": 3527, "type": "customer", "dst": 6150 },
{ "src": 35346, "type": "customer", "dst": 57916 },
{ "src": 35346, "type": "customer", "dst": 59996 },
{ "src": 35346, "type": "customer", "dst": 62281 },
{ "src": 35400, "type": "customer", "dst": 29648 },
{ "src": 35400, "type": "customer", "dst": 44685 },
{ "src": 35400, "type": "customer", "dst": 49003 },
{ "src": 35434, "type": "customer", "dst": 196729 },
{ "src": 35434, "type": "customer", "dst": 197274 },
{ "src": 35434, "type": "customer", "dst": 197588 },
{ "src": 3549, "type": "customer", "dst": 10026 },
{ "src": 3549, "type": "peer", "dst": 10361 },
{ "src": 3549, "type": "peer", "dst": 10411 },
{ "src": 3549, "type": "peer", "dst": 10474 },
{ "src": 3549, "type": "customer", "dst": 10753 },
{ "src": 3549, "type": "peer", "dst": 10891 },
{ "src": 3549, "type": "peer", "dst": 10919 },
{ "src": 3549, "type": "customer", "dst": 11174 },
{ "src": 3549, "type": "peer", "dst": 11247 },
{ "src": 3549, "type": "customer", "dst": 11266 },
{ "src": 3549, "type": "customer", "dst": 11432 },
{ "src": 3549, "type": "peer", "dst": 11651 },
{ "src": 3549, "type": "customer", "dst": 11664 },
{ "src": 3549, "type": "peer", "dst": 11686 },
{ "src": 3549, "type": "customer", "dst": 11835 },
{ "src": 3549, "type": "customer", "dst": 11911 },
{ "src": 3549, "type": "peer", "dst": 11986 },
{ "src": 3549, "type": "peer", "dst": 12025 },
{ "src": 3549, "type": "peer", "dst": 12129 },
{ "src": 3549, "type": "peer", "dst": 12147 },
{ "src": 3549, "type": "peer", "dst": 12251 },
{ "src": 3549, "type": "peer", "dst": 12297 },
{ "src": 3549, "type": "peer", "dst": 12709 },
{ "src": 3549, "type": "customer", "dst": 12989 },
{ "src": 3549, "type": "peer", "dst": 13110 },
{ "src": 3549, "type": "customer", "dst": 132242 },
{ "src": 3549, "type": "peer", "dst": 13938 },
{ "src": 3549, "type": "peer", "dst": 13954 },
{ "src": 3549, "type": "peer", "dst": 14208 },
{ "src": 3549, "type": "peer", "dst": 14610 },
{ "src": 3549, "type": "peer", "dst": 14717 },
{ "src": 3549, "type": "peer", "dst": 14739 },
{ "src": 3549, "type": "customer", "dst": 14840 },
{ "src": 3549, "type": "customer", "dst": 14868 },
{ "src": 3549, "type": "peer", "dst": 14948 },
{ "src": 3549, "type": "peer", "dst": 15085 },
{ "src": 3549, "type": "peer", "dst": 15290 },
{ "src": 3549, "type": "peer", "dst": 15623 },
{ "src": 3549, "type": "peer", "dst": 15694 },
{ "src": 3549, "type": "customer", "dst": 15830 },
{ "src": 3549, "type": "customer", "dst": 15961 },
{ "src": 3549, "type": "peer", "dst": 16178 },
{ "src": 3549, "type": "peer", "dst": 16202 },
{ "src": 3549, "type": "peer", "dst": 16570 },
{ "src": 3549, "type": "peer", "dst": 16617 },
{ "src": 3549, "type": "customer", "dst": 16637 },
{ "src": 3549, "type": "customer", "dst": 16657 },
{ "src": 3549, "type": "customer", "dst": 16735 },
{ "src": 3549, "type": "customer", "dst": 16839 },
{ "src": 3549, "type": "peer", "dst": 17011 },
{ "src": 3549, "type": "customer", "dst": 17072 },
{ "src": 3549, "type": "peer", "dst": 17113 },
{ "src": 3549, "type": "peer", "dst": 17378 },
{ "src": 3549, "type": "peer", "dst": 17466 },
{ "src": 3549, "type": "peer", "dst": 17557 },
{ "src": 3549, "type": "customer", "dst": 18456 },
{ "src": 3549, "type": "peer", "dst": 18588 },
{ "src": 3549, "type": "customer", "dst": 18734 },
{ "src": 3549, "type": "customer", "dst": 18757 },
{ "src": 3549, "type": "customer", "dst": 18881 },
{ "src": 3549, "type": "peer", "dst": 19067 },
{ "src": 3549, "type": "peer", "dst": 19271 },
{ "src": 3549, "type": "customer", "dst": 19611 },
{ "src": 3549, "type": "peer", "dst": 19685 },
{ "src": 3549, "type": "peer", "dst": 19727 },
{ "src": 3549, "type": "customer", "dst": 197426 },
{ "src": 3549, "type": "peer", "dst": 197508 },
{ "src": 3549, "type": "peer", "dst": 19752 },
{ "src": 3549, "type": "customer", "dst": 19889 },
{ "src": 3549, "type": "peer", "dst": 19893 },
{ "src": 3549, "type": "peer", "dst": 199391 },
{ "src": 3549, "type": "peer", "dst": 199843 },
{ "src": 3549, "type": "peer", "dst": 20021 },
{ "src": 3549, "type": "peer", "dst": 20115 },
{ "src": 3549, "type": "peer", "dst": 20187 },
{ "src": 3549, "type": "peer", "dst": 20460 },
{ "src": 3549, "type": "peer", "dst": 20485 },
{ "src": 3549, "type": "customer", "dst": 20681 },
{ "src": 3549, "type": "peer", "dst": 20764 },
{ "src": 3549, "type": "customer", "dst": 20940 },
{ "src": 3549, "type": "peer", "dst": 20965 },
{ "src": 3549, "type": "customer", "dst": 21011 },
{ "src": 3549, "type": "peer", "dst": 21056 },
{ "src": 3549, "type": "customer", "dst": 21219 },
{ "src": 3549, "type": "peer", "dst": 21277 },
{ "src": 3549, "type": "peer", "dst": 21342 },
{ "src": 3549, "type": "customer", "dst": 2134 },
{ "src": 3549, "type": "peer", "dst": 21949 },
{ "src": 3549, "type": "customer", "dst": 22313 },
{ "src": 3549, "type": "peer", "dst": 22334 },
{ "src": 3549, "type": "peer", "dst": 22557 },
{ "src": 3549, "type": "peer", "dst": 22773 },
{ "src": 3549, "type": "customer", "dst": 22822 },
{ "src": 3549, "type": "peer", "dst": 22898 },
{ "src": 3549, "type": "peer", "dst": 22958 },
{ "src": 3549, "type": "peer", "dst": 23005 },
{ "src": 3549, "type": "peer", "dst": 23047 },
{ "src": 3549, "type": "peer", "dst": 23141 },
{ "src": 3549, "type": "peer", "dst": 23197 },
{ "src": 3549, "type": "peer", "dst": 23520 },
{ "src": 3549, "type": "peer", "dst": 23521 },
{ "src": 3549, "type": "peer", "dst": 23944 },
{ "src": 3549, "type": "peer", "dst": 24151 },
{ "src": 3549, "type": "customer", "dst": 24637 },
{ "src": 3549, "type": "peer", "dst": 24724 },
{ "src": 3549, "type": "customer", "dst": 24753 },
{ "src": 3549, "type": "customer", "dst": 24785 },
{ "src": 3549, "type": "customer", "dst": 24940 },
{ "src": 3549, "type": "customer", "dst": 25432 },
{ "src": 3549, "type": "peer", "dst": 25899 },
{ "src": 3549, "type": "customer", "dst": 25933 },
{ "src": 3549, "type": "customer", "dst": 262150 },
{ "src": 3549, "type": "customer", "dst": 262206 },
{ "src": 3549, "type": "customer", "dst": 262688 },
{ "src": 3549, "type": "customer", "dst": 262750 },
{ "src": 3549, "type": "customer", "dst": 262989 },
{ "src": 3549, "type": "customer", "dst": 263230 },
{ "src": 3549, "type": "customer", "dst": 263432 },
{ "src": 3549, "type": "customer", "dst": 26557 },
{ "src": 3549, "type": "peer", "dst": 26694 },
{ "src": 3549, "type": "customer", "dst": 2716 },
{ "src": 3549, "type": "peer", "dst": 27459 },
{ "src": 3549, "type": "customer", "dst": 27471 },
{ "src": 3549, "type": "peer", "dst": 27739 },
{ "src": 3549, "type": "customer", "dst": 28165 },
{ "src": 3549, "type": "customer", "dst": 28178 },
{ "src": 3549, "type": "customer", "dst": 28202 },
{ "src": 3549, "type": "customer", "dst": 28250 },
{ "src": 3549, "type": "customer", "dst": 28283 },
{ "src": 3549, "type": "customer", "dst": 28306 },
{ "src": 3549, "type": "customer", "dst": 28329 },
{ "src": 3549, "type": "customer", "dst": 28343 },
{ "src": 3549, "type": "customer", "dst": 28359 },
{ "src": 3549, "type": "customer", "dst": 28366 },
{ "src": 3549, "type": "customer", "dst": 28368 },
{ "src": 3549, "type": "customer", "dst": 28438 },
{ "src": 3549, "type": "customer", "dst": 28620 },
{ "src": 3549, "type": "customer", "dst": 28623 },
{ "src": 3549, "type": "customer", "dst": 28646 },
{ "src": 3549, "type": "customer", "dst": 28665 },
{ "src": 3549, "type": "peer", "dst": 28917 },
{ "src": 3549, "type": "peer", "dst": 29076 },
{ "src": 3549, "type": "peer", "dst": 29119 },
{ "src": 3549, "type": "peer", "dst": 29649 },
{ "src": 3549, "type": "peer", "dst": 29664 },
{ "src": 3549, "type": "peer", "dst": 29990 },
{ "src": 3549, "type": "peer", "dst": 30036 },
{ "src": 3549, "type": "customer", "dst": 30419 },
{ "src": 3549, "type": "peer", "dst": 30586 },
{ "src": 3549, "type": "peer", "dst": 30614 },
{ "src": 3549, "type": "peer", "dst": 31042 },
{ "src": 3549, "type": "peer", "dst": 31133 },
{ "src": 3549, "type": "customer", "dst": 3132 },
{ "src": 3549, "type": "peer", "dst": 31418 },
{ "src": 3549, "type": "customer", "dst": 31547 },
{ "src": 3549, "type": "peer", "dst": 31968 },
{ "src": 3549, "type": "peer", "dst": 32012 },
{ "src": 3549, "type": "peer", "dst": 32015 },
{ "src": 3549, "type": "peer", "dst": 32066 },
{ "src": 3549, "type": "customer", "dst": 3209 },
{ "src": 3549, "type": "peer", "dst": 32182 },
{ "src": 3549, "type": "customer", "dst": 32401 },
{ "src": 3549, "type": "peer", "dst": 32734 },
{ "src": 3549, "type": "peer", "dst": 32743 },
{ "src": 3549, "type": "peer", "dst": 33047 },
{ "src": 3549, "type": "peer", "dst": 33257 },
{ "src": 3549, "type": "peer", "dst": 33351 },
{ "src": 3549, "type": "peer", "dst": 33363 },
{ "src": 3549, "type": "peer", "dst": 33419 },
{ "src": 3549, "type": "peer", "dst": 33561 },
{ "src": 3549, "type": "peer", "dst": 33588 },
{ "src": 3549, "type": "peer", "dst": 33891 },
{ "src": 3549, "type": "customer", "dst": 34224 },
{ "src": 3549, "type": "peer", "dst": 34407 },
{ "src": 3549, "type": "peer", "dst": 3561 },
{ "src": 3549, "type": "peer", "dst": 35805 },
{ "src": 3549, "type": "peer", "dst": 36032 },
{ "src": 3549, "type": "peer", "dst": 36346 },
{ "src": 3549, "type": "peer", "dst": 36350 },
{ "src": 3549, "type": "peer", "dst": 36371 },
{ "src": 3549, "type": "peer", "dst": 36408 },
{ "src": 3549, "type": "peer", "dst": 36419 },
{ "src": 3549, "type": "customer", "dst": 36421 },
{ "src": 3549, "type": "customer", "dst": 36490 },
{ "src": 3549, "type": "peer", "dst": 36616 },
{ "src": 3549, "type": "customer", "dst": 3663 },
{ "src": 3549, "type": "peer", "dst": 36692 },
{ "src": 3549, "type": "peer", "dst": 36858 },
{ "src": 3549, "type": "peer", "dst": 36989 },
{ "src": 3549, "type": "peer", "dst": 36994 },
{ "src": 3549, "type": "peer", "dst": 37179 },
{ "src": 3549, "type": "peer", "dst": 3741 },
{ "src": 3549, "type": "peer", "dst": 3762 },
{ "src": 3549, "type": "customer", "dst": 3786 },
{ "src": 3549, "type": "peer", "dst": 38193 },
{ "src": 3549, "type": "peer", "dst": 393372 },
{ "src": 3549, "type": "customer", "dst": 3955 },
{ "src": 3549, "type": "customer", "dst": 39912 },
{ "src": 3549, "type": "peer", "dst": 40125 },
{ "src": 3549, "type": "peer", "dst": 40155 },
{ "src": 3549, "type": "peer", "dst": 40285 },
{ "src": 3549, "type": "peer", "dst": 40498 },
{ "src": 3549, "type": "customer", "dst": 40590 },
{ "src": 3549, "type": "peer", "dst": 40627 },
{ "src": 3549, "type": "customer", "dst": 41164 },
{ "src": 3549, "type": "customer", "dst": 4134 },
{ "src": 3549, "type": "customer", "dst": 41707 },
{ "src": 3549, "type": "peer", "dst": 4230 },
{ "src": 3549, "type": "peer", "dst": 42909 },
{ "src": 3549, "type": "peer", "dst": 42992 },
{ "src": 3549, "type": "customer", "dst": 42 },
{ "src": 3549, "type": "peer", "dst": 43061 },
{ "src": 3549, "type": "peer", "dst": 43439 },
{ "src": 3549, "type": "peer", "dst": 44217 },
{ "src": 3549, "type": "customer", "dst": 44292 },
{ "src": 3549, "type": "peer", "dst": 44646 },
{ "src": 3549, "type": "peer", "dst": 44654 },
{ "src": 3549, "type": "customer", "dst": 45300 },
{ "src": 3549, "type": "customer", "dst": 45896 },
{ "src": 3549, "type": "peer", "dst": 45899 },
{ "src": 3549, "type": "peer", "dst": 4589 },
{ "src": 3549, "type": "peer", "dst": 46347 },
{ "src": 3549, "type": "peer", "dst": 4637 },
{ "src": 3549, "type": "peer", "dst": 4648 },
{ "src": 3549, "type": "peer", "dst": 4657 },
{ "src": 3549, "type": "peer", "dst": 46742 },
{ "src": 3549, "type": "peer", "dst": 46849 },
{ "src": 3549, "type": "peer", "dst": 46887 },
{ "src": 3549, "type": "peer", "dst": 4725 },
{ "src": 3549, "type": "customer", "dst": 47296 },
{ "src": 3549, "type": "customer", "dst": 4788 },
{ "src": 3549, "type": "customer", "dst": 4809 },
{ "src": 3549, "type": "peer", "dst": 49025 },
{ "src": 3549, "type": "customer", "dst": 4927 },
{ "src": 3549, "type": "peer", "dst": 5067 },
{ "src": 3549, "type": "customer", "dst": 52323 },
{ "src": 3549, "type": "customer", "dst": 52331 },
{ "src": 3549, "type": "customer", "dst": 52358 },
{ "src": 3549, "type": "customer", "dst": 52488 },
{ "src": 3549, "type": "customer", "dst": 52579 },
{ "src": 3549, "type": "customer", "dst": 52996 },
{ "src": 3549, "type": "customer", "dst": 53087 },
{ "src": 3549, "type": "customer", "dst": 53106 },
{ "src": 3549, "type": "customer", "dst": 53125 },
{ "src": 3549, "type": "customer", "dst": 53237 },
{ "src": 3549, "type": "peer", "dst": 53276 },
{ "src": 3549, "type": "peer", "dst": 53428 },
{ "src": 3549, "type": "peer", "dst": 5400 },
{ "src": 3549, "type": "peer", "dst": 54013 },
{ "src": 3549, "type": "peer", "dst": 54100 },
{ "src": 3549, "type": "peer", "dst": 54431 },
{ "src": 3549, "type": "peer", "dst": 54845 },
{ "src": 3549, "type": "peer", "dst": 54994 },
{ "src": 3549, "type": "peer", "dst": 55029 },
{ "src": 3549, "type": "peer", "dst": 55137 },
{ "src": 3549, "type": "peer", "dst": 5580 },
{ "src": 3549, "type": "peer", "dst": 5588 },
{ "src": 3549, "type": "peer", "dst": 57344 },
{ "src": 3549, "type": "peer", "dst": 6062 },
{ "src": 3549, "type": "peer", "dst": 60725 },
{ "src": 3549, "type": "peer", "dst": 61266 },
{ "src": 3549, "type": "peer", "dst": 6128 },
{ "src": 3549, "type": "customer", "dst": 61568 },
{ "src": 3549, "type": "peer", "dst": 6195 },
{ "src": 3549, "type": "peer", "dst": 6203 },
{ "src": 3549, "type": "peer", "dst": 6250 },
{ "src": 3549, "type": "peer", "dst": 62958 },
{ "src": 3549, "type": "peer", "dst": 63249 },
{ "src": 3549, "type": "peer", "dst": 6453 },
{ "src": 3549, "type": "peer", "dst": 6621 },
{ "src": 3549, "type": "customer", "dst": 6734 },
{ "src": 3549, "type": "peer", "dst": 6830 },
{ "src": 3549, "type": "peer", "dst": 6848 },
{ "src": 3549, "type": "peer", "dst": 6983 },
{ "src": 3549, "type": "peer", "dst": 7106 },
{ "src": 3549, "type": "peer", "dst": 7349 },
{ "src": 3549, "type": "peer", "dst": 7381 },
{ "src": 3549, "type": "customer", "dst": 7473 },
{ "src": 3549, "type": "peer", "dst": 7474 },
{ "src": 3549, "type": "peer", "dst": 7497 },
{ "src": 3549, "type": "peer", "dst": 7660 },
{ "src": 3549, "type": "peer", "dst": 7713 },
{ "src": 3549, "type": "peer", "dst": 7738 },
{ "src": 3549, "type": "customer", "dst": 7754 },
{ "src": 3549, "type": "peer", "dst": 7843 },
{ "src": 3549, "type": "peer", "dst": 7922 },
{ "src": 3549, "type": "peer", "dst": 8167 },
{ "src": 3549, "type": "peer", "dst": 8220 },
{ "src": 3549, "type": "peer", "dst": 8359 },
{ "src": 3549, "type": "peer", "dst": 8400 },
{ "src": 3549, "type": "customer", "dst": 8445 },
{ "src": 3549, "type": "peer", "dst": 8501 },
{ "src": 3549, "type": "peer", "dst": 8561 },
{ "src": 3549, "type": "peer", "dst": 8657 },
{ "src": 3549, "type": "peer", "dst": 8789 },
{ "src": 3549, "type": "peer", "dst": 8866 },
{ "src": 3549, "type": "peer", "dst": 8966 },
{ "src": 3549, "type": "peer", "dst": 8968 },
{ "src": 3549, "type": "peer", "dst": 9002 },
{ "src": 3549, "type": "peer", "dst": 9121 },
{ "src": 3549, "type": "customer", "dst": 9304 },
{ "src": 3549, "type": "customer", "dst": 9498 },
{ "src": 3549, "type": "peer", "dst": 9505 },
{ "src": 3549, "type": "customer", "dst": 9583 },
{ "src": 35524, "type": "customer", "dst": 198108 },
{ "src": 35539, "type": "customer", "dst": 33993 },
{ "src": 35539, "type": "peer", "dst": 39792 },
{ "src": 35539, "type": "customer", "dst": 50553 },
{ "src": 35539, "type": "customer", "dst": 56802 },
{ "src": 3561, "type": "customer", "dst": 12129 },
{ "src": 3561, "type": "customer", "dst": 16839 },
{ "src": 3561, "type": "customer", "dst": 21509 },
{ "src": 3561, "type": "peer", "dst": 22773 },
{ "src": 3561, "type": "customer", "dst": 23413 },
{ "src": 3561, "type": "customer", "dst": 32607 },
{ "src": 3561, "type": "customer", "dst": 33717 },
{ "src": 3561, "type": "peer", "dst": 3910 },
{ "src": 3561, "type": "customer", "dst": 40026 },
{ "src": 3561, "type": "customer", "dst": 40443 },
{ "src": 3561, "type": "customer", "dst": 4134 },
{ "src": 3561, "type": "customer", "dst": 44366 },
{ "src": 3561, "type": "customer", "dst": 46250 },
{ "src": 3561, "type": "customer", "dst": 46263 },
{ "src": 3561, "type": "peer", "dst": 4637 },
{ "src": 3561, "type": "customer", "dst": 5400 },
{ "src": 3561, "type": "customer", "dst": 6195 },
{ "src": 3561, "type": "peer", "dst": 6453 },
{ "src": 3561, "type": "peer", "dst": 7843 },
{ "src": 3561, "type": "peer", "dst": 7922 },
{ "src": 3561, "type": "peer", "dst": 8220 },
{ "src": 3561, "type": "customer", "dst": 852 },
{ "src": 3561, "type": "customer", "dst": 8966 },
{ "src": 35701, "type": "customer", "dst": 29533 },
{ "src": 35701, "type": "customer", "dst": 50156 },
{ "src": 35701, "type": "customer", "dst": 62383 },
{ "src": 35805, "type": "customer", "dst": 12297 },
{ "src": 35805, "type": "customer", "dst": 199872 },
{ "src": 35805, "type": "customer", "dst": 34666 },
{ "src": 35805, "type": "peer", "dst": 39792 },
{ "src": 35805, "type": "peer", "dst": 39912 },
{ "src": 35805, "type": "peer", "dst": 50384 },
{ "src": 35937, "type": "customer", "dst": 13446 },
{ "src": 35937, "type": "customer", "dst": 23521 },
{ "src": 35937, "type": "customer", "dst": 46250 },
{ "src": 36030, "type": "customer", "dst": 31934 },
{ "src": 36031, "type": "customer", "dst": 23034 },
{ "src": 36031, "type": "customer", "dst": 26567 },
{ "src": 36031, "type": "customer", "dst": 55117 },
{ "src": 36171, "type": "customer", "dst": 63127 },
{ "src": 36222, "type": "customer", "dst": 30543 },
{ "src": 36222, "type": "customer", "dst": 33509 },
{ "src": 36222, "type": "customer", "dst": 53607 },
{ "src": 36236, "type": "customer", "dst": 198412 },
{ "src": 36236, "type": "customer", "dst": 201612 },
{ "src": 36236, "type": "customer", "dst": 24940 },
{ "src": 36236, "type": "customer", "dst": 3132 },
{ "src": 36236, "type": "customer", "dst": 33047 },
{ "src": 36236, "type": "customer", "dst": 34432 },
{ "src": 36236, "type": "peer", "dst": 39792 },
{ "src": 36236, "type": "peer", "dst": 39912 },
{ "src": 36236, "type": "customer", "dst": 39962 },
{ "src": 36236, "type": "peer", "dst": 44953 },
{ "src": 36236, "type": "customer", "dst": 46484 },
{ "src": 36236, "type": "peer", "dst": 50384 },
{ "src": 36236, "type": "customer", "dst": 60592 },
{ "src": 36236, "type": "customer", "dst": 62597 },
{ "src": 36280, "type": "customer", "dst": 13638 },
{ "src": 36280, "type": "customer", "dst": 16851 },
{ "src": 36280, "type": "customer", "dst": 17049 },
{ "src": 36280, "type": "customer", "dst": 23141 },
{ "src": 36280, "type": "customer", "dst": 46849 },
{ "src": 36408, "type": "peer", "dst": 262394 },
{ "src": 36408, "type": "peer", "dst": 262750 },
{ "src": 36408, "type": "customer", "dst": 38107 },
{ "src": 36408, "type": "peer", "dst": 38809 },
{ "src": 36408, "type": "peer", "dst": 39792 },
{ "src": 36408, "type": "peer", "dst": 39912 },
{ "src": 36408, "type": "peer", "dst": 44953 },
{ "src": 36408, "type": "peer", "dst": 49605 },
{ "src": 36408, "type": "peer", "dst": 50384 },
{ "src": 36408, "type": "peer", "dst": 53237 },
{ "src": 3662, "type": "peer", "dst": 20485 },
{ "src": 3662, "type": "customer", "dst": 3363 },
{ "src": 3662, "type": "customer", "dst": 4158 },
{ "src": 3662, "type": "customer", "dst": 4528 },
{ "src": 3662, "type": "peer", "dst": 7660 },
{ "src": 3662, "type": "peer", "dst": 9002 },
{ "src": 3662, "type": "peer", "dst": 9304 },
{ "src": 3662, "type": "peer", "dst": 9505 },
{ "src": 3663, "type": "customer", "dst": 32497 },
{ "src": 3663, "type": "customer", "dst": 46449 },
{ "src": 3663, "type": "customer", "dst": 53586 },
{ "src": 36692, "type": "peer", "dst": 38809 },
{ "src": 36994, "type": "customer", "dst": 29614 },
{ "src": 36994, "type": "customer", "dst": 29975 },
{ "src": 36994, "type": "customer", "dst": 37121 },
{ "src": 37012, "type": "customer", "dst": 37162 },
{ "src": 37012, "type": "customer", "dst": 37212 },
{ "src": 37012, "type": "customer", "dst": 37237 },
{ "src": 37179, "type": "customer", "dst": 36692 },
{ "src": 37179, "type": "customer", "dst": 37225 },
{ "src": 37179, "type": "customer", "dst": 42473 },
{ "src": 37179, "type": "peer", "dst": 57731 },
{ "src": 3741, "type": "peer", "dst": 12552 },
{ "src": 3741, "type": "peer", "dst": 12576 },
{ "src": 3741, "type": "peer", "dst": 12578 },
{ "src": 3741, "type": "peer", "dst": 12715 },
{ "src": 3741, "type": "peer", "dst": 1273 },
{ "src": 3741, "type": "peer", "dst": 12874 },
{ "src": 3741, "type": "peer", "dst": 12989 },
{ "src": 3741, "type": "peer", "dst": 13030 },
{ "src": 3741, "type": "peer", "dst": 13237 },
{ "src": 3741, "type": "customer", "dst": 14115 },
{ "src": 3741, "type": "peer", "dst": 14610 },
{ "src": 3741, "type": "peer", "dst": 15547 },
{ "src": 3741, "type": "peer", "dst": 15830 },
{ "src": 3741, "type": "peer", "dst": 16150 },
{ "src": 3741, "type": "peer", "dst": 16265 },
{ "src": 3741, "type": "peer", "dst": 16637 },
{ "src": 3741, "type": "peer", "dst": 16839 },
{ "src": 3741, "type": "peer", "dst": 17557 },
{ "src": 3741, "type": "peer", "dst": 19151 },
{ "src": 3741, "type": "peer", "dst": 197426 },
{ "src": 3741, "type": "peer", "dst": 20485 },
{ "src": 3741, "type": "peer", "dst": 20562 },
{ "src": 3741, "type": "peer", "dst": 20681 },
{ "src": 3741, "type": "peer", "dst": 20764 },
{ "src": 3741, "type": "peer", "dst": 20940 },
{ "src": 3741, "type": "peer", "dst": 22822 },
{ "src": 3741, "type": "peer", "dst": 23197 },
{ "src": 3741, "type": "peer", "dst": 24724 },
{ "src": 3741, "type": "customer", "dst": 2686 },
{ "src": 3741, "type": "peer", "dst": 28757 },
{ "src": 3741, "type": "peer", "dst": 29049 },
{ "src": 3741, "type": "peer", "dst": 29791 },
{ "src": 3741, "type": "peer", "dst": 31042 },
{ "src": 3741, "type": "peer", "dst": 31133 },
{ "src": 3741, "type": "peer", "dst": 31500 },
{ "src": 3741, "type": "customer", "dst": 32653 },
{ "src": 3741, "type": "peer", "dst": 33854 },
{ "src": 3741, "type": "peer", "dst": 33891 },
{ "src": 3741, "type": "peer", "dst": 34224 },
{ "src": 3741, "type": "peer", "dst": 34407 },
{ "src": 3741, "type": "peer", "dst": 36236 },
{ "src": 3741, "type": "customer", "dst": 36408 },
{ "src": 3741, "type": "peer", "dst": 36692 },
{ "src": 3741, "type": "peer", "dst": 36994 },
{ "src": 3741, "type": "customer", "dst": 37179 },
{ "src": 3741, "type": "customer", "dst": 37302 },
{ "src": 3741, "type": "customer", "dst": 37680 },
{ "src": 3741, "type": "peer", "dst": 42909 },
{ "src": 3741, "type": "peer", "dst": 44646 },
{ "src": 3741, "type": "peer", "dst": 44654 },
{ "src": 3741, "type": "peer", "dst": 44824 },
{ "src": 3741, "type": "peer", "dst": 45177 },
{ "src": 3741, "type": "peer", "dst": 4589 },
{ "src": 3741, "type": "peer", "dst": 4651 },
{ "src": 3741, "type": "peer", "dst": 47622 },
{ "src": 3741, "type": "peer", "dst": 4788 },
{ "src": 3741, "type": "peer", "dst": 4800 },
{ "src": 3741, "type": "peer", "dst": 53276 },
{ "src": 3741, "type": "peer", "dst": 5588 },
{ "src": 3741, "type": "customer", "dst": 5713 },
{ "src": 3741, "type": "peer", "dst": 57463 },
{ "src": 3741, "type": "peer", "dst": 57731 },
{ "src": 3741, "type": "peer", "dst": 61337 },
{ "src": 3741, "type": "peer", "dst": 6327 },
{ "src": 3741, "type": "peer", "dst": 6453 },
{ "src": 3741, "type": "peer", "dst": 6648 },
{ "src": 3741, "type": "peer", "dst": 6663 },
{ "src": 3741, "type": "peer", "dst": 6774 },
{ "src": 3741, "type": "customer", "dst": 7154 },
{ "src": 3741, "type": "peer", "dst": 7473 },
{ "src": 3741, "type": "peer", "dst": 7660 },
{ "src": 3741, "type": "peer", "dst": 7713 },
{ "src": 3741, "type": "peer", "dst": 8220 },
{ "src": 3741, "type": "peer", "dst": 8359 },
{ "src": 3741, "type": "peer", "dst": 8400 },
{ "src": 3741, "type": "peer", "dst": 8657 },
{ "src": 3741, "type": "peer", "dst": 8674 },
{ "src": 3741, "type": "peer", "dst": 8732 },
{ "src": 3741, "type": "peer", "dst": 8789 },
{ "src": 3741, "type": "peer", "dst": 8881 },
{ "src": 3741, "type": "peer", "dst": 8928 },
{ "src": 3741, "type": "peer", "dst": 8966 },
{ "src": 3741, "type": "peer", "dst": 9002 },
{ "src": 3741, "type": "peer", "dst": 9050 },
{ "src": 3741, "type": "peer", "dst": 9304 },
{ "src": 3741, "type": "peer", "dst": 9318 },
{ "src": 3741, "type": "peer", "dst": 9498 },
{ "src": 3741, "type": "peer", "dst": 9505 },
{ "src": 3741, "type": "peer", "dst": 9583 },
{ "src": 3786, "type": "customer", "dst": 10064 },
{ "src": 3786, "type": "customer", "dst": 10165 },
{ "src": 3786, "type": "peer", "dst": 12989 },
{ "src": 3786, "type": "peer", "dst": 13030 },
{ "src": 3786, "type": "peer", "dst": 15412 },
{ "src": 3786, "type": "customer", "dst": 17841 },
{ "src": 3786, "type": "customer", "dst": 18031 },
{ "src": 3786, "type": "peer", "dst": 19151 },
{ "src": 3786, "type": "customer", "dst": 23584 },
{ "src": 3786, "type": "customer", "dst": 2687 },
{ "src": 3786, "type": "customer", "dst": 38107 },
{ "src": 3786, "type": "customer", "dst": 38127 },
{ "src": 3786, "type": "customer", "dst": 38427 },
{ "src": 3786, "type": "customer", "dst": 38681 },
{ "src": 3786, "type": "peer", "dst": 4589 },
{ "src": 3786, "type": "peer", "dst": 4637 },
{ "src": 3786, "type": "customer", "dst": 4809 },
{ "src": 3786, "type": "peer", "dst": 55626 },
{ "src": 3786, "type": "peer", "dst": 6453 },
{ "src": 3786, "type": "peer", "dst": 6830 },
{ "src": 3786, "type": "customer", "dst": 703 },
{ "src": 3786, "type": "peer", "dst": 7473 },
{ "src": 3786, "type": "peer", "dst": 7575 },
{ "src": 3786, "type": "peer", "dst": 9002 },
{ "src": 3786, "type": "customer", "dst": 9323 },
{ "src": 3786, "type": "customer", "dst": 9457 },
{ "src": 3786, "type": "customer", "dst": 9629 },
{ "src": 3786, "type": "customer", "dst": 9781 },
{ "src": 3786, "type": "customer", "dst": 9848 },
{ "src": 3786, "type": "customer", "dst": 9962 },
{ "src": 38022, "type": "customer", "dst": 24398 },
{ "src": 38022, "type": "customer", "dst": 38140 },
{ "src": 38022, "type": "customer", "dst": 38299 },
{ "src": 38095, "type": "customer", "dst": 38097 },
{ "src": 38097, "type": "customer", "dst": 46005 },
{ "src": 38193, "type": "customer", "dst": 131284 },
{ "src": 38193, "type": "customer", "dst": 17539 },
{ "src": 38193, "type": "customer", "dst": 38488 },
{ "src": 38193, "type": "peer", "dst": 39792 },
{ "src": 38193, "type": "peer", "dst": 39912 },
{ "src": 38193, "type": "customer", "dst": 55330 },
{ "src": 38193, "type": "customer", "dst": 55340 },
{ "src": 38193, "type": "customer", "dst": 60725 },
{ "src": 38235, "type": "customer", "dst": 38566 },
{ "src": 38235, "type": "customer", "dst": 55769 },
{ "src": 38235, "type": "customer", "dst": 59351 },
{ "src": 38285, "type": "customer", "dst": 10113 },
{ "src": 38285, "type": "customer", "dst": 18192 },
{ "src": 38285, "type": "peer", "dst": 38809 },
{ "src": 38285, "type": "customer", "dst": 9482 },
{ "src": 38496, "type": "customer", "dst": 131776 },
{ "src": 38496, "type": "customer", "dst": 23698 },
{ "src": 38496, "type": "customer", "dst": 38775 },
{ "src": 38496, "type": "customer", "dst": 58486 },
{ "src": 38566, "type": "customer", "dst": 58465 },
{ "src": 38621, "type": "customer", "dst": 55429 },
{ "src": 38753, "type": "customer", "dst": 131746 },
{ "src": 38753, "type": "customer", "dst": 42473 },
{ "src": 38753, "type": "customer", "dst": 58391 },
{ "src": 38809, "type": "customer", "dst": 10221 },
{ "src": 38809, "type": "peer", "dst": 133175 },
{ "src": 38809, "type": "customer", "dst": 17011 },
{ "src": 38809, "type": "customer", "dst": 29664 },
{ "src": 38809, "type": "peer", "dst": 38880 },
{ "src": 38809, "type": "peer", "dst": 44654 },
{ "src": 38809, "type": "peer", "dst": 45177 },
{ "src": 38809, "type": "peer", "dst": 45425 },
{ "src": 38809, "type": "customer", "dst": 55870 },
{ "src": 38809, "type": "peer", "dst": 56038 },
{ "src": 38809, "type": "customer", "dst": 60725 },
{ "src": 38809, "type": "customer", "dst": 6421 },
{ "src": 38880, "type": "customer", "dst": 10105 },
{ "src": 38880, "type": "customer", "dst": 20144 },
{ "src": 38880, "type": "customer", "dst": 24238 },
{ "src": 38880, "type": "customer", "dst": 45425 },
{ "src": 38888, "type": "customer", "dst": 7636 },
{ "src": 38949, "type": "customer", "dst": 21019 },
{ "src": 38949, "type": "customer", "dst": 49025 },
{ "src": 38949, "type": "customer", "dst": 57414 },
{ "src": 38984, "type": "peer", "dst": 39792 },
{ "src": 3910, "type": "customer", "dst": 16839 },
{ "src": 3910, "type": "customer", "dst": 21509 },
{ "src": 3910, "type": "peer", "dst": 5580 },
{ "src": 3910, "type": "customer", "dst": 721 },
{ "src": 39153, "type": "customer", "dst": 31707 },
{ "src": 39153, "type": "customer", "dst": 35808 },
{ "src": 39153, "type": "peer", "dst": 39792 },
{ "src": 39153, "type": "customer", "dst": 8334 },
{ "src": 39168, "type": "customer", "dst": 47128 },
{ "src": 39216, "type": "customer", "dst": 197985 },
{ "src": 39216, "type": "customer", "dst": 57324 },
{ "src": 39216, "type": "customer", "dst": 62223 },
{ "src": 39264, "type": "peer", "dst": 42632 },
{ "src": 39264, "type": "customer", "dst": 58090 },
{ "src": 39264, "type": "customer", "dst": 58290 },
{ "src": 393299, "type": "customer", "dst": 36815 },
{ "src": 39392, "type": "customer", "dst": 34955 },
{ "src": 39392, "type": "customer", "dst": 42473 },
{ "src": 39392, "type": "customer", "dst": 44065 },
{ "src": 39392, "type": "customer", "dst": 47232 },
{ "src": 39392, "type": "customer", "dst": 49025 },
{ "src": 39392, "type": "customer", "dst": 57007 },
{ "src": 3943, "type": "customer", "dst": 16881 },
{ "src": 39440, "type": "customer", "dst": 200173 },
{ "src": 39526, "type": "customer", "dst": 34645 },
{ "src": 39543, "type": "customer", "dst": 3210 },
{ "src": 39543, "type": "customer", "dst": 35576 },
{ "src": 39543, "type": "customer", "dst": 39430 },
{ "src": 39543, "type": "customer", "dst": 42950 },
{ "src": 3958, "type": "customer", "dst": 3848 },
{ "src": 39710, "type": "customer", "dst": 201763 },
{ "src": 39710, "type": "customer", "dst": 48370 },
{ "src": 39710, "type": "customer", "dst": 51789 },
{ "src": 39792, "type": "customer", "dst": 12418 },
{ "src": 39792, "type": "peer", "dst": 196695 },
{ "src": 39792, "type": "peer", "dst": 196844 },
{ "src": 39792, "type": "peer", "dst": 197140 },
{ "src": 39792, "type": "peer", "dst": 197426 },
{ "src": 39792, "type": "peer", "dst": 197464 },
{ "src": 39792, "type": "peer", "dst": 197985 },
{ "src": 39792, "type": "customer", "dst": 198607 },
{ "src": 39792, "type": "customer", "dst": 25408 },
{ "src": 39792, "type": "peer", "dst": 39912 },
{ "src": 39792, "type": "peer", "dst": 39923 },
{ "src": 39792, "type": "peer", "dst": 41090 },
{ "src": 39792, "type": "peer", "dst": 41313 },
{ "src": 39792, "type": "peer", "dst": 42184 },
{ "src": 39792, "type": "customer", "dst": 42473 },
{ "src": 39792, "type": "peer", "dst": 42632 },
{ "src": 39792, "type": "customer", "dst": 42893 },
{ "src": 39792, "type": "peer", "dst": 42909 },
{ "src": 39792, "type": "peer", "dst": 43561 },
{ "src": 39792, "type": "peer", "dst": 43567 },
{ "src": 39792, "type": "peer", "dst": 43727 },
{ "src": 39792, "type": "peer", "dst": 44654 },
{ "src": 39792, "type": "peer", "dst": 44927 },
{ "src": 39792, "type": "peer", "dst": 44953 },
{ "src": 39792, "type": "peer", "dst": 47169 },
{ "src": 39792, "type": "customer", "dst": 47211 },
{ "src": 39792, "type": "peer", "dst": 47622 },
{ "src": 39792, "type": "peer", "dst": 47872 },
{ "src": 39792, "type": "customer", "dst": 47954 },
{ "src": 39792, "type": "peer", "dst": 48096 },
{ "src": 39792, "type": "peer", "dst": 48287 },
{ "src": 39792, "type": "customer", "dst": 48366 },
{ "src": 39792, "type": "customer", "dst": 48370 },
{ "src": 39792, "type": "customer", "dst": 48822 },
{ "src": 39792, "type": "peer", "dst": 49124 },
{ "src": 39792, "type": "peer", "dst": 49373 },
{ "src": 39792, "type": "peer", "dst": 50384 },
{ "src": 39792, "type": "customer", "dst": 50538 },
{ "src": 39792, "type": "peer", "dst": 51028 },
{ "src": 39792, "type": "peer", "dst": 57344 },
{ "src": 39792, "type": "peer", "dst": 57463 },
{ "src": 39792, "type": "peer", "dst": 57487 },
{ "src": 39792, "type": "customer", "dst": 57661 },
{ "src": 39792, "type": "customer", "dst": 58002 },
{ "src": 39792, "type": "peer", "dst": 58453 },
{ "src": 39792, "type": "peer", "dst": 59560 },
{ "src": 39792, "type": "customer", "dst": 60299 },
{ "src": 39792, "type": "customer", "dst": 60764 },
{ "src": 39792, "type": "peer", "dst": 61266 },
{ "src": 39869, "type": "customer", "dst": 29305 },
{ "src": 39869, "type": "customer", "dst": 51769 },
{ "src": 39869, "type": "customer", "dst": 59491 },
{ "src": 39900, "type": "customer", "dst": 28684 },
{ "src": 39900, "type": "customer", "dst": 48563 },
{ "src": 39900, "type": "customer", "dst": 50884 },
{ "src": 39912, "type": "customer", "dst": 13064 },
{ "src": 39912, "type": "peer", "dst": 196844 },
{ "src": 39912, "type": "peer", "dst": 197426 },
{ "src": 39912, "type": "peer", "dst": 197985 },
{ "src": 39912, "type": "customer", "dst": 29056 },
{ "src": 39912, "type": "peer", "dst": 39923 },
{ "src": 39912, "type": "peer", "dst": 41090 },
{ "src": 39912, "type": "peer", "dst": 41313 },
{ "src": 39912, "type": "peer", "dst": 42184 },
{ "src": 39912, "type": "peer", "dst": 42473 },
{ "src": 39912, "type": "peer", "dst": 43061 },
{ "src": 39912, "type": "peer", "dst": 43561 },
{ "src": 39912, "type": "peer", "dst": 43727 },
{ "src": 39912, "type": "peer", "dst": 44654 },
{ "src": 39912, "type": "peer", "dst": 44953 },
{ "src": 39912, "type": "peer", "dst": 47169 },
{ "src": 39912, "type": "peer", "dst": 47622 },
{ "src": 39912, "type": "peer", "dst": 47872 },
{ "src": 39912, "type": "customer", "dst": 48943 },
{ "src": 39912, "type": "peer", "dst": 50384 },
{ "src": 39912, "type": "peer", "dst": 50923 },
{ "src": 39912, "type": "customer", "dst": 51350 },
{ "src": 39912, "type": "peer", "dst": 57344 },
{ "src": 39912, "type": "peer", "dst": 57463 },
{ "src": 39912, "type": "peer", "dst": 58002 },
{ "src": 39912, "type": "peer", "dst": 58453 },
{ "src": 39912, "type": "peer", "dst": 59560 },
{ "src": 39912, "type": "peer", "dst": 60764 },
{ "src": 39912, "type": "peer", "dst": 61266 },
{ "src": 39923, "type": "customer", "dst": 31669 },
{ "src": 39923, "type": "customer", "dst": 35701 },
{ "src": 39923, "type": "customer", "dst": 39641 },
{ "src": 39923, "type": "peer", "dst": 44953 },
{ "src": 39923, "type": "customer", "dst": 50156 },
{ "src": 39923, "type": "peer", "dst": 50384 },
{ "src": 39944, "type": "customer", "dst": 36060 },
{ "src": 40076, "type": "customer", "dst": 10891 },
{ "src": 40076, "type": "customer", "dst": 13710 },
{ "src": 40076, "type": "customer", "dst": 21700 },
{ "src": 40111, "type": "customer", "dst": 16480 },
{ "src": 40111, "type": "customer", "dst": 393446 },
{ "src": 40111, "type": "customer", "dst": 46925 },
{ "src": 40189, "type": "customer", "dst": 14940 },
{ "src": 40285, "type": "customer", "dst": 32186 },
{ "src": 40285, "type": "customer", "dst": 36499 },
{ "src": 40285, "type": "customer", "dst": 54814 },
{ "src": 40341, "type": "customer", "dst": 19566 },
{ "src": 40341, "type": "customer", "dst": 19869 },
{ "src": 40341, "type": "customer", "dst": 36030 },
{ "src": 40498, "type": "customer", "dst": 17153 },
{ "src": 40498, "type": "customer", "dst": 21782 },
{ "src": 40498, "type": "customer", "dst": 54249 },
{ "src": 40715, "type": "customer", "dst": 19857 },
{ "src": 40715, "type": "customer", "dst": 26830 },
{ "src": 40715, "type": "customer", "dst": 32734 },
{ "src": 41034, "type": "customer", "dst": 13296 },
{ "src": 41034, "type": "customer", "dst": 60856 },
{ "src": 41034, "type": "customer", "dst": 61382 },
{ "src": 41090, "type": "peer", "dst": 44953 },
{ "src": 41090, "type": "peer", "dst": 50384 },
{ "src": 41164, "type": "customer", "dst": 25400 },
{ "src": 41164, "type": "customer", "dst": 47853 },
{ "src": 41164, "type": "customer", "dst": 49455 },
{ "src": 41221, "type": "customer", "dst": 35346 },
{ "src": 41221, "type": "customer", "dst": 57713 },
{ "src": 41221, "type": "customer", "dst": 61062 },
{ "src": 41221, "type": "customer", "dst": 8888 },
{ "src": 41313, "type": "customer", "dst": 197516 },
{ "src": 41313, "type": "customer", "dst": 34984 },
{ "src": 41313, "type": "customer", "dst": 43943 },
{ "src": 41313, "type": "peer", "dst": 44953 },
{ "src": 41313, "type": "customer", "dst": 48262 },
{ "src": 41313, "type": "customer", "dst": 62386 },
{ "src": 41313, "type": "customer", "dst": 9127 },
{ "src": 4134, "type": "peer", "dst": 10026 },
{ "src": 4134, "type": "peer", "dst": 12389 },
{ "src": 4134, "type": "peer", "dst": 16735 },
{ "src": 4134, "type": "customer", "dst": 17883 },
{ "src": 4134, "type": "customer", "dst": 17923 },
{ "src": 4134, "type": "customer", "dst": 18403 },
{ "src": 4134, "type": "peer", "dst": 19151 },
{ "src": 4134, "type": "customer", "dst": 19809 },
{ "src": 4134, "type": "peer", "dst": 20485 },
{ "src": 4134, "type": "customer", "dst": 24151 },
{ "src": 4134, "type": "peer", "dst": 39912 },
{ "src": 4134, "type": "customer", "dst": 45899 },
{ "src": 4134, "type": "peer", "dst": 4637 },
{ "src": 4134, "type": "peer", "dst": 4657 },
{ "src": 4134, "type": "customer", "dst": 4809 },
{ "src": 4134, "type": "peer", "dst": 6453 },
{ "src": 4134, "type": "peer", "dst": 6830 },
{ "src": 4134, "type": "peer", "dst": 7738 },
{ "src": 4134, "type": "peer", "dst": 7922 },
{ "src": 4134, "type": "peer", "dst": 8359 },
{ "src": 4134, "type": "peer", "dst": 9002 },
{ "src": 4134, "type": "peer", "dst": 9304 },
{ "src": 4134, "type": "peer", "dst": 9318 },
{ "src": 4134, "type": "peer", "dst": 9505 },
{ "src": 41540, "type": "customer", "dst": 24685 },
{ "src": 41540, "type": "customer", "dst": 29693 },
{ "src": 41540, "type": "customer", "dst": 44526 },
{ "src": 41798, "type": "customer", "dst": 15736 },
{ "src": 41798, "type": "customer", "dst": 28910 },
{ "src": 41798, "type": "customer", "dst": 31525 },
{ "src": 41798, "type": "customer", "dst": 35104 },
{ "src": 41798, "type": "customer", "dst": 43994 },
{ "src": 41798, "type": "customer", "dst": 47613 },
{ "src": 41798, "type": "customer", "dst": 48716 },
{ "src": 41798, "type": "customer", "dst": 62111 },
{ "src": 41897, "type": "customer", "dst": 41937 },
{ "src": 41897, "type": "customer", "dst": 48580 },
{ "src": 41897, "type": "peer", "dst": 50384 },
{ "src": 41897, "type": "customer", "dst": 61439 },
{ "src": 41937, "type": "customer", "dst": 49167 },
{ "src": 41937, "type": "peer", "dst": 50384 },
{ "src": 41937, "type": "customer", "dst": 62420 },
{ "src": 41938, "type": "customer", "dst": 13296 },
{ "src": 41938, "type": "customer", "dst": 41034 },
{ "src": 41938, "type": "customer", "dst": 51397 },
{ "src": 42000, "type": "customer", "dst": 44489 },
{ "src": 42000, "type": "customer", "dst": 49025 },
{ "src": 42000, "type": "customer", "dst": 51278 },
{ "src": 42040, "type": "customer", "dst": 200008 },
{ "src": 42090, "type": "customer", "dst": 15947 },
{ "src": 42184, "type": "customer", "dst": 196932 },
{ "src": 42184, "type": "peer", "dst": 44953 },
{ "src": 42184, "type": "customer", "dst": 49034 },
{ "src": 42184, "type": "peer", "dst": 50384 },
{ "src": 42184, "type": "customer", "dst": 8454 },
{ "src": 42303, "type": "customer", "dst": 197339 },
{ "src": 42303, "type": "customer", "dst": 198160 },
{ "src": 42303, "type": "customer", "dst": 198848 },
{ "src": 4230, "type": "customer", "dst": 11835 },
{ "src": 4230, "type": "peer", "dst": 16735 },
{ "src": 4230, "type": "peer", "dst": 17072 },
{ "src": 4230, "type": "peer", "dst": 18881 },
{ "src": 4230, "type": "customer", "dst": 20940 },
{ "src": 4230, "type": "customer", "dst": 23106 },
{ "src": 4230, "type": "customer", "dst": 262355 },
{ "src": 4230, "type": "customer", "dst": 262393 },
{ "src": 4230, "type": "customer", "dst": 262394 },
{ "src": 4230, "type": "customer", "dst": 262994 },
{ "src": 4230, "type": "customer", "dst": 263098 },
{ "src": 4230, "type": "customer", "dst": 263424 },
{ "src": 4230, "type": "customer", "dst": 27652 },
{ "src": 4230, "type": "customer", "dst": 27693 },
{ "src": 4230, "type": "customer", "dst": 28176 },
{ "src": 4230, "type": "customer", "dst": 28262 },
{ "src": 4230, "type": "customer", "dst": 28278 },
{ "src": 4230, "type": "customer", "dst": 28646 },
{ "src": 4230, "type": "peer", "dst": 33891 },
{ "src": 4230, "type": "peer", "dst": 36408 },
{ "src": 4230, "type": "customer", "dst": 41707 },
{ "src": 4230, "type": "peer", "dst": 42473 },
{ "src": 4230, "type": "customer", "dst": 52622 },
{ "src": 4230, "type": "customer", "dst": 53083 },
{ "src": 4230, "type": "customer", "dst": 5666 },
{ "src": 4230, "type": "customer", "dst": 61804 },
{ "src": 4230, "type": "peer", "dst": 7738 },
{ "src": 4230, "type": "peer", "dst": 8167 },
{ "src": 4230, "type": "peer", "dst": 8657 },
{ "src": 4230, "type": "peer", "dst": 9002 },
{ "src": 42337, "type": "customer", "dst": 24631 },
{ "src": 42337, "type": "customer", "dst": 44691 },
{ "src": 42337, "type": "customer", "dst": 47843 },
{ "src": 42337, "type": "customer", "dst": 49433 },
{ "src": 42337, "type": "customer", "dst": 50558 },
{ "src": 42473, "type": "customer", "dst": 1921 },
{ "src": 42473, "type": "customer", "dst": 201612 },
{ "src": 42473, "type": "customer", "dst": 34432 },
{ "src": 42473, "type": "customer", "dst": 48943 },
{ "src": 42473, "type": "customer", "dst": 51421 },
{ "src": 42473, "type": "customer", "dst": 62373 },
{ "src": 42549, "type": "customer", "dst": 15440 },
{ "src": 42549, "type": "customer", "dst": 44358 },
{ "src": 42549, "type": "customer", "dst": 61091 },
{ "src": 42555, "type": "customer", "dst": 197929 },
{ "src": 42555, "type": "customer", "dst": 41946 },
{ "src": 42555, "type": "customer", "dst": 56389 },
{ "src": 42555, "type": "customer", "dst": 62052 },
{ "src": 42564, "type": "customer", "dst": 39168 },
{ "src": 42632, "type": "customer", "dst": 21453 },
{ "src": 42632, "type": "customer", "dst": 25478 },
{ "src": 42632, "type": "customer", "dst": 43267 },
{ "src": 42632, "type": "peer", "dst": 48366 },
{ "src": 42632, "type": "peer", "dst": 49218 },
{ "src": 42632, "type": "peer", "dst": 50384 },
{ "src": 42632, "type": "customer", "dst": 51028 },
{ "src": 42632, "type": "customer", "dst": 5563 },
{ "src": 42632, "type": "peer", "dst": 56534 },
{ "src": 42632, "type": "customer", "dst": 57487 },
{ "src": 42632, "type": "customer", "dst": 57530 },
{ "src": 42632, "type": "customer", "dst": 59653 },
{ "src": 42632, "type": "customer", "dst": 60098 },
{ "src": 42632, "type": "customer", "dst": 60299 },
{ "src": 42632, "type": "customer", "dst": 60764 },
{ "src": 42632, "type": "customer", "dst": 61382 },
{ "src": 42632, "type": "customer", "dst": 6697 },
{ "src": 42909, "type": "peer", "dst": 49605 },
{ "src": 42918, "type": "customer", "dst": 31360 },
{ "src": 42918, "type": "customer", "dst": 47315 },
{ "src": 42957, "type": "customer", "dst": 47902 },
{ "src": 42957, "type": "customer", "dst": 6734 },
{ "src": 42, "type": "peer", "dst": 10026 },
{ "src": 42, "type": "peer", "dst": 11686 },
{ "src": 42, "type": "peer", "dst": 1267 },
{ "src": 42, "type": "peer", "dst": 1273 },
{ "src": 42, "type": "peer", "dst": 12874 },
{ "src": 42, "type": "peer", "dst": 12989 },
{ "src": 42, "type": "peer", "dst": 13237 },
{ "src": 42, "type": "peer", "dst": 14840 },
{ "src": 42, "type": "peer", "dst": 15412 },
{ "src": 42, "type": "peer", "dst": 16735 },
{ "src": 42, "type": "peer", "dst": 1764 },
{ "src": 42, "type": "peer", "dst": 1853 },
{ "src": 42, "type": "peer", "dst": 19151 },
{ "src": 42, "type": "customer", "dst": 20144 },
{ "src": 42, "type": "peer", "dst": 20485 },
{ "src": 42, "type": "peer", "dst": 20562 },
{ "src": 42, "type": "peer", "dst": 2152 },
{ "src": 42, "type": "peer", "dst": 2516 },
{ "src": 42, "type": "customer", "dst": 27678 },
{ "src": 42, "type": "peer", "dst": 28917 },
{ "src": 42, "type": "peer", "dst": 29076 },
{ "src": 42, "type": "peer", "dst": 31133 },
{ "src": 42, "type": "peer", "dst": 3216 },
{ "src": 42, "type": "peer", "dst": 3267 },
{ "src": 42, "type": "peer", "dst": 3292 },
{ "src": 42, "type": "customer", "dst": 32978 },
{ "src": 42, "type": "peer", "dst": 3303 },
{ "src": 42, "type": "peer", "dst": 3356 },
{ "src": 42, "type": "peer", "dst": 33891 },
{ "src": 42, "type": "peer", "dst": 3491 },
{ "src": 42, "type": "peer", "dst": 3741 },
{ "src": 42, "type": "peer", "dst": 38809 },
{ "src": 42, "type": "peer", "dst": 39792 },
{ "src": 42, "type": "peer", "dst": 39912 },
{ "src": 42, "type": "peer", "dst": 4589 },
{ "src": 42, "type": "peer", "dst": 4637 },
{ "src": 42, "type": "peer", "dst": 50384 },
{ "src": 42, "type": "peer", "dst": 5580 },
{ "src": 42, "type": "peer", "dst": 6830 },
{ "src": 42, "type": "peer", "dst": 7575 },
{ "src": 42, "type": "peer", "dst": 7660 },
{ "src": 42, "type": "peer", "dst": 7738 },
{ "src": 42, "type": "peer", "dst": 8220 },
{ "src": 42, "type": "peer", "dst": 8359 },
{ "src": 42, "type": "peer", "dst": 852 },
{ "src": 42, "type": "peer", "dst": 8657 },
{ "src": 42, "type": "peer", "dst": 8758 },
{ "src": 42, "type": "peer", "dst": 8928 },
{ "src": 42, "type": "peer", "dst": 9002 },
{ "src": 42, "type": "peer", "dst": 9304 },
{ "src": 42, "type": "peer", "dst": 9498 },
{ "src": 42, "type": "peer", "dst": 9505 },
{ "src": 43061, "type": "customer", "dst": 15664 },
{ "src": 43061, "type": "customer", "dst": 197843 },
{ "src": 43061, "type": "customer", "dst": 49402 },
{ "src": 4323, "type": "peer", "dst": 10026 },
{ "src": 4323, "type": "customer", "dst": 10411 },
{ "src": 4323, "type": "peer", "dst": 10796 },
{ "src": 4323, "type": "customer", "dst": 10835 },
{ "src": 4323, "type": "customer", "dst": 11276 },
{ "src": 4323, "type": "customer", "dst": 11643 },
{ "src": 4323, "type": "customer", "dst": 12025 },
{ "src": 4323, "type": "customer", "dst": 12028 },
{ "src": 4323, "type": "customer", "dst": 12042 },
{ "src": 4323, "type": "peer", "dst": 12989 },
{ "src": 4323, "type": "peer", "dst": 13030 },
{ "src": 4323, "type": "customer", "dst": 13446 },
{ "src": 4323, "type": "customer", "dst": 13492 },
{ "src": 4323, "type": "customer", "dst": 13555 },
{ "src": 4323, "type": "customer", "dst": 13649 },
{ "src": 4323, "type": "customer", "dst": 13776 },
{ "src": 4323, "type": "customer", "dst": 13920 },
{ "src": 4323, "type": "customer", "dst": 14105 },
{ "src": 4323, "type": "customer", "dst": 1421 },
{ "src": 4323, "type": "customer", "dst": 14230 },
{ "src": 4323, "type": "customer", "dst": 14637 },
{ "src": 4323, "type": "customer", "dst": 15029 },
{ "src": 4323, "type": "peer", "dst": 15085 },
{ "src": 4323, "type": "peer", "dst": 15412 },
{ "src": 4323, "type": "customer", "dst": 15580 },
{ "src": 4323, "type": "customer", "dst": 16538 },
{ "src": 4323, "type": "customer", "dst": 16972 },
{ "src": 4323, "type": "customer", "dst": 17049 },
{ "src": 4323, "type": "customer", "dst": 17054 },
{ "src": 4323, "type": "customer", "dst": 17145 },
{ "src": 4323, "type": "customer", "dst": 18676 },
{ "src": 4323, "type": "peer", "dst": 19151 },
{ "src": 4323, "type": "customer", "dst": 19271 },
{ "src": 4323, "type": "customer", "dst": 19384 },
{ "src": 4323, "type": "customer", "dst": 19528 },
{ "src": 4323, "type": "customer", "dst": 19685 },
{ "src": 4323, "type": "customer", "dst": 19782 },
{ "src": 4323, "type": "customer", "dst": 19783 },
{ "src": 4323, "type": "customer", "dst": 19893 },
{ "src": 4323, "type": "customer", "dst": 20013 },
{ "src": 4323, "type": "customer", "dst": 20021 },
{ "src": 4323, "type": "customer", "dst": 20141 },
{ "src": 4323, "type": "customer", "dst": 20144 },
{ "src": 4323, "type": "customer", "dst": 20187 },
{ "src": 4323, "type": "customer", "dst": 21704 },
{ "src": 4323, "type": "customer", "dst": 21827 },
{ "src": 4323, "type": "customer", "dst": 22065 },
{ "src": 4323, "type": "customer", "dst": 22475 },
{ "src": 4323, "type": "customer", "dst": 22489 },
{ "src": 4323, "type": "customer", "dst": 22498 },
{ "src": 4323, "type": "customer", "dst": 22557 },
{ "src": 4323, "type": "customer", "dst": 22625 },
{ "src": 4323, "type": "customer", "dst": 22772 },
{ "src": 4323, "type": "customer", "dst": 23005 },
{ "src": 4323, "type": "customer", "dst": 23019 },
{ "src": 4323, "type": "customer", "dst": 23115 },
{ "src": 4323, "type": "customer", "dst": 23413 },
{ "src": 4323, "type": "customer", "dst": 23477 },
{ "src": 4323, "type": "customer", "dst": 24637 },
{ "src": 4323, "type": "customer", "dst": 25640 },
{ "src": 4323, "type": "customer", "dst": 25785 },
{ "src": 4323, "type": "customer", "dst": 25911 },
{ "src": 4323, "type": "customer", "dst": 25945 },
{ "src": 4323, "type": "customer", "dst": 26053 },
{ "src": 4323, "type": "customer", "dst": 26402 },
{ "src": 4323, "type": "customer", "dst": 26662 },
{ "src": 4323, "type": "customer", "dst": 26787 },
{ "src": 4323, "type": "customer", "dst": 26908 },
{ "src": 4323, "type": "customer", "dst": 26922 },
{ "src": 4323, "type": "customer", "dst": 27186 },
{ "src": 4323, "type": "customer", "dst": 27379 },
{ "src": 4323, "type": "customer", "dst": 27459 },
{ "src": 4323, "type": "customer", "dst": 27547 },
{ "src": 4323, "type": "customer", "dst": 29784 },
{ "src": 4323, "type": "customer", "dst": 29836 },
{ "src": 4323, "type": "customer", "dst": 29863 },
{ "src": 4323, "type": "customer", "dst": 29944 },
{ "src": 4323, "type": "customer", "dst": 29990 },
{ "src": 4323, "type": "customer", "dst": 30023 },
{ "src": 4323, "type": "customer", "dst": 30152 },
{ "src": 4323, "type": "customer", "dst": 30410 },
{ "src": 4323, "type": "customer", "dst": 30614 },
{ "src": 4323, "type": "customer", "dst": 31985 },
{ "src": 4323, "type": "customer", "dst": 32440 },
{ "src": 4323, "type": "customer", "dst": 32592 },
{ "src": 4323, "type": "customer", "dst": 32734 },
{ "src": 4323, "type": "customer", "dst": 33043 },
{ "src": 4323, "type": "peer", "dst": 33363 },
{ "src": 4323, "type": "customer", "dst": 33629 },
{ "src": 4323, "type": "customer", "dst": 3456 },
{ "src": 4323, "type": "peer", "dst": 3549 },
{ "src": 4323, "type": "customer", "dst": 35870 },
{ "src": 4323, "type": "customer", "dst": 35896 },
{ "src": 4323, "type": "customer", "dst": 35997 },
{ "src": 4323, "type": "customer", "dst": 36053 },
{ "src": 4323, "type": "customer", "dst": 40285 },
{ "src": 4323, "type": "customer", "dst": 40715 },
{ "src": 4323, "type": "customer", "dst": 40851 },
{ "src": 4323, "type": "peer", "dst": 4589 },
{ "src": 4323, "type": "customer", "dst": 46250 },
{ "src": 4323, "type": "peer", "dst": 4637 },
{ "src": 4323, "type": "customer", "dst": 46527 },
{ "src": 4323, "type": "customer", "dst": 46574 },
{ "src": 4323, "type": "peer", "dst": 4657 },
{ "src": 4323, "type": "customer", "dst": 46925 },
{ "src": 4323, "type": "customer", "dst": 46928 },
{ "src": 4323, "type": "customer", "dst": 47071 },
{ "src": 4323, "type": "customer", "dst": 4869 },
{ "src": 4323, "type": "customer", "dst": 53340 },
{ "src": 4323, "type": "customer", "dst": 54155 },
{ "src": 4323, "type": "customer", "dst": 54230 },
{ "src": 4323, "type": "customer", "dst": 54399 },
{ "src": 4323, "type": "customer", "dst": 54408 },
{ "src": 4323, "type": "customer", "dst": 54822 },
{ "src": 4323, "type": "customer", "dst": 5693 },
{ "src": 4323, "type": "customer", "dst": 57 },
{ "src": 4323, "type": "customer", "dst": 60725 },
{ "src": 4323, "type": "customer", "dst": 6250 },
{ "src": 4323, "type": "customer", "dst": 62928 },
{ "src": 4323, "type": "customer", "dst": 62 },
{ "src": 4323, "type": "customer", "dst": 6360 },
{ "src": 4323, "type": "customer", "dst": 6536 },
{ "src": 4323, "type": "customer", "dst": 6621 },
{ "src": 4323, "type": "peer", "dst": 6830 },
{ "src": 4323, "type": "customer", "dst": 6983 },
{ "src": 4323, "type": "customer", "dst": 7349 },
{ "src": 4323, "type": "peer", "dst": 7385 },
{ "src": 4323, "type": "peer", "dst": 7473 },
{ "src": 4323, "type": "customer", "dst": 7754 },
{ "src": 4323, "type": "peer", "dst": 7843 },
{ "src": 4323, "type": "peer", "dst": 7922 },
{ "src": 4323, "type": "peer", "dst": 8359 },
{ "src": 4323, "type": "peer", "dst": 8966 },
{ "src": 4323, "type": "peer", "dst": 9002 },
{ "src": 4323, "type": "peer", "dst": 9505 },
{ "src": 43267, "type": "customer", "dst": 34277 },
{ "src": 43267, "type": "customer", "dst": 48223 },
{ "src": 43267, "type": "customer", "dst": 61141 },
{ "src": 43267, "type": "customer", "dst": 61271 },
{ "src": 43338, "type": "customer", "dst": 48536 },
{ "src": 43443, "type": "customer", "dst": 16157 },
{ "src": 43443, "type": "customer", "dst": 39226 },
{ "src": 43443, "type": "customer", "dst": 49986 },
{ "src": 43561, "type": "customer", "dst": 199132 },
{ "src": 43561, "type": "customer", "dst": 42555 },
{ "src": 43561, "type": "customer", "dst": 44564 },
{ "src": 43561, "type": "peer", "dst": 50384 },
{ "src": 43727, "type": "customer", "dst": 12418 },
{ "src": 43727, "type": "customer", "dst": 199020 },
{ "src": 43727, "type": "customer", "dst": 199063 },
{ "src": 43727, "type": "customer", "dst": 43567 },
{ "src": 43727, "type": "customer", "dst": 58347 },
{ "src": 43727, "type": "customer", "dst": 60764 },
{ "src": 43727, "type": "customer", "dst": 61010 },
{ "src": 43751, "type": "customer", "dst": 6716 },
{ "src": 43833, "type": "customer", "dst": 35394 },
{ "src": 43833, "type": "customer", "dst": 41343 },
{ "src": 43833, "type": "customer", "dst": 48427 },
{ "src": 43994, "type": "customer", "dst": 21299 },
{ "src": 43994, "type": "customer", "dst": 35104 },
{ "src": 43994, "type": "customer", "dst": 35673 },
{ "src": 43994, "type": "customer", "dst": 8720 },
{ "src": 44217, "type": "customer", "dst": 3178 },
{ "src": 44217, "type": "customer", "dst": 36408 },
{ "src": 44217, "type": "customer", "dst": 47872 },
{ "src": 44217, "type": "customer", "dst": 57324 },
{ "src": 44217, "type": "customer", "dst": 58336 },
{ "src": 44375, "type": "customer", "dst": 52210 },
{ "src": 44552, "type": "customer", "dst": 50647 },
{ "src": 44654, "type": "customer", "dst": 16065 },
{ "src": 44654, "type": "peer", "dst": 44953 },
{ "src": 44654, "type": "peer", "dst": 50384 },
{ "src": 44678, "type": "customer", "dst": 59917 },
{ "src": 44682, "type": "customer", "dst": 35450 },
{ "src": 44682, "type": "customer", "dst": 35797 },
{ "src": 44682, "type": "customer", "dst": 43474 },
{ "src": 44826, "type": "customer", "dst": 39900 },
{ "src": 44953, "type": "peer", "dst": 196844 },
{ "src": 44953, "type": "peer", "dst": 197426 },
{ "src": 44953, "type": "customer", "dst": 20562 },
{ "src": 44953, "type": "customer", "dst": 21315 },
{ "src": 44953, "type": "peer", "dst": 47872 },
{ "src": 44953, "type": "peer", "dst": 50384 },
{ "src": 44953, "type": "customer", "dst": 50399 },
{ "src": 44953, "type": "peer", "dst": 57463 },
{ "src": 44953, "type": "peer", "dst": 59560 },
{ "src": 45166, "type": "customer", "dst": 58948 },
{ "src": 45177, "type": "customer", "dst": 132919 },
{ "src": 45177, "type": "customer", "dst": 133404 },
{ "src": 45177, "type": "customer", "dst": 36236 },
{ "src": 45177, "type": "customer", "dst": 60092 },
{ "src": 4528, "type": "customer", "dst": 17764 },
{ "src": 45300, "type": "customer", "dst": 131746 },
{ "src": 45300, "type": "customer", "dst": 38753 },
{ "src": 45300, "type": "customer", "dst": 45699 },
{ "src": 45300, "type": "customer", "dst": 9228 },
{ "src": 45302, "type": "customer", "dst": 46049 },
{ "src": 45302, "type": "customer", "dst": 58492 },
{ "src": 45305, "type": "customer", "dst": 132672 },
{ "src": 45305, "type": "customer", "dst": 55688 },
{ "src": 45305, "type": "customer", "dst": 59148 },
{ "src": 45346, "type": "customer", "dst": 55361 },
{ "src": 45346, "type": "customer", "dst": 56008 },
{ "src": 45400, "type": "customer", "dst": 10043 },
{ "src": 45400, "type": "customer", "dst": 10051 },
{ "src": 45400, "type": "customer", "dst": 38432 },
{ "src": 45400, "type": "customer", "dst": 45986 },
{ "src": 45400, "type": "customer", "dst": 45999 },
{ "src": 45400, "type": "customer", "dst": 55603 },
{ "src": 45400, "type": "customer", "dst": 9773 },
{ "src": 45425, "type": "customer", "dst": 17462 },
{ "src": 45425, "type": "customer", "dst": 24238 },
{ "src": 45425, "type": "customer", "dst": 56225 },
{ "src": 45699, "type": "customer", "dst": 46048 },
{ "src": 45820, "type": "customer", "dst": 10029 },
{ "src": 45820, "type": "customer", "dst": 131215 },
{ "src": 45820, "type": "customer", "dst": 132961 },
{ "src": 45820, "type": "customer", "dst": 133247 },
{ "src": 45820, "type": "customer", "dst": 17762 },
{ "src": 45820, "type": "customer", "dst": 18207 },
{ "src": 45820, "type": "customer", "dst": 55782 },
{ "src": 45820, "type": "customer", "dst": 58457 },
{ "src": 45820, "type": "customer", "dst": 58976 },
{ "src": 45820, "type": "customer", "dst": 9836 },
{ "src": 45896, "type": "customer", "dst": 131127 },
{ "src": 45896, "type": "customer", "dst": 131403 },
{ "src": 45896, "type": "customer", "dst": 24173 },
{ "src": 45896, "type": "peer", "dst": 45903 },
{ "src": 45896, "type": "customer", "dst": 56147 },
{ "src": 45896, "type": "customer", "dst": 7643 },
{ "src": 45899, "type": "customer", "dst": 131408 },
{ "src": 45899, "type": "customer", "dst": 38235 },
{ "src": 45899, "type": "customer", "dst": 55311 },
{ "src": 45899, "type": "customer", "dst": 7643 },
{ "src": 4589, "type": "peer", "dst": 11643 },
{ "src": 4589, "type": "peer", "dst": 11798 },
{ "src": 4589, "type": "peer", "dst": 12389 },
{ "src": 4589, "type": "peer", "dst": 12552 },
{ "src": 4589, "type": "peer", "dst": 12715 },
{ "src": 4589, "type": "peer", "dst": 12874 },
{ "src": 4589, "type": "peer", "dst": 12989 },
{ "src": 4589, "type": "peer", "dst": 13030 },
{ "src": 4589, "type": "peer", "dst": 13127 },
{ "src": 4589, "type": "peer", "dst": 13237 },
{ "src": 4589, "type": "peer", "dst": 14610 },
{ "src": 4589, "type": "peer", "dst": 15290 },
{ "src": 4589, "type": "peer", "dst": 15412 },
{ "src": 4589, "type": "peer", "dst": 15576 },
{ "src": 4589, "type": "peer", "dst": 15623 },
{ "src": 4589, "type": "peer", "dst": 15720 },
{ "src": 4589, "type": "peer", "dst": 15772 },
{ "src": 4589, "type": "peer", "dst": 15830 },
{ "src": 4589, "type": "peer", "dst": 15933 },
{ "src": 4589, "type": "peer", "dst": 16150 },
{ "src": 4589, "type": "peer", "dst": 16265 },
{ "src": 4589, "type": "peer", "dst": 19151 },
{ "src": 4589, "type": "peer", "dst": 196844 },
{ "src": 4589, "type": "customer", "dst": 20464 },
{ "src": 4589, "type": "peer", "dst": 20562 },
{ "src": 4589, "type": "peer", "dst": 20633 },
{ "src": 4589, "type": "peer", "dst": 20764 },
{ "src": 4589, "type": "peer", "dst": 20804 },
{ "src": 4589, "type": "peer", "dst": 20940 }
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment