From 317ab64e96641f6c44f6eb85fd3c16e1a86d6b0a Mon Sep 17 00:00:00 2001 From: Ben Date: Wed, 11 Mar 2020 17:19:03 -0400 Subject: [PATCH 01/48] Replace themes toggle with radio buttons --- _locales/en/messages.json | 13 +++- .../panel/icon-information-tooltip-blue.svg | 6 ++ .../components/BuildingBlocks/RadioButton.jsx | 46 +++++++++++ .../BuildingBlocks/RadioButtonGroup.jsx | 74 ++++++++++++++++++ app/panel/components/BuildingBlocks/index.js | 4 + app/panel/components/Subscription.jsx | 12 +-- .../Subscription/SubscriptionInfo.jsx | 2 +- .../Subscription/SubscriptionThemes.jsx | 78 +++++++++++++------ app/scss/panel.scss | 2 +- app/scss/partials/_radio_button.scss | 43 ++++++++++ app/scss/partials/_settings.scss | 12 ++- app/scss/partials/_subscribe.scss | 13 ++-- 12 files changed, 258 insertions(+), 47 deletions(-) create mode 100644 app/images/panel/icon-information-tooltip-blue.svg create mode 100644 app/panel/components/BuildingBlocks/RadioButton.jsx create mode 100644 app/panel/components/BuildingBlocks/RadioButtonGroup.jsx create mode 100644 app/scss/partials/_radio_button.scss diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 4a850e047..b43070477 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -1822,8 +1822,17 @@ "subscribe_pitch_sign_in": { "message": "Already subscribed? Sign in" }, - "subscription_midnight_theme": { - "message": "Midnight Theme" + "subscription_default_theme": { + "message": "Default" + }, + "subscription_dark_blue_theme": { + "message": "Dark Blue Theme" + }, + "subscription_palm_theme": { + "message": "Palm Theme" + }, + "subscription_leaf_theme": { + "message": "Leaf Theme" }, "subscription_status": { "message": "Status" diff --git a/app/images/panel/icon-information-tooltip-blue.svg b/app/images/panel/icon-information-tooltip-blue.svg new file mode 100644 index 000000000..2b277cf22 --- /dev/null +++ b/app/images/panel/icon-information-tooltip-blue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/app/panel/components/BuildingBlocks/RadioButton.jsx b/app/panel/components/BuildingBlocks/RadioButton.jsx new file mode 100644 index 000000000..d8205a983 --- /dev/null +++ b/app/panel/components/BuildingBlocks/RadioButton.jsx @@ -0,0 +1,46 @@ +/** + * Radio Button Component + * + * Ghostery Browser Extension + * https://www.ghostery.com/ + * + * Copyright 2019 Ghostery, Inc. All rights reserved. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0 + */ + +/* eslint jsx-a11y/label-has-associated-control: 0 */ + +import React from 'react'; +import PropTypes from 'prop-types'; +import ClassNames from 'classnames'; + +/** + * @class Implements a single radio button to be used inside the RadioButtonGroup component + * @memberof PanelBuildingBlocks + */ + +const RadioButton = (props) => { + const OuterCircleClassNames = ClassNames('RadioButton__outerCircle', { + checked: props.checked, + }); + const InnerCircleClassNames = ClassNames('RadioButton__innerCircle', { + checked: props.checked, + }); + return ( + + + + + + ); +}; + +// PropTypes ensure we pass required props of the correct type +RadioButton.propTypes = { + handleClick: PropTypes.func.isRequired, +}; + +export default RadioButton; diff --git a/app/panel/components/BuildingBlocks/RadioButtonGroup.jsx b/app/panel/components/BuildingBlocks/RadioButtonGroup.jsx new file mode 100644 index 000000000..b49d84497 --- /dev/null +++ b/app/panel/components/BuildingBlocks/RadioButtonGroup.jsx @@ -0,0 +1,74 @@ +/** + * Radio Button Group Component + * + * Ghostery Browser Extension + * https://www.ghostery.com/ + * + * Copyright 2019 Ghostery, Inc. All rights reserved. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0 + */ + +/* eslint jsx-a11y/label-has-associated-control: 0 */ + +import React from 'react'; +import PropTypes from 'prop-types'; +import RadioButton from './RadioButton'; + +/** + * @class Implements a radio button group + * @memberof PanelBuildingBlocks + */ +class RadioButtonGroup extends React.Component { + constructor(props) { + super(props); + this.state = { + buttons: [] + }; + } + + componentDidMount() { + const buttons = new Array(this.props.items.length).fill(false); + buttons[this.props.selectedIndex] = true; + this.setState({ buttons }); + } + + handleClick(indexClicked) { + const { buttons } = this.state; + const updatedButtons = buttons.map((button, index) => (index === indexClicked)); + this.setState({ buttons: updatedButtons }); + this.props.handleItemClick(indexClicked); + } + + /** + * React's required render function. Returns JSX + * @return {JSX} JSX for rendering the Toggle Slider used throughout the extension + */ + render() { + const { buttons } = this.state; + return ( + this.props.items.map((item, index) => ( +
+ + {t(item.text)} + +
+ this.handleClick(index)} /> +
+
+ )) + ); + } +} + +// PropTypes ensure we pass required props of the correct type +RadioButtonGroup.propTypes = { + items: PropTypes.arrayOf(PropTypes.object).isRequired, // Number of objects in array is the number of radio buttons + handleItemClick: PropTypes.func.isRequired, + selectedIndex: PropTypes.number.isRequired +}; + + +export default RadioButtonGroup; diff --git a/app/panel/components/BuildingBlocks/index.js b/app/panel/components/BuildingBlocks/index.js index edc925cbc..8f73d6052 100644 --- a/app/panel/components/BuildingBlocks/index.js +++ b/app/panel/components/BuildingBlocks/index.js @@ -21,6 +21,8 @@ import GhosteryFeature from './GhosteryFeature'; import NotScanned from './NotScanned'; import PauseButton from './PauseButton'; import ToggleSlider from './ToggleSlider'; +import RadioButtonGroup from './RadioButtonGroup'; +import RadioButton from './RadioButton'; import ModalExitButton from './ModalExitButton'; export { @@ -31,5 +33,7 @@ export { NotScanned, PauseButton, ToggleSlider, + RadioButtonGroup, + RadioButton, ModalExitButton }; diff --git a/app/panel/components/Subscription.jsx b/app/panel/components/Subscription.jsx index 004e5d9ab..d39afad65 100644 --- a/app/panel/components/Subscription.jsx +++ b/app/panel/components/Subscription.jsx @@ -28,7 +28,9 @@ import PrioritySupport from './Subscription/PrioritySupport'; class Subscription extends React.Component { constructor(props) { super(props); - this.state = { isChecked: (props.current_theme !== 'default') }; + this.state = { + theme: this.props.current_theme + }; } /** @@ -75,10 +77,8 @@ class Subscription extends React.Component { return { loading: true }; } - toggleThemes = () => { - const newChecked = !this.state.isChecked; - this.setState({ isChecked: newChecked }); - const updated_theme = newChecked ? 'midnight-theme' : 'default'; + changeTheme = (updated_theme) => { + this.setState({ theme: updated_theme }); this.props.actions.getTheme(updated_theme).then(() => { sendMessage('ping', 'theme_change'); }); @@ -86,7 +86,7 @@ class Subscription extends React.Component { SubscriptionInfoComponent = () => (); - SubscriptionThemesComponent = () => (); + SubscriptionThemesComponent = () => (); PrioritySupportComponent = () => (); diff --git a/app/panel/components/Subscription/SubscriptionInfo.jsx b/app/panel/components/Subscription/SubscriptionInfo.jsx index 93c1161a4..8d115b17b 100644 --- a/app/panel/components/Subscription/SubscriptionInfo.jsx +++ b/app/panel/components/Subscription/SubscriptionInfo.jsx @@ -74,7 +74,7 @@ const SubscriptionInfo = (props) => {
    -
  • {t('subscription_midnight_theme')}
  • +
  • {t('subscription_dark_blue_theme')}
  • {t('historical_stats')}
  • {t('priority_support')}
diff --git a/app/panel/components/Subscription/SubscriptionThemes.jsx b/app/panel/components/Subscription/SubscriptionThemes.jsx index 3a00f0282..4703300a0 100644 --- a/app/panel/components/Subscription/SubscriptionThemes.jsx +++ b/app/panel/components/Subscription/SubscriptionThemes.jsx @@ -12,36 +12,68 @@ */ import React from 'react'; -import { ToggleSlider } from '../BuildingBlocks'; +import PropTypes from 'prop-types'; +import { RadioButtonGroup } from '../BuildingBlocks'; /** * @class Implement Themes subview as a React component. * The view opens from the left-side menu of the main Subscription view. - * It allows to switch between available Ghostery themes. Right now it handles just one theme. Hence - slider. + * It allows to switch between available Ghostery themes. * @memberOf SettingsComponents - */ -const SubscriptionThemes = props => ( -
-
-
-

{ t('subscription_themes_title') }

-
- - - {t('subscription_midnight_theme')} - - -
- -
+*/ +const SubscriptionThemes = (props) => { + const themes = [ + { + name: 'default', + text: 'subscription_default_theme', + }, + { + name: 'midnight-theme', + text: 'subscription_dark_blue_theme', + }, + { + name: 'palm', + text: 'subscription_palm_theme', + }, + { + name: 'leaf', + text: 'subscription_leaf_theme', + } + ]; + + const getSelectedIndex = () => { + const index = themes.findIndex(theme => theme.name === props.theme); + return index; + }; + + const handleThemeClick = (index) => { + const theme = themes[index]; + props.changeTheme(theme.name); + }; + + return ( +
+
+
+

{t('subscription_themes_title')}

+ + +
-
-); + ); +}; + +// PropTypes ensure we pass required props of the correct type +SubscriptionThemes.propTypes = { + changeTheme: PropTypes.func.isRequired, + theme: PropTypes.string.isRequired, +}; + export default SubscriptionThemes; diff --git a/app/scss/panel.scss b/app/scss/panel.scss index eaef66ef7..2e9ea3432 100644 --- a/app/scss/panel.scss +++ b/app/scss/panel.scss @@ -8,7 +8,6 @@ * https://www.ghostery.com/ * * Copyright 2019 Ghostery, Inc. All rights reserved. - * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0 @@ -65,6 +64,7 @@ html body { @import './partials/_account'; @import './partials/_drawer'; @import './partials/_toggle_slider'; +@import './partials/_radio_button'; @import './partials/_pause_button'; @import './partials/_donut_graph'; @import './partials/_ghostery_feature'; diff --git a/app/scss/partials/_radio_button.scss b/app/scss/partials/_radio_button.scss new file mode 100644 index 000000000..c34420731 --- /dev/null +++ b/app/scss/partials/_radio_button.scss @@ -0,0 +1,43 @@ +/** + * Radio Button Sass + * + * Ghostery Browser Extension + * https://www.ghostery.com/ + * + * Copyright 2019 Ghostery, Inc. All rights reserved. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0 + */ + +.RadioButtonGroup__label { + margin-right: 10px !important; + font-weight: bolder; +} +.RadioButtonGroup__container { + margin: 16px 0; + width: 138px; +} +.RadioButton__innerCircle { + &.checked { + height: 8px; + width: 8px; + background-color: #2092bf; + border-radius: 50%; + border: 1px solid #2092bf; + } +} +.RadioButton__outerCircle { + position: relative; + border: 1px solid #4a4a4a; + height: 14px; + width: 14px; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + &.checked { + border: 2px solid #2092bf; + } +} diff --git a/app/scss/partials/_settings.scss b/app/scss/partials/_settings.scss index dccf04282..96981e5aa 100644 --- a/app/scss/partials/_settings.scss +++ b/app/scss/partials/_settings.scss @@ -5,7 +5,7 @@ * https://www.ghostery.com/ * * Copyright 2019 Ghostery, Inc. All rights reserved. - * + * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0 @@ -58,7 +58,6 @@ text-align: left; } } - .s-tab-title { font-weight: 400; font-size: 18px; @@ -195,12 +194,11 @@ line-height: 1.4; } img.s-question { - top: -5px; - width: 14px; + width: 16px; height: auto; cursor: default; - vertical-align: top; opacity: 1.0; + margin: -6px 0 0 10px; } .s-option-group { margin-bottom: 12px; @@ -279,7 +277,7 @@ border-color: #CCCCCC; background-size: 8px 5px; -moz-appearance: none; - -webkit-appearance:none; + -webkit-appearance: none; } } #select-file { @@ -458,4 +456,4 @@ .blocking-trackers { margin-left: 25px; } -} \ No newline at end of file +} diff --git a/app/scss/partials/_subscribe.scss b/app/scss/partials/_subscribe.scss index 11e7375e4..c771b102d 100644 --- a/app/scss/partials/_subscribe.scss +++ b/app/scss/partials/_subscribe.scss @@ -83,17 +83,16 @@ -webkit-font-smoothing: antialiased; text-align: left; } - .themes-slider-label { - @extend .field-label; - padding-right: 20px !important; - } - .themes-slider-container { - padding-top: 10px !important; - } .column-subscription { padding-left: 30px !important; padding-right: 30px !important; } + .subscription-title { + display: inline; + } + .tooltip-icon { + margin-left: 5px !important; + } .status-label { @extend .field-label; padding-right: 7px !important; From f050b8391b14338fff2f3f79c636ad4dff5d31c1 Mon Sep 17 00:00:00 2001 From: Ben Date: Wed, 11 Mar 2020 17:59:14 -0400 Subject: [PATCH 02/48] Center inner circle in radio buttons --- .../BuildingBlocks/RadioButtonGroup.jsx | 2 +- app/scss/partials/_radio_button.scss | 24 +++++++++---------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/app/panel/components/BuildingBlocks/RadioButtonGroup.jsx b/app/panel/components/BuildingBlocks/RadioButtonGroup.jsx index b49d84497..ba0638e34 100644 --- a/app/panel/components/BuildingBlocks/RadioButtonGroup.jsx +++ b/app/panel/components/BuildingBlocks/RadioButtonGroup.jsx @@ -50,7 +50,7 @@ class RadioButtonGroup extends React.Component { const { buttons } = this.state; return ( this.props.items.map((item, index) => ( -
+
{t(item.text)} diff --git a/app/scss/partials/_radio_button.scss b/app/scss/partials/_radio_button.scss index c34420731..21b8dfc54 100644 --- a/app/scss/partials/_radio_button.scss +++ b/app/scss/partials/_radio_button.scss @@ -19,25 +19,25 @@ margin: 16px 0; width: 138px; } -.RadioButton__innerCircle { - &.checked { - height: 8px; - width: 8px; - background-color: #2092bf; - border-radius: 50%; - border: 1px solid #2092bf; - } -} .RadioButton__outerCircle { - position: relative; border: 1px solid #4a4a4a; - height: 14px; - width: 14px; + height: 16px; + width: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; + box-sizing: border-box; &.checked { border: 2px solid #2092bf; } } +.RadioButton__innerCircle { + &.checked { + height: 8px; + width: 8px; + background-color: #2092bf; + border-radius: 50%; + border: 1px solid #2092bf; + } +} From f9b154628d18d30ee46099f397b0340b30a0cf74 Mon Sep 17 00:00:00 2001 From: Ben Date: Thu, 12 Mar 2020 12:42:58 -0400 Subject: [PATCH 03/48] Remove console error --- app/panel/components/BuildingBlocks/RadioButtonGroup.jsx | 4 ++-- app/scss/panel.scss | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app/panel/components/BuildingBlocks/RadioButtonGroup.jsx b/app/panel/components/BuildingBlocks/RadioButtonGroup.jsx index ba0638e34..866488009 100644 --- a/app/panel/components/BuildingBlocks/RadioButtonGroup.jsx +++ b/app/panel/components/BuildingBlocks/RadioButtonGroup.jsx @@ -50,12 +50,12 @@ class RadioButtonGroup extends React.Component { const { buttons } = this.state; return ( this.props.items.map((item, index) => ( -
+
{t(item.text)}
- this.handleClick(index)} /> + this.handleClick(index)} />
)) diff --git a/app/scss/panel.scss b/app/scss/panel.scss index 2e9ea3432..cb9ea1ca0 100644 --- a/app/scss/panel.scss +++ b/app/scss/panel.scss @@ -8,6 +8,7 @@ * https://www.ghostery.com/ * * Copyright 2019 Ghostery, Inc. All rights reserved. + * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0 From a9a12aa37fdbf203be637e1264e95d2196cdebef Mon Sep 17 00:00:00 2001 From: Ben Date: Wed, 18 Mar 2020 12:06:10 -0400 Subject: [PATCH 04/48] Testing switching between themes --- app/panel/components/Login.jsx | 1 + app/panel/components/Subscription.jsx | 1 + .../Subscription/SubscriptionThemes.jsx | 2 +- app/panel/components/Summary.jsx | 58 +-- app/panel/utils/utils.js | 4 + app/scss/panel.scss | 1 + app/scss/themes/theme.scss | 406 ++++++++++++++++++ 7 files changed, 445 insertions(+), 28 deletions(-) create mode 100644 app/scss/themes/theme.scss diff --git a/app/panel/components/Login.jsx b/app/panel/components/Login.jsx index 6d793515c..a3d3ead01 100644 --- a/app/panel/components/Login.jsx +++ b/app/panel/components/Login.jsx @@ -68,6 +68,7 @@ class Login extends React.Component { this.props.actions.getUserSettings(), ]) .then((res) => { + console.log('res: ', res); const { current_theme = 'default' } = res[1]; return this.props.actions.getTheme(current_theme); }) diff --git a/app/panel/components/Subscription.jsx b/app/panel/components/Subscription.jsx index d39afad65..1c2da4d1e 100644 --- a/app/panel/components/Subscription.jsx +++ b/app/panel/components/Subscription.jsx @@ -80,6 +80,7 @@ class Subscription extends React.Component { changeTheme = (updated_theme) => { this.setState({ theme: updated_theme }); this.props.actions.getTheme(updated_theme).then(() => { + console.log('updated theme: ', updated_theme); sendMessage('ping', 'theme_change'); }); } diff --git a/app/panel/components/Subscription/SubscriptionThemes.jsx b/app/panel/components/Subscription/SubscriptionThemes.jsx index 4703300a0..974339ae6 100644 --- a/app/panel/components/Subscription/SubscriptionThemes.jsx +++ b/app/panel/components/Subscription/SubscriptionThemes.jsx @@ -32,7 +32,7 @@ const SubscriptionThemes = (props) => { text: 'subscription_dark_blue_theme', }, { - name: 'palm', + name: 'palm-theme', text: 'subscription_palm_theme', }, { diff --git a/app/panel/components/Summary.jsx b/app/panel/components/Summary.jsx index cb5a679a5..7a3481dd4 100644 --- a/app/panel/components/Summary.jsx +++ b/app/panel/components/Summary.jsx @@ -269,7 +269,7 @@ class Summary extends React.Component { pageLatency = unfixedLatency.toFixed(2); } this.setState({ trackerLatencyTotal: pageLatency }); - // reset page load value if page is reloaded while panel is open + // reset page load value if page is reloaded while panel is open } else if (this.props.performanceData && !performanceData) { this.setState({ trackerLatencyTotal: pageLatency }); } @@ -790,36 +790,40 @@ class Summary extends React.Component { return (
- {!isCondensed && disableBlocking && ()} - {!isCondensed && !disableBlocking && this._renderDonut()} - {!isCondensed && !disableBlocking && this._renderPageHostReadout()} - - {isCondensed && !disableBlocking && this._renderTotalTrackersFound()} + {/* Case on theme.props here */} +
+
+ {!isCondensed && disableBlocking && ()} + {!isCondensed && !disableBlocking && this._renderDonut()} + {!isCondensed && !disableBlocking && this._renderPageHostReadout()} + + {isCondensed && !disableBlocking && this._renderTotalTrackersFound()} + +
+ {!disableBlocking && this._renderTotalTrackersBlocked()} + {!disableBlocking && this._renderTotalRequestsModified()} + {!disableBlocking && this._renderPageLoadTime()} +
-
- {!disableBlocking && this._renderTotalTrackersBlocked()} - {!disableBlocking && this._renderTotalRequestsModified()} - {!disableBlocking && this._renderPageLoadTime()} -
+ {isCondensed && disableBlocking && ( +
+ )} - {isCondensed && disableBlocking && ( -
- )} +
+ {this._renderGhosteryFeature('trust')} + {this._renderGhosteryFeature('restrict', 'Summary__ghosteryFeatureContainer--middle')} + {this._renderPauseButton()} +
+
+ {this._renderCliqzAntiTracking()} + {this._renderCliqzAdBlock()} + {this._renderCliqzSmartBlock()} +
+ {this._renderStatsNavicon()} + {enable_offers && this._renderRewardsNavicon()} -
- {this._renderGhosteryFeature('trust')} - {this._renderGhosteryFeature('restrict', 'Summary__ghosteryFeatureContainer--middle')} - {this._renderPauseButton()} + {!isCondensed && this._renderPlusUpgradeBannerOrSubscriberIcon()}
-
- {this._renderCliqzAntiTracking()} - {this._renderCliqzAdBlock()} - {this._renderCliqzSmartBlock()} -
- {this._renderStatsNavicon()} - {enable_offers && this._renderRewardsNavicon()} - - {!isCondensed && this._renderPlusUpgradeBannerOrSubscriberIcon()}
); } diff --git a/app/panel/utils/utils.js b/app/panel/utils/utils.js index a92dde970..1b140fa23 100644 --- a/app/panel/utils/utils.js +++ b/app/panel/utils/utils.js @@ -225,10 +225,14 @@ export function setTheme(doc, name, account) { } } + console.log('setting theme...'); if (name !== 'default') { + console.log('name != default'); if (!account) { return; } + console.log('account is initialized', account); const { themeData } = account; if (!themeData) { return; } + console.log('themeData is initialized', themeData); const { css } = themeData[name]; // Create element for the theme being set, if it is not there diff --git a/app/scss/panel.scss b/app/scss/panel.scss index cb9ea1ca0..21ab2f760 100644 --- a/app/scss/panel.scss +++ b/app/scss/panel.scss @@ -77,6 +77,7 @@ html body { @import './partials/_stats_graph'; @import './partials/_modal_exit_button'; @import './partials/insights_promo_modal.scss'; +// @import './themes/theme.scss'; // Imports from ../shared-components directory @import '../shared-components/Modal/Modal.scss'; diff --git a/app/scss/themes/theme.scss b/app/scss/themes/theme.scss new file mode 100644 index 000000000..1a2a3367b --- /dev/null +++ b/app/scss/themes/theme.scss @@ -0,0 +1,406 @@ +/** + * Ghostery Sass Importer + * + * Select the SASS partials to be compiled for this project. SASS files + * are compiled and included in the order they are listed. + * + * Ghostery Browser Extension + * https://www.ghostery.com/ + * + * Copyright 2018 Ghostery, Inc. All rights reserved. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0 + */ + +// This stylesheet contains multiple sets of styles for the same components +// This is necessary because +// * the extension CSS for those components was refactored after this stylesheet was first created +// * multiple extension versions may be in production at the same time depending on browser-specific issues / approval processes + +$background: #124559; +$summary_text: #FFFFFF; +$enabled_feature: #EFF6E0; +$bright_enabled_feature: #F7FAEF; +$paled_enabled_feature: #819D9C; +$disabled_feature: #70888F; +$paled_disabled_feature: #A9B8BC; +$bright_disabled_feature: #BDC8CB; +$caption: #F7F7F7; +$tab_inactive: #B6C4CA; + +// Colors +$palm_green: #2c5114; +$off_green_palm_green: #456431; + +// Theme framework variables +$enabled_feature: #87f0fb; +$tab_inactive: #456431; +$tab_active: #313930; +$tracker-list: #172a0b; + +// Function helper with color variables +@function url-friendly-colour($color) { + @return '%23' + str-slice('#{$color}', 2, -1) +} + +// Used in Cliqz Features +@function buildIconAntiTracking($stroke-color) { + @return url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cg%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3Ccircle%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2223%22/%3E%3Cpath%20d%3D%22M25.213%2015.032a.721.721%200%200%200-.426%200l-9.149%202.427a.82.82%200%200%200-.638.809c.043%206.514%203.532%2012.56%209.532%2016.604A.859.859%200%200%200%2025%2035c.17%200%20.34-.043.468-.128%206-4.045%209.49-10.09%209.532-16.604a.82.82%200%200%200-.638-.81l-9.15-2.426z%22/%3E%3C/g%3E%3C/svg%3E'); +} + +// Used in Cliqz Features +@function buildIconAdBlocking($stroke-color) { + @return url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cg%3E%3Ccircle%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2223%22/%3E%3Cpath%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20fill-rule%3D%22nonzero%22%20transform%3D%22translate%2814%2C14%29%22%20d%3D%22M14.873%201.312l-7.973.07-5.588%205.686.07%207.973%205.686%205.589%207.973-.07%205.589-5.687-.07-7.973-5.687-5.588z%22/%3E%3Cpath%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%222%22%20d%3D%22M31.5%2C18.5%20L18.5%2C31.5%22/%3E%3C/g%3E%3C/svg%3E'); +} + +// Used in Cliqz Features +@function buildIconSmartBlocking($stroke-color) { + @return url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Ccircle%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2223%22/%3E%3Cpath%20fill%3D%22#{url-friendly-colour($stroke-color)}%22%20d%3D%22M31.977%2020.24c-.097%201.677-.697%203.156-1.654%204.514-.43.61-.867%201.217-1.285%201.84-.597.887-1.074%201.832-1.258%202.898-.03.175-.141.162-.263.162l-2.525-.001c-.832%200-1.663-.005-2.497.003-.181.002-.246-.05-.283-.238-.197-1.031-.657-1.954-1.241-2.818-.497-.733-1.015-1.454-1.514-2.187A8.257%208.257%200%200%201%2018.011%2020c-.112-2.82%201.486-5.279%204.185-6.42%203.458-1.462%207.547.004%209.166%203.293.521%201.062.682%202.19.615%203.365zM22.352%2032.3v-.63h5.305v.63h-5.305zm4.76%202.681h-4.216c-.508%200-.602-.108-.536-.653h5.28c.075.537-.022.653-.529.653zm6.238-18.576c-1.449-3.169-3.966-4.928-7.385-5.335-2.913-.348-5.446.61-7.511%202.673-2.305%202.306-2.858%205.124-2.19%208.241.351%201.63%201.149%203.046%202.104%204.39.438.617.869%201.243%201.271%201.883.372.593.635%201.241.661%201.946.03.814.008%201.627.008%202.441h.032c0%20.676-.001%201.351.002%202.027.006%201.204.952%202.22%202.15%202.3.158.01.21.056.25.214a2.322%202.322%200%200%200%204.524-.007c.034-.14.072-.194.225-.206a2.329%202.329%200%200%200%202.174-2.337c0-1.257.01-2.515-.003-3.774-.011-.941.208-1.816.706-2.61.402-.64.832-1.268%201.274-1.88%201.263-1.757%202.155-3.653%202.323-5.844.109-1.423-.018-2.816-.615-4.122z%22/%3E%3Cpath%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%221.5%22%20fill%3D%22none%22%20d%3D%22M25.096%2018.214a.324.324%200%200%200-.192%200l-4.117%201.092a.37.37%200%200%200-.287.364c.02%202.932%201.59%205.652%204.29%207.472a.387.387%200%200%200%20.21.058c.077%200%20.153-.02.21-.058%202.7-1.82%204.27-4.54%204.29-7.472a.37.37%200%200%200-.287-.364l-4.117-1.092z%22/%3E%3C/svg%3E'); +} + +// Used in Cliqz Features +@function buildIconDash($stroke-color) { + @return url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%2210%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%223%22%20d%3D%22M1%205h8%22/%3E%3C/svg%3E'); +} + +// Left caret SVG +@function buildLeftCaret($color) { + @return url('data:image/svg+xml;charset%3dUS-ASCII,%3Csvg%20width%3D%226%22%20height%3D%2210%22%20xmlns%3D%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1.845%205l4.052-3.938A.313.313%200%200%200%206%20.832a.312.312%200%200%200-.103-.23L5.381.1a.33.33%200%200%200-.474%200L.103%204.77A.313.313%200%200%200%200%205c0%20.087.034.164.103.23L4.907%209.9a.33.33%200%200%200%20.474%200l.516-.501A.313.313%200%200%200%206%209.169a.313.313%200%200%200-.103-.231L1.845%205z%22%20fill%3D%22#{_url-friendly-color($color)}%22%20fill-rule%3D%22evenodd%22/%3E%3C/svg%3E'); +} + +// Right caret SVG +@function buildRightCaret($color) { + @return url('data:image/svg+xml;charset%3dUS-ASCII,%3Csvg%20width%3D%226%22%20height%3D%2210%22%20xmlns%3D%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M4.155%205L.103%201.062A.313.313%200%200%201%200%20.832C0%20.745.034.668.103.602L.619.1a.33.33%200%200%201%20.474%200l4.804%204.67A.313.313%200%200%201%206%205a.313.313%200%200%201-.103.23L1.093%209.9a.33.33%200%200%201-.474%200l-.516-.501A.313.313%200%200%201%200%209.169c0-.087.034-.164.103-.231L4.155%205z%22%20fill%3D%22#{_url-friendly-color($color)}%22%20fill-rule%3D%22evenodd%22/%3E%3C/svg%3E'); +} + +// This BEM-style CSS is compatible with extension versions 8.4.0 and higher +.Summary { + background-color: $background; + + .sub-component.not-scanned { + .not-scanned-header { + color: $summary_text; + } + .not-scanned-text { + color: $summary_text; + } + } +} + +.Summary--condensed { + background-color: $background; + + .Summary__totalTrackerCountContainer { + color: $summary_text; + } +} + +.Summary__statsNavicon.Summary__statsNavicon--absolutely-positioned, +.Summary__rewardsNavicon.Summary__rewardsNavicon--absolutely-positioned { + background-color: #F7F8FB; + + path { + fill: $palm-green; + stroke: $palm-green; + } +} + +.SummaryPageHost { + color: $summary_text; +} + +.SummaryPageStat { + color: $summary_text; +} + +.DonutGraph__textCountContainer { + color: $summary_text; +} + +.CliqzFeature--inactive.clickable { + .CliqzFeature__status { color: $disabled_feature }; + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($disabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($disabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($disabled_feature) }; + .CliqzFeature__feature-name { color: $disabled_feature }; + + &:hover { + .CliqzFeature__status { color: $bright_disabled_feature; } + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($bright_disabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($bright_disabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($bright_disabled_feature) }; + .CliqzFeature__feature-name { color: $bright_disabled_feature; } + } +} + +.CliqzFeature--active.clickable { + .CliqzFeature__status { color: $enabled_feature }; + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($enabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($enabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($enabled_feature) }; + .CliqzFeature__feature-name { color: $enabled_feature }; + + &:hover { + .CliqzFeature__status { color: $bright_enabled_feature; } + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($bright_enabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($bright_enabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($bright_enabled_feature) }; + .CliqzFeature__feature-name { color: $bright_enabled_feature; } + } +} + +.CliqzFeature--inactive.not-clickable { + .CliqzFeature__status { color: $paled_disabled_feature }; + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($paled_disabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($paled_disabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($paled_disabled_feature) }; + .CliqzFeature__feature-name { color: $paled_disabled_feature }; +} + +.CliqzFeature--active.not-clickable { + .CliqzFeature__status { color: $paled_enabled_feature }; + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($paled_enabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($paled_enabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($paled_enabled_feature) }; + .CliqzFeature__feature-name { color: $paled_enabled_feature }; +} + +.blocking-category .sticky-category { + background-color: $tracker-list; + border: 1px solid $tracker-list; + border-bottom: 1px solid #FFF; +} + +.trackers-list { + background-color: $tracker-list; +} + +#content-detail { + border-left: 1px solid $tracker-list; +} + +.blocking-header > .row:first-of-type { + border-bottom: 2px solid $tracker-list; +} + +// This CSS is compatible with extension versions 8.3.4 and lower +#content-summary { + background-color: $background; + &.expert.condensed { + background-color: $background; + .total-tracker-count { + color: $summary_text; + } + } + + .page-host { + color: $summary_text; + } + .page-stats { + color: $summary_text; + } + + .sub-component.donut-graph .graph-text { + color: $summary_text; + } + + .sub-component.cliqz-features { + .count { + color: rgba($disabled_feature, 0); + background-image: buildIconDash($disabled_feature); + } + .active .count { + color: $enabled_feature; + background: none !important; + } + &.inactive .count { + color: rgba($paled_disabled_feature, 0); + background-image: buildIconDash($paled_disabled_feature); + } + &.inactive .active .count { + color: $paled_enabled_feature; + background: none !important; + } + + .anti-tracking .icon { background-image: buildIconAntiTracking($disabled_feature); } + .active.anti-tracking .icon { background-image: buildIconAntiTracking($enabled_feature); } + &.inactive .anti-tracking .icon { background-image: buildIconAntiTracking($paled_disabled_feature); } + &.inactive .active.anti-tracking .icon { background-image: buildIconAntiTracking($paled_enabled_feature); } + + .ad-blocking .icon { background-image: buildIconAdBlocking($disabled_feature); } + .active.ad-blocking .icon { background-image: buildIconAdBlocking($enabled_feature); } + &.inactive .ad-blocking .icon { background-image: buildIconAdBlocking($paled_disabled_feature); } + &.inactive .active.ad-blocking .icon { background-image: buildIconAdBlocking($paled_enabled_feature); } + + .smart-blocking .icon { background-image: buildIconSmartBlocking($disabled_feature); } + .active.smart-blocking .icon { background-image: buildIconSmartBlocking($enabled_feature); } + &.inactive .smart-blocking .icon { background-image: buildIconSmartBlocking($paled_disabled_feature); } + &.inactive .active.smart-blocking .icon { background-image: buildIconSmartBlocking($paled_enabled_feature); } + + .feature-name { + color: $disabled_feature; + } + .active .feature-name { color: $enabled_feature; } + &.inactive .feature-name { color: $paled_disabled_feature; } + &.inactive .active .feature-name { color: $paled_enabled_feature; } + + .cliqz-feature.clickable:hover { + &.anti-tracking .icon { background-image: buildIconAntiTracking($bright_disabled_feature); } + &.ad-blocking .icon { background-image: buildIconAdBlocking($bright_disabled_feature); } + &.smart-blocking .icon { background-image: buildIconSmartBlocking($bright_disabled_feature); } + .feature-name { color: $bright_disabled_feature; } + } + .cliqz-feature.active.clickable:hover { + .count { + color: $bright_enabled_feature; + } + &.anti-tracking .icon { background-image: buildIconAntiTracking($bright_enabled_feature); } + &.ad-blocking .icon { background-image: buildIconAdBlocking($bright_enabled_feature); } + &.smart-blocking .icon { background-image: buildIconSmartBlocking($bright_enabled_feature); } + .feature-name { color: $bright_enabled_feature; } + } + } + .sub-component.not-scanned { + .not-scanned-header { + color: $summary_text; + } + .not-scanned-text { + color: $summary_text; + } + } + .stats-button path { + fill: #FFF; + stroke: #FFF; + } +} + +// This CSS is compatible with all extension versions as of 8.4.1 +#ghostery-header { + .header-tab { + color: #FFF; + background-color: $tab_inactive; + &.active { + color: #FFF; + background-color: $tab_active; + } + &:last-of-type.active { + color: #FFF; + background-color: $tab_active; + } + } + .top-bar { + background-color: $palm_green; + color: $background; + .subscriber-badge { + path {fill: $background;} + path.text {fill: $caption;} + } + .header-logo { + .back-arrow { + path { + fill: $background; + } + } + .logo-icon { + path { + fill: #FFF; + } + svg > g > path:nth-child(3) { + fill: $background; + } + } + } + .header-kebab { + path { + fill: #FFF; + } + } + .profile-svg { + g > g { + fill: #124559; + stroke: #124559; + } + } + } +} + +#content-stats { + .stats-top-header { + .stats-top-header-icon.trackersSeen g { + fill: #124559; + } + .stats-top-header-icon.trackersBlocked path { + &:first-of-type { + fill: #FFF; + stroke: #FFF; + } + &:nth-of-type(2) { + stroke: #124559; + } + &:last-of-type { + fill: #124559; + } + } + .stats-top-header-icon.trackersAnonymized path { + stroke: #124559; + } + .stats-top-header-icon.adsBlocked path { + fill: #124559; + stroke: #124559; + } + } + .stats-top-header-reset { + color: #124559; + } + .tab-header { + background-color: #124559; + .tab-container > .tab { + background-color: #7f98a2; + } + } + .tile-container > .tile > .tile-value { + .tile-value-content { + color: #124559; + } + &.active > .active-underline { + background-color: #124559; + } + } + .modal-container { + .modal-hollow-button { + border: #124559 1px solid; + color: #124559; + } + .modal-filled-button { + border: #124559 1px solid; + background-color:#124559;; + } + } +} + +.line-graph-container { + #stats-back { + background-image: buildLeftCaret(#124559); + } + #stats-forward { + background-image: buildRightCaret(#124559); + } +} + +.opacityOverlay { + position: absolute; + top: 0; + left: 30px; + right: 30px; + bottom: 0; + background-color: grey; + opacity: .5; + + // Target all the elements and assign them z-indexes here +} + +.foreground { + z-index: 10; +} From fc614945debbaa743cdbc57201a90d346b5cf17e Mon Sep 17 00:00:00 2001 From: Ben Date: Wed, 18 Mar 2020 12:21:08 -0400 Subject: [PATCH 05/48] Add configuration that points to local account server --- src/classes/Account.js | 14 ++++++++------ src/classes/Globals.js | 4 ++-- src/utils/api.js | 2 +- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/src/classes/Account.js b/src/classes/Account.js index 61a427d7d..de0dc04ec 100644 --- a/src/classes/Account.js +++ b/src/classes/Account.js @@ -114,7 +114,7 @@ class Account { logout = () => ( new RSVP.Promise((resolve, reject) => { chrome.cookies.get({ - url: `https://${GHOSTERY_DOMAIN}.com`, + url: 'http://ghostery.test', name: 'csrf_token', }, (cookie) => { if (cookie === null) { return reject(); } @@ -204,10 +204,12 @@ class Account { }) .then((shouldGet) => { if (!shouldGet) { + console.log('conf.account.themeData ', conf.account.themeData); return conf.account.themeData[name].css; } return api.get('themes', `${name}.css`) .then((res) => { + console.log('res: ', res); const { css } = build(normalize(res), 'themes', res.data.id); this._setThemeData({ name, css }); return css; @@ -312,7 +314,7 @@ class Account { return; } chrome.cookies.get({ - url: `https://${GHOSTERY_DOMAIN}.com`, + url: 'http://ghostery.test', name: 'user_id', }, (cookie) => { if (cookie !== null) { @@ -402,8 +404,8 @@ class Account { chrome.cookies.set({ name, value, - url: `https://${GHOSTERY_DOMAIN}.com`, - domain: `.${GHOSTERY_DOMAIN}.com`, + url: 'http://ghostery.test', + domain: '.ghostery.test', expirationDate, secure: true, httpOnly, @@ -502,7 +504,7 @@ class Account { _getUserIDFromCookie = () => ( new Promise((resolve, reject) => { chrome.cookies.get({ - url: `https://${GHOSTERY_DOMAIN}.com`, + url: 'http://ghostery.test', name: 'user_id', }, (cookie) => { if (cookie) { @@ -541,7 +543,7 @@ class Account { const cookies = ['user_id', 'access_token', 'refresh_token', 'csrf_token', 'AUTH']; cookies.forEach((name) => { chrome.cookies.remove({ - url: `https://${GHOSTERY_DOMAIN}.com`, + url: 'http://ghostery.test', name, }, () => { log(`Removed cookie with name: ${name}`); diff --git a/src/classes/Globals.js b/src/classes/Globals.js index 900874ff8..4b068d903 100644 --- a/src/classes/Globals.js +++ b/src/classes/Globals.js @@ -56,8 +56,8 @@ class Globals { this.CDN_SUB_DOMAIN = this.DEBUG ? 'staging-cdn' : 'cdn'; this.APPS_SUB_DOMAIN = this.DEBUG ? 'staging-apps' : 'apps'; this.GCACHE_SUB_DOMAIN = this.DEBUG ? 'staging-gcache' : 'gcache'; - this.AUTH_SERVER = `https://consumerapi.${this.GHOSTERY_DOMAIN}.com`; - this.ACCOUNT_SERVER = `https://accountapi.${this.GHOSTERY_DOMAIN}.com`; + this.AUTH_SERVER = 'http://consumerapi.ghostery.test'; + this.ACCOUNT_SERVER = 'http://accountapi.ghostery.test'; // extension IDs this.GHOSTERY_TAB_CHROME_PRODUCTION_ID = 'plmapebanmikcofllaaddgeocahboejc'; diff --git a/src/utils/api.js b/src/utils/api.js index 661749145..c9e44d5d5 100644 --- a/src/utils/api.js +++ b/src/utils/api.js @@ -142,7 +142,7 @@ class Api { _getCsrfCookie = (csrfDomain = this.config.CSRF_DOMAIN) => ( new Promise((resolve) => { chrome.cookies.get({ - url: `https://${csrfDomain}.com`, + url: 'http://ghostery.test', name: 'csrf_token', }, cookie => resolve((cookie !== null) ? cookie.value : '')); }) From 05a37b3a8596009a6d502baa9332f8bd09a8d6b1 Mon Sep 17 00:00:00 2001 From: Serge Zarembsky Date: Thu, 19 Mar 2020 10:51:02 -0400 Subject: [PATCH 06/48] Initial checkin --- app/panel/actions/PanelActions.js | 1 + app/panel/components/Panel.jsx | 7 + .../Subscription/SubscriptionThemes.jsx | 1 + app/panel/reducers/panel.js | 2 + app/panel/utils/utils.js | 12 +- databases/bugs.json | 57019 +++++++++++++++- databases/click2play.json | 13 +- databases/compatibility.json | 13 +- databases/surrogates.json | 412 +- src/background.js | 5 +- src/classes/Account.js | 82 +- src/classes/Globals.js | 8 +- src/utils/api.js | 2 +- src/utils/utils.js | 2 +- webpack.config.js | 2 + 15 files changed, 57462 insertions(+), 119 deletions(-) diff --git a/app/panel/actions/PanelActions.js b/app/panel/actions/PanelActions.js index 9079120f0..172bfc956 100644 --- a/app/panel/actions/PanelActions.js +++ b/app/panel/actions/PanelActions.js @@ -87,6 +87,7 @@ export const getTheme = name => dispatch => ( sendMessageInPromise('setPanelData', { current_theme: name }) .then(() => sendMessageInPromise('account.getTheme')) .then((res) => { + console.log('GOT THEME', res); if (res) { dispatch({ type: SET_THEME, diff --git a/app/panel/components/Panel.jsx b/app/panel/components/Panel.jsx index c13fbb5da..3df0613f7 100644 --- a/app/panel/components/Panel.jsx +++ b/app/panel/components/Panel.jsx @@ -58,6 +58,12 @@ class Panel extends React.Component { }); } + shouldComponentUpdate(nextProps, nextState) { + console.log('COMPONENT DID UPDATE CALLED', nextProps, nextState); + this.forceUpdate(); + return false; + } + /** * Lifecycle event */ @@ -130,6 +136,7 @@ class Panel extends React.Component { const { panel, summary, blocking } = payload; const { current_theme, account } = panel; + console.log('INIT SET THEME', current_theme); setTheme(document, current_theme, account); this.props.actions.updatePanelData(panel); diff --git a/app/panel/components/Subscription/SubscriptionThemes.jsx b/app/panel/components/Subscription/SubscriptionThemes.jsx index 974339ae6..fc1085d61 100644 --- a/app/panel/components/Subscription/SubscriptionThemes.jsx +++ b/app/panel/components/Subscription/SubscriptionThemes.jsx @@ -48,6 +48,7 @@ const SubscriptionThemes = (props) => { const handleThemeClick = (index) => { const theme = themes[index]; + console.log('CLICK', index, themes, theme); props.changeTheme(theme.name); }; diff --git a/app/panel/reducers/panel.js b/app/panel/reducers/panel.js index 756db8c47..4f0caac69 100644 --- a/app/panel/reducers/panel.js +++ b/app/panel/reducers/panel.js @@ -77,10 +77,12 @@ export default (state = initialState, action) => { } case SET_THEME: { const { name, css } = action.data; + console.log('PANEL ACTION SET THEME', name, css); setTheme(document, name, { themeData: { [name]: { name, css } } }); return Object.assign({}, state, { current_theme: name }); } case CLEAR_THEME: { + console.log('CLEAR THEME IS CALLED'); setTheme(document, initialState.current_theme); return Object.assign({}, state, { current_theme: initialState.current_theme }); } diff --git a/app/panel/utils/utils.js b/app/panel/utils/utils.js index 1b140fa23..f7dc111e9 100644 --- a/app/panel/utils/utils.js +++ b/app/panel/utils/utils.js @@ -216,7 +216,7 @@ export function setTheme(doc, name, account) { // if themeName is 'default' all we have to do is to remove style element const styleTitlePrefix = 'Ghostery Theme'; // First remove all other style elements which may be there - const styleList = doc.head.getElementsByTagName('style'); + const styleList = doc.head.getElementsByTagName('link'); // Other kinds of loops are not supported equally across browsers for (let i = 0; i < styleList.length; i++) { const style = styleList[i]; @@ -236,12 +236,14 @@ export function setTheme(doc, name, account) { const { css } = themeData[name]; // Create element for the theme being set, if it is not there - const themeStyle = doc.createElement('style'); - themeStyle.id = name; + const themeStyle = doc.createElement('link'); + themeStyle.rel = 'stylesheet'; + themeStyle.media = 'screen'; + themeStyle.type = 'text/css'; themeStyle.title = `${styleTitlePrefix} ${name}`; // Set content of style element to the theme text. - themeStyle.textContent = css; - document.head.appendChild(themeStyle); + themeStyle.href = css; + doc.head.appendChild(themeStyle); } } diff --git a/databases/bugs.json b/databases/bugs.json index b89a0406a..5aabec3ae 100644 --- a/databases/bugs.json +++ b/databases/bugs.json @@ -1,79 +1,56996 @@ { + "copyright": "This proprietary database is the intellectual property of Ghostery, Inc. and is protected by copyright and other applicable laws. All rights to it are expressly reserved by Ghostery, Inc. You may not use this database or any portion thereof for any purpose that is not expressly granted in writing by Ghostery, Inc. All inquires should be sent to legal@ghostery.com. Ghostery, Inc. retains the sole discretion in determining whether or not to grant permission to use the database. Unauthorized use of this database, or any portion of it, will cause irreparable harm to Ghostery, Inc. and may result in legal proceedings against you, seeking monetary damages and an injunction against you, including the payment of legal fees and costs.", "apps": { - "1": { + "3": { + "name": "Clicky", + "cat": "site_analytics" + }, + "5": { + "name": "Statisfy", + "cat": "site_analytics" + }, + "6": { + "name": "Google Widgets", + "cat": "customer_interaction" + }, + "8": { + "name": "Twitter Badge", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "9": { + "name": "Microsoft Analytics", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "13": { + "name": "Google Analytics", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "15": { + "name": "MyBlogLog", + "cat": "social_media" + }, + "16": { + "name": "Quantcast", + "cat": "advertising" + }, + "17": { + "name": "SiteMeter", + "cat": "site_analytics" + }, + "18": { + "name": "sovrn (formerly Lijit Networks)", + "cat": "advertising" + }, + "19": { + "name": "Omniture (Adobe Analytics)", + "cat": "site_analytics" + }, + "20": { + "name": "Crazy Egg", + "cat": "site_analytics" + }, + "21": { + "name": "Snap", + "cat": "customer_interaction" + }, + "22": { + "name": "Statcounter", + "cat": "site_analytics" + }, + "23": { + "name": "Mint", + "cat": "customer_interaction", + "tags": [ + 3 + ] + }, + "24": { + "name": "Wordpress Stats", + "cat": "site_analytics" + }, + "26": { + "name": "HubSpot", + "cat": "advertising" + }, + "27": { + "name": "Yahoo Analytics", + "cat": "site_analytics" + }, + "28": { + "name": "OrangeSoda", + "cat": "advertising", + "tags": [ + 36, + 45 + ] + }, + "30": { + "name": "Nugg.Ad", + "cat": "advertising" + }, + "31": { + "name": "Federated Media", + "cat": "advertising" + }, + "32": { + "name": "OpenX", + "cat": "advertising" + }, + "33": { + "name": "Amazon Associates", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "34": { + "name": "FeedBurner", + "cat": "advertising" + }, + "35": { + "name": "ClustrMaps", + "cat": "advertising", + "tags": [ + 63 + ] + }, + "36": { + "name": "Feedjit", + "cat": "advertising", + "tags": [ + 63 + ] + }, + "37": { + "name": "Google Adsense", + "cat": "advertising" + }, + "38": { + "name": "HitTail", + "cat": "advertising" + }, + "39": { + "name": "FriendFeed", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "40": { + "name": "Woopra", + "cat": "site_analytics" + }, + "41": { "name": "DoubleClick", "cat": "advertising" }, - "2": { - "name": "Google Analytics", + "42": { + "name": "Crowd Science", + "cat": "advertising" + }, + "43": { + "name": "NetRatings SiteCensus", + "cat": "advertising" + }, + "44": { + "name": "Piwik", + "cat": "site_analytics", + "tags": [ + 3, + 64 + ] + }, + "45": { + "name": "Typepad Stats", "cat": "site_analytics" }, - "3": { - "name": "Google Safeframe", + "46": { + "name": "Tacoda", "cat": "advertising" }, - "4": { - "name": "Google IMA", + "47": { + "name": "Yahoo Ad Exchange", "cat": "advertising" }, - "5": { - "name": "Google Publisher Tags", + "48": { + "name": "Dynamic Logic", "cat": "advertising" - } - }, - "bugs": { - "11": { - "aid": 1 }, - "12": { - "aid": 2 + "49": { + "name": "Webtrends", + "cat": "site_analytics" }, - "13": { - "aid": 3 + "50": { + "name": "AT Internet", + "cat": "site_analytics" }, - "14": { - "aid": 4 + "52": { + "name": "ShareThis", + "cat": "advertising" }, - "15": { - "aid": 5 - } - }, - "firstPartyExceptions": { - "12": [ - "google.com" - ] - }, - "patterns": { - "host": { - "net": { - "doubleclick": { - "g": { - "securepubads": { - "$": 11 - } - } - } - } + "53": { + "name": "Seesmic", + "cat": "social_media" }, - "host_path": { - "com": { - "google-analytics": { - "$": [ - { - "path": "analytics.js", - "id": 12 + "54": { + "name": "Lockerz Share", + "cat": "social_media" + }, + "55": { + "name": "AddThis", + "cat": "advertising", + "tags": [ + 39 + ] + }, + "56": { + "name": "Audience Science", + "cat": "advertising" + }, + "57": { + "name": "PointRoll", + "cat": "advertising" + }, + "58": { + "name": "Chartbeat", + "cat": "site_analytics" + }, + "59": { + "name": "UserVoice", + "cat": "customer_interaction", + "tags": [ + 5 + ] + }, + "60": { + "name": "Rubicon", + "cat": "advertising" + }, + "61": { + "name": "ConversionRuler", + "cat": "advertising" + }, + "62": { + "name": "Salesforce", + "cat": "advertising" + }, + "63": { + "name": "Sphere", + "cat": "advertising" + }, + "64": { + "name": "Criteo", + "cat": "advertising", + "tags": [ + 36 + ] + }, + "66": { + "name": "InfoLinks", + "cat": "advertising" + }, + "67": { + "name": "Bing Ads", + "cat": "advertising" + }, + "68": { + "name": "Outbrain", + "cat": "advertising" + }, + "69": { + "name": "Google FriendConnect", + "cat": "customer_interaction" + }, + "70": { + "name": "Google Custom Search Engine", + "cat": "essential", + "tags": [ + 36 + ] + }, + "71": { + "name": "Google AJAX Search API", + "cat": "essential", + "tags": [ + 36 + ] + }, + "72": { + "name": "Kontera ContentLink", + "cat": "advertising", + "tags": [ + 47 + ] + }, + "73": { + "name": "AdBrite", + "cat": "advertising" + }, + "74": { + "name": "AdultAdWorld", + "cat": "pornvertising", + "tags": [ + 7 + ] + }, + "75": { + "name": "Gunggo", + "cat": "advertising" + }, + "76": { + "name": "DoublePimp", + "cat": "pornvertising", + "tags": [ + 61, + 65 + ] + }, + "77": { + "name": "SexInYourCity", + "cat": "pornvertising", + "tags": [ + 7 + ] + }, + "78": { + "name": "Clicksor", + "cat": "advertising" + }, + "80": { + "name": "Quigo AdSonar", + "cat": "advertising" + }, + "81": { + "name": "BlogCatalog", + "cat": "customer_interaction" + }, + "82": { + "name": "Synacor (Formerly Technorati)", + "cat": "advertising" + }, + "83": { + "name": "Alexa Traffic Rank", + "cat": "advertising", + "tags": [ + 48, + 63 + ] + }, + "84": { + "name": "Tribal Fusion", + "cat": "advertising" + }, + "85": { + "name": "Disqus", + "cat": "comments", + "tags": [ + 1, + 39 + ] + }, + "86": { + "name": "Six Apart Advertising", + "cat": "advertising" + }, + "87": { + "name": "BlogHer Ads", + "cat": "advertising" + }, + "88": { + "name": "Advertising.com", + "cat": "advertising" + }, + "90": { + "name": "DoubleClick Spotlight", + "cat": "advertising", + "tags": [ + 8, + 48 + ] + }, + "91": { + "name": "Yahoo! Overture", + "cat": "advertising" + }, + "92": { + "name": "Intense Debate", + "cat": "customer_interaction", + "tags": [ + 1 + ] + }, + "93": { + "name": "Facebook Connect", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "94": { + "name": "BTBuckets", + "cat": "advertising" + }, + "95": { + "name": "gumgum", + "cat": "advertising" + }, + "97": { + "name": "Yahoo! Buzz", + "cat": "social_media" + }, + "98": { + "name": "Baynote Observer", + "cat": "advertising" + }, + "99": { + "name": "TriggIt", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "100": { + "name": "Digg Widget", + "cat": "customer_interaction" + }, + "102": { + "name": "Zedo", + "cat": "advertising" + }, + "103": { + "name": "Vibrant Ads", + "cat": "advertising", + "tags": [ + 47 + ] + }, + "104": { + "name": "GetSatisfaction", + "cat": "comments", + "tags": [ + 5 + ] + }, + "105": { + "name": "Adify", + "cat": "advertising" + }, + "106": { + "name": "LivePerson", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "107": { + "name": "Kampyle", + "cat": "customer_interaction", + "tags": [ + 5 + ] + }, + "108": { + "name": "ClickTale", + "cat": "site_analytics", + "tags": [ + 48, + 54 + ] + }, + "109": { + "name": "Lotame", + "cat": "advertising", + "tags": [ + 48, + 62 + ] + }, + "110": { + "name": "CPX Interactive", + "cat": "advertising" + }, + "111": { + "name": "Lynchpin Analytics", + "cat": "advertising" + }, + "112": { + "name": "Trovus Revelations", + "cat": "advertising" + }, + "113": { + "name": "Adobe Test & Target", + "cat": "advertising" + }, + "114": { + "name": "InsightExpress", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "115": { + "name": "Kanoodle", + "cat": "advertising" + }, + "116": { + "name": "BlueKai", + "cat": "advertising" + }, + "117": { + "name": "Loomia", + "cat": "advertising" + }, + "119": { + "name": "TwitterCounter", + "cat": "site_analytics" + }, + "120": { + "name": "Dotomi", + "cat": "advertising" + }, + "121": { + "name": "Chitika", + "cat": "advertising" + }, + "123": { + "name": "HitsLink", + "cat": "advertising" + }, + "124": { + "name": "W3Counter", + "cat": "site_analytics" + }, + "125": { + "name": "AWStats", + "cat": "site_analytics" + }, + "126": { + "name": "OneStat", + "cat": "site_analytics" + }, + "128": { + "name": "Bluemetrix", + "cat": "advertising" + }, + "129": { + "name": "Reinvigorate", + "cat": "site_analytics" + }, + "131": { + "name": "Collarity", + "cat": "advertising" + }, + "132": { + "name": "AdaptiveBlue SmartLinks", + "cat": "customer_interaction", + "tags": [ + 47 + ] + }, + "133": { + "name": "Tumblr Dashboard", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "135": { + "name": "Index Exchange (Formerly Casale Media)", + "cat": "advertising" + }, + "136": { + "name": "BlogCounter", + "cat": "site_analytics" + }, + "137": { + "name": "WidgetBucks", + "cat": "advertising" + }, + "140": { + "name": "Echo", + "cat": "advertising", + "tags": [ + 1 + ] + }, + "142": { + "name": "LeadLander", + "cat": "site_analytics", + "tags": [ + 48, + 50 + ] + }, + "143": { + "name": "Burst Media", + "cat": "advertising" + }, + "145": { + "name": "Adknowledge", + "cat": "advertising" + }, + "147": { + "name": "Dstillery", + "cat": "advertising" + }, + "150": { + "name": "Bluelithium", + "cat": "advertising" + }, + "151": { + "name": "Glam Media", + "cat": "advertising" + }, + "152": { + "name": "Trafic", + "cat": "site_analytics" + }, + "153": { + "name": "Aurea ClickTracks", + "cat": "advertising" + }, + "154": { + "name": "Enquisite", + "cat": "advertising" + }, + "155": { + "name": "eXTReMe Tracker", + "cat": "site_analytics" + }, + "158": { + "name": "NetMonitor", + "cat": "site_analytics" + }, + "159": { + "name": "Marketo", + "cat": "advertising" + }, + "160": { + "name": "Demandbase", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "161": { + "name": "Fetchback", + "cat": "advertising" + }, + "162": { + "name": "Silverpop", + "cat": "customer_interaction" + }, + "163": { + "name": "IBM Customer Experience", + "cat": "site_analytics" + }, + "164": { + "name": "Magnify360", + "cat": "site_analytics" + }, + "166": { + "name": "Eloqua", + "cat": "advertising", + "tags": [ + 48, + 54, + 62 + ] + }, + "167": { + "name": "MediaMath (Akamai)", + "cat": "advertising" + }, + "168": { + "name": "Mindset Media", + "cat": "advertising" + }, + "169": { + "name": "GoDaddy Site Analytics", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "170": { + "name": "AppNexus", + "cat": "advertising" + }, + "171": { + "name": "AlmondNet", + "cat": "advertising" + }, + "172": { + "name": "eXelate", + "cat": "advertising" + }, + "173": { + "name": "Fox Audience Network", + "cat": "advertising" + }, + "174": { + "name": "Genome", + "cat": "advertising" + }, + "175": { + "name": "Datalogix", + "cat": "advertising" + }, + "176": { + "name": "Epic Marketplace", + "cat": "advertising", + "tags": [ + 59 + ] + }, + "177": { + "name": "Turn Inc.", + "cat": "advertising", + "tags": [ + 46, + 62 + ] + }, + "179": { + "name": "LinkedIn Marketing Solutions", + "cat": "advertising" + }, + "185": { + "name": "Atlas", + "cat": "advertising" + }, + "186": { + "name": "etracker", + "cat": "site_analytics" + }, + "187": { + "name": "ScoreCard Research Beacon", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "191": { + "name": "Snoobi Analytics", + "cat": "site_analytics" + }, + "192": { + "name": "Rocket Fuel", + "cat": "advertising" + }, + "194": { + "name": "ShinyStat", + "cat": "site_analytics" + }, + "195": { + "name": "VisiStat", + "cat": "advertising" + }, + "196": { + "name": "Digital Analytix", + "cat": "site_analytics" + }, + "199": { + "name": "DiggThis", + "cat": "customer_interaction" + }, + "200": { + "name": "AMP Platform", + "cat": "advertising" + }, + "201": { + "name": "Tell-a-Friend", + "cat": "advertising", + "tags": [ + 39, + 62 + ] + }, + "204": { + "name": "Facebook Beacon", + "cat": "social_media" + }, + "207": { + "name": "PercentMobile", + "cat": "site_analytics" + }, + "208": { + "name": "Yandex.Metrics", + "cat": "site_analytics" + }, + "209": { + "name": "AdRiver", + "cat": "advertising" + }, + "210": { + "name": "Openstat", + "cat": "site_analytics" + }, + "211": { + "name": "phpMyVisites", + "cat": "site_analytics", + "tags": [ + 3, + 64 + ] + }, + "212": { + "name": "Alexa Metrics", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "213": { + "name": "Zemanta", + "cat": "customer_interaction" + }, + "215": { + "name": "ViziSense", + "cat": "site_analytics" + }, + "217": { + "name": "DoubleVerify", + "cat": "advertising" + }, + "219": { + "name": "LeadFormix", + "cat": "customer_interaction" + }, + "220": { + "name": "iPerceptions", + "cat": "customer_interaction" + }, + "221": { + "name": "SearchForce", + "cat": "advertising" + }, + "222": { + "name": "Zendesk", + "cat": "customer_interaction" + }, + "223": { + "name": "INFOnline", + "cat": "site_analytics" + }, + "224": { + "name": "RichRelevance", + "cat": "customer_interaction" + }, + "225": { + "name": "Google Website Optimizer", + "cat": "site_analytics" + }, + "226": { + "name": "Navegg", + "cat": "site_analytics" + }, + "227": { + "name": "Adtegrity", + "cat": "advertising" + }, + "228": { + "name": "BackType Widgets", + "cat": "advertising" + }, + "231": { + "name": "ClixMetrix", + "cat": "advertising" + }, + "233": { + "name": "eBay Stats", + "cat": "advertising" + }, + "234": { + "name": "Genius", + "cat": "site_analytics" + }, + "235": { + "name": "Kissmetrics Analytics", + "cat": "site_analytics", + "tags": [ + 44, + 48 + ] + }, + "236": { + "name": "LiveBall", + "cat": "site_analytics" + }, + "237": { + "name": "LiveInternet", + "cat": "comments" + }, + "239": { + "name": "Marin Search Marketer", + "cat": "advertising" + }, + "240": { + "name": "Mixpanel", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "241": { + "name": "Pardot", + "cat": "site_analytics", + "tags": [ + 62 + ] + }, + "242": { + "name": "LiveRamp", + "cat": "advertising", + "tags": [ + 38, + 41 + ] + }, + "243": { + "name": "TouchCommerce", + "cat": "customer_interaction", + "tags": [ + 41, + 48 + ] + }, + "244": { + "name": "Tweetboard", + "cat": "social_media" + }, + "245": { + "name": "TweetMeme", + "cat": "social_media" + }, + "246": { + "name": "Unica", + "cat": "customer_interaction" + }, + "248": { + "name": "WidgetBox", + "cat": "customer_interaction" + }, + "249": { + "name": "WordStream", + "cat": "site_analytics" + }, + "250": { + "name": "DC StormIQ", + "cat": "advertising", + "tags": [ + 8, + 48 + ] + }, + "251": { + "name": "Histats", + "cat": "advertising" + }, + "252": { + "name": "Whos.amung.us", + "cat": "site_analytics" + }, + "253": { + "name": "GoSquared", + "cat": "site_analytics" + }, + "254": { + "name": "Apture", + "cat": "customer_interaction" + }, + "255": { + "name": "CompeteXL", + "cat": "site_analytics" + }, + "256": { + "name": "33Across", + "cat": "advertising" + }, + "257": { + "name": "Visual Website Optimizer", + "cat": "site_analytics", + "tags": [ + 44 + ] + }, + "259": { + "name": "BuySellAds", + "cat": "advertising" + }, + "260": { + "name": "Meebo Bar", + "cat": "social_media", + "tags": [ + 10, + 39, + 40 + ] + }, + "261": { + "name": "WebVisor", + "cat": "site_analytics" + }, + "262": { + "name": "Peer39", + "cat": "advertising", + "tags": [ + 41, + 48 + ] + }, + "263": { + "name": "eProof", + "cat": "site_analytics" + }, + "264": { + "name": "Begun", + "cat": "advertising" + }, + "265": { + "name": "ForeSee", + "cat": "essential" + }, + "266": { + "name": "Quintelligence", + "cat": "site_analytics" + }, + "267": { + "name": "3DStats", + "cat": "site_analytics" + }, + "268": { + "name": "AddFreeStats", + "cat": "site_analytics" + }, + "269": { + "name": "Webtrekk", + "cat": "site_analytics" + }, + "270": { + "name": "Channel Intelligence", + "cat": "advertising" + }, + "272": { + "name": "AdSide", + "cat": "advertising" + }, + "273": { + "name": "BidVertiser", + "cat": "advertising" + }, + "274": { + "name": "BinLayer", + "cat": "advertising" + }, + "275": { + "name": "Mirando", + "cat": "advertising" + }, + "276": { + "name": "AdTiger", + "cat": "advertising" + }, + "277": { + "name": "AdScale", + "cat": "advertising" + }, + "278": { + "name": "AdMeld", + "cat": "advertising" + }, + "279": { + "name": "ClearSaleing", + "cat": "advertising" + }, + "280": { + "name": "Wibiya Toolbar", + "cat": "social_media", + "tags": [ + 39, + 40 + ] + }, + "281": { + "name": "CheckM8", + "cat": "advertising" + }, + "282": { + "name": "Act-On Beacon", + "cat": "advertising", + "tags": [ + 38 + ] + }, + "283": { + "name": "Certona", + "cat": "advertising", + "tags": [ + 45 + ] + }, + "284": { + "name": "Gomez", + "cat": "site_analytics" + }, + "285": { + "name": "Mercent", + "cat": "advertising" + }, + "287": { + "name": "[x+1]", + "cat": "advertising" + }, + "288": { + "name": "Google AdWords Conversion", + "cat": "advertising" + }, + "289": { + "name": "Clickability Beacon", + "cat": "advertising" + }, + "290": { + "name": "Alexa Widget", + "cat": "advertising", + "tags": [ + 48, + 63 + ] + }, + "291": { + "name": "ReTargeter Beacon", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "292": { + "name": "mediaFORGE", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "293": { + "name": "VisualDNA", + "cat": "advertising", + "tags": [ + 41 + ] + }, + "294": { + "name": "ChannelAdvisor", + "cat": "advertising" + }, + "295": { + "name": "IntelligenceFocus", + "cat": "site_analytics" + }, + "296": { + "name": "DomoDomain", + "cat": "site_analytics" + }, + "297": { + "name": "Autonomy", + "cat": "advertising", + "tags": [ + 41, + 48 + ] + }, + "299": { + "name": "DoubleClick DART", + "cat": "advertising" + }, + "300": { + "name": "MyBuys", + "cat": "advertising" + }, + "301": { + "name": "Atlas ProfitBuilder", + "cat": "advertising" + }, + "302": { + "name": "PulsePoint", + "cat": "advertising" + }, + "304": { + "name": "DemandMedia", + "cat": "advertising" + }, + "306": { + "name": "Gorilla Nation", + "cat": "advertising" + }, + "307": { + "name": "Net-Results", + "cat": "advertising" + }, + "308": { + "name": "SearchIgnite", + "cat": "advertising" + }, + "309": { + "name": "Yahoo Search Marketing Analytics", + "cat": "site_analytics" + }, + "310": { + "name": "DoubleClick Floodlight", + "cat": "advertising", + "tags": [ + 8, + 48 + ] + }, + "311": { + "name": "eStat", + "cat": "site_analytics" + }, + "312": { + "name": "stat4u", + "cat": "site_analytics" + }, + "313": { + "name": "Gemius", + "cat": "advertising" + }, + "314": { + "name": "Marchex", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "315": { + "name": "Proficientz", + "cat": "advertising" + }, + "316": { + "name": "Sizmek", + "cat": "advertising", + "tags": [ + 9 + ] + }, + "317": { + "name": "Buysight", + "cat": "advertising" + }, + "318": { + "name": "DoubleClick Bid Manager", + "cat": "advertising" + }, + "319": { + "name": "NDN Analytics", + "cat": "site_analytics" + }, + "320": { + "name": "Widdit", + "cat": "customer_interaction" + }, + "321": { + "name": "NetShelter", + "cat": "advertising" + }, + "322": { + "name": "ReputationManager", + "cat": "site_analytics", + "tags": [ + 57 + ] + }, + "323": { + "name": "BloomReach", + "cat": "advertising" + }, + "324": { + "name": "ClickEquations", + "cat": "advertising" + }, + "326": { + "name": "RKG Attribution Management", + "cat": "advertising" + }, + "327": { + "name": "Web-Stat", + "cat": "site_analytics" + }, + "328": { + "name": "Demandware Analytics", + "cat": "site_analytics" + }, + "329": { + "name": "Giant Realm", + "cat": "advertising" + }, + "330": { + "name": "Dashboard Ad", + "cat": "advertising" + }, + "331": { + "name": "OWA", + "cat": "site_analytics", + "tags": [ + 3 + ] + }, + "332": { + "name": "Adconion", + "cat": "advertising", + "tags": [ + 41, + 48 + ] + }, + "333": { + "name": "PubMatic", + "cat": "advertising" + }, + "335": { + "name": "LXR100", + "cat": "advertising" + }, + "336": { + "name": "KeywordMax", + "cat": "advertising" + }, + "337": { + "name": "Amadesa", + "cat": "advertising" + }, + "338": { + "name": "SearchRev", + "cat": "advertising" + }, + "339": { + "name": "TNS", + "cat": "site_analytics" + }, + "340": { + "name": "AdRoll", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "341": { + "name": "Fireclick", + "cat": "site_analytics" + }, + "344": { + "name": "XTEND", + "cat": "advertising" + }, + "345": { + "name": "Newstogram", + "cat": "advertising" + }, + "346": { + "name": "TruEffect", + "cat": "advertising" + }, + "347": { + "name": "Mouseflow", + "cat": "site_analytics" + }, + "348": { + "name": "NUI Media", + "cat": "advertising" + }, + "349": { + "name": "Image Space Media", + "cat": "advertising" + }, + "350": { + "name": "VigLink", + "cat": "advertising", + "tags": [ + 47 + ] + }, + "351": { + "name": "SageMetrics", + "cat": "advertising" + }, + "352": { + "name": "SeeVolution", + "cat": "site_analytics" + }, + "353": { + "name": "DataXu", + "cat": "advertising" + }, + "354": { + "name": "Adobe Audience Manager", + "cat": "advertising" + }, + "355": { + "name": "ADTECH", + "cat": "site_analytics" + }, + "356": { + "name": "Microsoft adCenter Conversion", + "cat": "advertising" + }, + "357": { + "name": "CBS Interactive", + "cat": "audio_video_player" + }, + "358": { + "name": "Netmining", + "cat": "advertising" + }, + "359": { + "name": "OwnerIQ", + "cat": "advertising", + "tags": [ + 54, + 62 + ] + }, + "360": { + "name": "Zeta Search", + "cat": "advertising" + }, + "361": { + "name": "BridgeTrack", + "cat": "advertising" + }, + "363": { + "name": "ConvergeTrack", + "cat": "site_analytics" + }, + "364": { + "name": "MarketGid", + "cat": "advertising" + }, + "365": { + "name": "Halogen Network", + "cat": "social_media" + }, + "366": { + "name": "Phonalytics", + "cat": "customer_interaction" + }, + "367": { + "name": "Syncapse", + "cat": "advertising" + }, + "368": { + "name": "BlueStreak", + "cat": "advertising" + }, + "369": { + "name": "DSMM Advantage", + "cat": "advertising" + }, + "370": { + "name": "Optim.al", + "cat": "advertising" + }, + "371": { + "name": "InterMundo Media", + "cat": "advertising" + }, + "372": { + "name": "MindViz Tracker", + "cat": "advertising" + }, + "373": { + "name": "Vertical Acuity", + "cat": "advertising" + }, + "374": { + "name": "ClickInc", + "cat": "advertising", + "tags": [ + 46, + 62 + ] + }, + "375": { + "name": "SkimLinks", + "cat": "advertising", + "tags": [ + 46, + 47 + ] + }, + "376": { + "name": "Meta Network", + "cat": "social_media" + }, + "377": { + "name": "Legolas Media", + "cat": "advertising" + }, + "378": { + "name": "Krux Digital", + "cat": "advertising" + }, + "379": { + "name": "Google Affiliate Network", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "380": { + "name": "FreeWheel", + "cat": "advertising", + "tags": [ + 9 + ] + }, + "381": { + "name": "InternetBrands", + "cat": "social_media" + }, + "382": { + "name": "Performancing Metrics", + "cat": "site_analytics" + }, + "383": { + "name": "Trackset ConversionLab", + "cat": "advertising" + }, + "384": { + "name": "Trackset VisualPath", + "cat": "advertising" + }, + "385": { + "name": "Adblade", + "cat": "advertising" + }, + "386": { + "name": "Undertone", + "cat": "advertising" + }, + "387": { + "name": "Lucid Media", + "cat": "advertising" + }, + "388": { + "name": "Didit Maestro", + "cat": "advertising" + }, + "389": { + "name": "Didit Blizzard", + "cat": "advertising" + }, + "390": { + "name": "Pulse360", + "cat": "advertising" + }, + "391": { + "name": "AdGear", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "392": { + "name": "ClickDensity", + "cat": "site_analytics" + }, + "393": { + "name": "VisitorVille", + "cat": "site_analytics" + }, + "394": { + "name": "AffiliateBuzz", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "395": { + "name": "VerticalResponse", + "cat": "advertising" + }, + "396": { + "name": "LinkShare", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "397": { + "name": "AliveChat", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "398": { + "name": "Monetate", + "cat": "site_analytics" + }, + "399": { + "name": "Teracent", + "cat": "advertising" + }, + "400": { + "name": "Aggregate Knowledge", + "cat": "advertising" + }, + "401": { + "name": "TellApart", + "cat": "site_analytics" + }, + "402": { + "name": "BV! Media", + "cat": "advertising" + }, + "403": { + "name": "Project Wonderful", + "cat": "advertising" + }, + "404": { + "name": "VoiceFive", + "cat": "site_analytics", + "tags": [ + 48, + 66 + ] + }, + "405": { + "name": "Econda", + "cat": "site_analytics" + }, + "406": { + "name": "AdSpeed", + "cat": "advertising" + }, + "407": { + "name": "NetUpdater", + "cat": "site_analytics" + }, + "408": { + "name": "iCrossing", + "cat": "advertising" + }, + "409": { + "name": "AdReady", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "410": { + "name": "AdEngage", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "411": { + "name": "CPMStar", + "cat": "advertising" + }, + "412": { + "name": "Financial Content", + "cat": "advertising" + }, + "414": { + "name": "Encore Metrics", + "cat": "advertising" + }, + "415": { + "name": "eWayDirect", + "cat": "advertising", + "tags": [ + 38, + 62 + ] + }, + "416": { + "name": "UpSellit", + "cat": "customer_interaction" + }, + "422": { + "name": "AdFox", + "cat": "advertising" + }, + "423": { + "name": "Brightcove", + "cat": "audio_video_player", + "tags": [ + 9 + ] + }, + "424": { + "name": "Ensemble", + "cat": "advertising" + }, + "425": { + "name": "MediaMath", + "cat": "advertising" + }, + "426": { + "name": "Rambler", + "cat": "site_analytics" + }, + "427": { + "name": "BlueCava", + "cat": "advertising", + "tags": [ + 57 + ] + }, + "428": { + "name": "Monitus", + "cat": "site_analytics" + }, + "429": { + "name": "Optify", + "cat": "advertising" + }, + "430": { + "name": "Redux Media", + "cat": "advertising" + }, + "431": { + "name": "PrecisionClick", + "cat": "advertising" + }, + "432": { + "name": "Gigya Beacon", + "cat": "customer_interaction" + }, + "433": { + "name": "Usability Sciences WebIQ", + "cat": "site_analytics" + }, + "434": { + "name": "Cedexis Radar", + "cat": "site_analytics" + }, + "435": { + "name": "ATG Optimization", + "cat": "advertising", + "tags": [ + 10 + ] + }, + "438": { + "name": "ATG Recommendations", + "cat": "advertising" + }, + "439": { + "name": "[m]PLATFORM", + "cat": "advertising" + }, + "440": { + "name": "BusinessOnLine Analytics", + "cat": "site_analytics" + }, + "441": { + "name": "Web Traxs", + "cat": "site_analytics" + }, + "442": { + "name": "AdBuyer.com", + "cat": "advertising" + }, + "443": { + "name": "Neustar AdAdvisor", + "cat": "advertising", + "tags": [ + 62 + ] + }, + "445": { + "name": "InternetAudioAds", + "cat": "audio_video_player" + }, + "446": { + "name": "DSNR Media Group", + "cat": "advertising" + }, + "447": { + "name": "Result Links", + "cat": "advertising", + "tags": [ + 47 + ] + }, + "448": { + "name": "EyeWonder", + "cat": "advertising" + }, + "449": { + "name": "Wall Street on Demand", + "cat": "advertising" + }, + "450": { + "name": "Visible Measures", + "cat": "advertising" + }, + "451": { + "name": "GTop", + "cat": "site_analytics" + }, + "452": { + "name": "Facilitate Digital", + "cat": "advertising" + }, + "453": { + "name": "Luminate", + "cat": "advertising" + }, + "454": { + "name": "QuinStreet", + "cat": "advertising" + }, + "455": { + "name": "Specific Media", + "cat": "advertising" + }, + "456": { + "name": "GroupM Server", + "cat": "advertising" + }, + "457": { + "name": "TagMan", + "cat": "essential", + "tags": [ + 8 + ] + }, + "458": { + "name": "Maxymiser", + "cat": "advertising", + "tags": [ + 44 + ] + }, + "459": { + "name": "Ensighten", + "cat": "essential", + "tags": [ + 8 + ] + }, + "460": { + "name": "Uptrends", + "cat": "site_analytics" + }, + "461": { + "name": "Visit Streamer", + "cat": "site_analytics" + }, + "462": { + "name": "crmmetrix", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "464": { + "name": "Facebook Social Plugins", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "465": { + "name": "Chango", + "cat": "advertising" + }, + "466": { + "name": "Tremor Media", + "cat": "advertising" + }, + "468": { + "name": "Accuen Media", + "cat": "advertising" + }, + "469": { + "name": "ADARA Analytics", + "cat": "advertising", + "tags": [ + 41, + 48 + ] + }, + "470": { + "name": "Datran", + "cat": "advertising" + }, + "471": { + "name": "Ybrant Media", + "cat": "advertising" + }, + "472": { + "name": "Connextra", + "cat": "advertising" + }, + "473": { + "name": "Conduit", + "cat": "advertising" + }, + "474": { + "name": "Underdog Media", + "cat": "advertising", + "tags": [ + 41 + ] + }, + "476": { + "name": "Steel House Media", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "477": { + "name": "GoDataFeed", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "478": { + "name": "Trumba", + "cat": "advertising" + }, + "479": { + "name": "EroAdvertising", + "cat": "pornvertising", + "tags": [ + 7 + ] + }, + "481": { + "name": "AdXpansion", + "cat": "pornvertising" + }, + "483": { + "name": "Performable", + "cat": "site_analytics" + }, + "484": { + "name": "SnapEngage", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "485": { + "name": "C3 Metrics", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "486": { + "name": "Simpli.fi", + "cat": "advertising", + "tags": [ + 41, + 54 + ] + }, + "487": { + "name": "CDK Digital Marketing", + "cat": "advertising" + }, + "488": { + "name": "YuMe, Inc.", + "cat": "advertising", + "tags": [ + 9 + ] + }, + "489": { + "name": "Vindico Group", + "cat": "advertising" + }, + "491": { + "name": "Interpolls", + "cat": "advertising", + "tags": [ + 9, + 41 + ] + }, + "492": { + "name": "RadiumOne", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "493": { + "name": "Digilant", + "cat": "advertising" + }, + "494": { + "name": "AdShuffle", + "cat": "advertising" + }, + "495": { + "name": "Flashtalking", + "cat": "advertising" + }, + "496": { + "name": "AdXpose", + "cat": "advertising" + }, + "497": { + "name": "Acxiom", + "cat": "advertising" + }, + "498": { + "name": "AdCentric", + "cat": "advertising" + }, + "499": { + "name": "Admotion", + "cat": "advertising" + }, + "500": { + "name": "BrightRoll", + "cat": "advertising", + "tags": [ + 9, + 48 + ] + }, + "501": { + "name": "ChoiceStream", + "cat": "advertising" + }, + "502": { + "name": "SMART AdServer", + "cat": "advertising" + }, + "503": { + "name": "SpotXchange", + "cat": "advertising", + "tags": [ + 9 + ] + }, + "504": { + "name": "AdInterax", + "cat": "advertising" + }, + "505": { + "name": "Tealium", + "cat": "essential", + "tags": [ + 8 + ] + }, + "506": { + "name": "e-planning", + "cat": "advertising" + }, + "507": { + "name": "TRUSTe Notice", + "cat": "essential" + }, + "508": { + "name": "Signal", + "cat": "essential", + "tags": [ + 8 + ] + }, + "510": { + "name": "WiredMinds", + "cat": "site_analytics" + }, + "511": { + "name": "Brilig", + "cat": "advertising" + }, + "512": { + "name": "XGraph", + "cat": "site_analytics" + }, + "514": { + "name": "Proximic", + "cat": "advertising", + "tags": [ + 41, + 48, + 54 + ] + }, + "515": { + "name": "Struq", + "cat": "advertising" + }, + "516": { + "name": "Beencounter", + "cat": "advertising" + }, + "517": { + "name": "Travora Media", + "cat": "advertising" + }, + "520": { + "name": "Crimtan", + "cat": "advertising" + }, + "522": { + "name": "CoreAudience", + "cat": "advertising" + }, + "523": { + "name": "eyeReturn Marketing", + "cat": "advertising", + "tags": [ + 41 + ] + }, + "524": { + "name": "myThings", + "cat": "advertising" + }, + "525": { + "name": "Think Realtime", + "cat": "advertising" + }, + "526": { + "name": "Magnetic", + "cat": "advertising", + "tags": [ + 41, + 54 + ] + }, + "527": { + "name": "OxaMedia", + "cat": "customer_interaction" + }, + "528": { + "name": "Spongecell", + "cat": "advertising" + }, + "529": { + "name": "Adnologies", + "cat": "advertising" + }, + "531": { + "name": "Conversant", + "cat": "advertising", + "tags": [ + 54, + 62 + ] + }, + "532": { + "name": "Weborama", + "cat": "advertising" + }, + "533": { + "name": "TradeDoubler", + "cat": "advertising" + }, + "534": { + "name": "Effective Measure", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "535": { + "name": "Brand.net", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "537": { + "name": "Quisma", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "540": { + "name": "Veruta", + "cat": "advertising" + }, + "541": { + "name": "5min Media", + "cat": "audio_video_player", + "tags": [ + 9 + ] + }, + "543": { + "name": "Back Beat Media", + "cat": "advertising" + }, + "546": { + "name": "Say Media", + "cat": "advertising" + }, + "547": { + "name": "Contaxe", + "cat": "essential" + }, + "548": { + "name": "Zanox", + "cat": "advertising" + }, + "549": { + "name": "Spark Studios", + "cat": "audio_video_player" + }, + "550": { + "name": "JuicyAds", + "cat": "pornvertising", + "tags": [ + 7 + ] + }, + "551": { + "name": "Pheedo", + "cat": "advertising" + }, + "552": { + "name": "Cbox", + "cat": "customer_interaction" + }, + "553": { + "name": "ad4game", + "cat": "advertising" + }, + "554": { + "name": "uCoz", + "cat": "site_analytics" + }, + "555": { + "name": "bigmir", + "cat": "site_analytics" + }, + "556": { + "name": "TradeTracker", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "557": { + "name": "Commission Junction", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "558": { + "name": "GeoAds", + "cat": "advertising" + }, + "559": { + "name": "Certifica Metric", + "cat": "advertising" + }, + "561": { + "name": "Conviva", + "cat": "site_analytics", + "tags": [ + 9, + 48 + ] + }, + "562": { + "name": "Cadreon", + "cat": "advertising" + }, + "566": { + "name": "SkyTide Analytics", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "567": { + "name": "AdKeeper", + "cat": "advertising" + }, + "568": { + "name": "Evidon Site Notice", + "cat": "essential" + }, + "570": { + "name": "Dedicated Media", + "cat": "advertising" + }, + "571": { + "name": "Anormal Tracker", + "cat": "site_analytics" + }, + "572": { + "name": "TrackingSoft", + "cat": "advertising" + }, + "573": { + "name": "Adap.tv", + "cat": "advertising" + }, + "577": { + "name": "LiftDNA", + "cat": "advertising" + }, + "578": { + "name": "Paid-To-Promote", + "cat": "advertising" + }, + "579": { + "name": "TradeDesk", + "cat": "advertising" + }, + "580": { + "name": "Hurra Tracker", + "cat": "advertising" + }, + "582": { + "name": "Convertro", + "cat": "advertising", + "tags": [ + 48, + 54 + ] + }, + "583": { + "name": "AdPerium", + "cat": "advertising" + }, + "586": { + "name": "Adometry", + "cat": "advertising" + }, + "587": { + "name": "KissInsights", + "cat": "customer_interaction", + "tags": [ + 6 + ] + }, + "588": { + "name": "Optimizely", + "cat": "site_analytics", + "tags": [ + 44, + 45 + ] + }, + "589": { + "name": "WebGozar", + "cat": "site_analytics" + }, + "590": { + "name": "i.ua", + "cat": "advertising" + }, + "591": { + "name": "HotLog", + "cat": "advertising" + }, + "592": { + "name": "dwstat.cn", + "cat": "site_analytics" + }, + "593": { + "name": "Pepperjam", + "cat": "advertising" + }, + "594": { + "name": "Matchbin", + "cat": "advertising" + }, + "595": { + "name": "ShareASale", + "cat": "advertising" + }, + "596": { + "name": "Etology", + "cat": "advertising" + }, + "597": { + "name": "Smowtion", + "cat": "advertising" + }, + "598": { + "name": "Nextag ROI Optimizer", + "cat": "advertising" + }, + "599": { + "name": "Integral Ad Science", + "cat": "advertising" + }, + "600": { + "name": "FriendFinder Network", + "cat": "pornvertising", + "tags": [ + 7 + ] + }, + "601": { + "name": "Synacor (Formerly Technorati Media)", + "cat": "advertising" + }, + "602": { + "name": "SponsorAds.de", + "cat": "advertising" + }, + "603": { + "name": "AdvertiseSpace", + "cat": "advertising" + }, + "604": { + "name": "Madison Logic", + "cat": "advertising", + "tags": [ + 62 + ] + }, + "605": { + "name": "Twitter Button", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "606": { + "name": "SiteBro", + "cat": "site_analytics" + }, + "607": { + "name": "Polldaddy", + "cat": "customer_interaction", + "tags": [ + 6 + ] + }, + "608": { + "name": "NetSeer", + "cat": "advertising" + }, + "609": { + "name": "Adform", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "610": { + "name": "Newtention", + "cat": "advertising", + "tags": [ + 48, + 62 + ] + }, + "611": { + "name": "Clip Syndicate", + "cat": "advertising" + }, + "612": { + "name": "Adition", + "cat": "advertising" + }, + "613": { + "name": "Adorika", + "cat": "advertising" + }, + "614": { + "name": "New Relic", + "cat": "site_analytics" + }, + "615": { + "name": "Google+ Platform", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "617": { + "name": "ToneFuse", + "cat": "advertising" + }, + "618": { + "name": "Opentracker", + "cat": "site_analytics" + }, + "619": { + "name": "Footprint", + "cat": "advertising" + }, + "620": { + "name": "AdReactor", + "cat": "advertising" + }, + "621": { + "name": "AdOcean", + "cat": "advertising" + }, + "622": { + "name": "Everyday Health", + "cat": "social_media" + }, + "623": { + "name": "Meteor Solutions", + "cat": "social_media" + }, + "624": { + "name": "Free Online Users", + "cat": "site_analytics" + }, + "625": { + "name": "statistics.ro", + "cat": "site_analytics" + }, + "626": { + "name": "KeyMetric", + "cat": "site_analytics" + }, + "628": { + "name": "Affili.net", + "cat": "advertising" + }, + "629": { + "name": "Unbounce", + "cat": "site_analytics", + "tags": [ + 44 + ] + }, + "630": { + "name": "Zopim", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "631": { + "name": "Brainient", + "cat": "advertising", + "tags": [ + 9 + ] + }, + "632": { + "name": "Kitara Media", + "cat": "advertising" + }, + "633": { + "name": "Traffic Revenue", + "cat": "advertising" + }, + "634": { + "name": "AdBull", + "cat": "advertising" + }, + "635": { + "name": "Complex Media Network", + "cat": "advertising" + }, + "636": { + "name": "PocketCents", + "cat": "advertising" + }, + "637": { + "name": "Hello Bar", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "639": { + "name": "expo-MAX", + "cat": "advertising" + }, + "640": { + "name": "HitSniffer", + "cat": "advertising" + }, + "641": { + "name": "Impression Desk", + "cat": "advertising" + }, + "642": { + "name": "Admeta", + "cat": "advertising" + }, + "643": { + "name": "RightWave", + "cat": "advertising" + }, + "644": { + "name": "Spring Metrics", + "cat": "site_analytics" + }, + "645": { + "name": "ActiveConversion", + "cat": "advertising", + "tags": [ + 62 + ] + }, + "646": { + "name": "LinkConnector", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "647": { + "name": "AdMedia", + "cat": "advertising" + }, + "648": { + "name": "Prosperent", + "cat": "advertising" + }, + "650": { + "name": "ExitJunction", + "cat": "advertising" + }, + "651": { + "name": "Web Wipe Anlaytics", + "cat": "site_analytics" + }, + "654": { + "name": "RadarURL", + "cat": "site_analytics" + }, + "655": { + "name": "Olark", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "656": { + "name": "Parse.ly", + "cat": "customer_interaction", + "tags": [ + 48 + ] + }, + "657": { + "name": "PersianStat", + "cat": "site_analytics" + }, + "659": { + "name": "Nuffnang", + "cat": "advertising" + }, + "660": { + "name": "PriceGrabber", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "661": { + "name": "Tailsweep", + "cat": "advertising" + }, + "662": { + "name": "Scribol", + "cat": "advertising" + }, + "663": { + "name": "IndieClick", + "cat": "advertising" + }, + "664": { + "name": "Topsy", + "cat": "advertising" + }, + "665": { + "name": "InvestingChannel", + "cat": "essential" + }, + "666": { + "name": "Wahoha", + "cat": "customer_interaction" + }, + "667": { + "name": "BlogFrog", + "cat": "advertising" + }, + "668": { + "name": "Peerius", + "cat": "customer_interaction" + }, + "669": { + "name": "w3roi", + "cat": "site_analytics" + }, + "670": { + "name": "Yandex.API", + "cat": "customer_interaction" + }, + "671": { + "name": "2leep", + "cat": "advertising" + }, + "672": { + "name": "NetworkedBlogs", + "cat": "social_media" + }, + "673": { + "name": "AdOnion", + "cat": "advertising" + }, + "674": { + "name": "SpeedyAds", + "cat": "advertising" + }, + "675": { + "name": "VKontakte Widgets", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "676": { + "name": "DuraSite", + "cat": "advertising" + }, + "678": { + "name": "Carbon Ads", + "cat": "advertising" + }, + "679": { + "name": "AdPlan", + "cat": "advertising" + }, + "680": { + "name": "Unanimis", + "cat": "advertising" + }, + "682": { + "name": "AdJug", + "cat": "advertising" + }, + "683": { + "name": "MicroAd", + "cat": "advertising" + }, + "684": { + "name": "AdLantis", + "cat": "advertising" + }, + "685": { + "name": "FreakOut", + "cat": "advertising" + }, + "686": { + "name": "Advertise.com", + "cat": "advertising" + }, + "687": { + "name": "Marktest", + "cat": "advertising" + }, + "689": { + "name": "Visual Revenue", + "cat": "site_analytics" + }, + "690": { + "name": "Ads by Yahoo!", + "cat": "advertising" + }, + "691": { + "name": "GDN Notice", + "cat": "essential" + }, + "692": { + "name": "Microsoft Notice", + "cat": "essential" + }, + "694": { + "name": "HOTWords", + "cat": "advertising", + "tags": [ + 47 + ] + }, + "696": { + "name": "AdTotal", + "cat": "advertising" + }, + "697": { + "name": "LinkedIn Widgets", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "698": { + "name": "Cognitive Match", + "cat": "advertising" + }, + "699": { + "name": "Spectate", + "cat": "site_analytics" + }, + "700": { + "name": "MyPagerank", + "cat": "site_analytics" + }, + "701": { + "name": "StumbleUpon Widgets", + "cat": "social_media" + }, + "702": { + "name": "ExoClick", + "cat": "pornvertising", + "tags": [ + 60, + 61 + ] + }, + "704": { + "name": "CNZZ", + "cat": "site_analytics" + }, + "705": { + "name": "Nakanohito", + "cat": "advertising" + }, + "706": { + "name": "Next Performance", + "cat": "advertising", + "tags": [ + 41 + ] + }, + "707": { + "name": "Predicta", + "cat": "advertising" + }, + "709": { + "name": "Meetrics", + "cat": "advertising" + }, + "710": { + "name": "Plista", + "cat": "advertising" + }, + "711": { + "name": "VG Wort", + "cat": "site_analytics" + }, + "712": { + "name": "Ninja Access Analysis", + "cat": "site_analytics" + }, + "713": { + "name": "Brand Affinity", + "cat": "advertising" + }, + "714": { + "name": "Sophus3", + "cat": "advertising" + }, + "715": { + "name": "Hi-Media Performance", + "cat": "advertising" + }, + "716": { + "name": "ClicManager", + "cat": "advertising" + }, + "718": { + "name": "ClickInText", + "cat": "advertising" + }, + "719": { + "name": "iWiW Widgets", + "cat": "customer_interaction" + }, + "720": { + "name": "Veoxa", + "cat": "advertising" + }, + "722": { + "name": "AdoTube", + "cat": "advertising" + }, + "723": { + "name": "Optimax Media Delivery", + "cat": "advertising" + }, + "724": { + "name": "MaxPoint Interactive", + "cat": "advertising" + }, + "727": { + "name": "i-Behavior", + "cat": "advertising" + }, + "728": { + "name": "Korrelate", + "cat": "advertising" + }, + "729": { + "name": "Blink New Media", + "cat": "advertising" + }, + "730": { + "name": "Platform161", + "cat": "advertising" + }, + "731": { + "name": "LiveRail", + "cat": "advertising", + "tags": [ + 9 + ] + }, + "732": { + "name": "Cross Pixel Media", + "cat": "advertising", + "tags": [ + 41, + 48 + ] + }, + "733": { + "name": "Intent Media", + "cat": "advertising" + }, + "735": { + "name": "Emediate", + "cat": "advertising" + }, + "736": { + "name": "TubeMogul", + "cat": "advertising", + "tags": [ + 9 + ] + }, + "740": { + "name": "Auditude", + "cat": "audio_video_player" + }, + "742": { + "name": "Adversal", + "cat": "advertising" + }, + "743": { + "name": "Adfusion", + "cat": "advertising" + }, + "744": { + "name": "LoopFuse OneView", + "cat": "advertising" + }, + "745": { + "name": "Grapeshot", + "cat": "advertising" + }, + "746": { + "name": "Videology", + "cat": "advertising", + "tags": [ + 9 + ] + }, + "748": { + "name": "Rovion", + "cat": "advertising" + }, + "749": { + "name": "Traffiliate", + "cat": "advertising" + }, + "751": { + "name": "Experian Marketing Services", + "cat": "advertising", + "tags": [ + 41, + 57 + ] + }, + "753": { + "name": "GfK", + "cat": "advertising" + }, + "757": { + "name": "UberTags", + "cat": "essential", + "tags": [ + 8 + ] + }, + "760": { + "name": "Listrak", + "cat": "customer_interaction", + "tags": [ + 38 + ] + }, + "761": { + "name": "Ad Decisive", + "cat": "advertising" + }, + "762": { + "name": "Ad Dynamo", + "cat": "advertising" + }, + "763": { + "name": "iEntry", + "cat": "advertising" + }, + "764": { + "name": "Qubit Opentag", + "cat": "essential", + "tags": [ + 8 + ] + }, + "765": { + "name": "AdSolution", + "cat": "advertising" + }, + "768": { + "name": "Adfunky", + "cat": "advertising" + }, + "769": { + "name": "PunchTab", + "cat": "advertising" + }, + "770": { + "name": "Hit-Parade", + "cat": "advertising" + }, + "772": { + "name": "GestionPub", + "cat": "advertising" + }, + "773": { + "name": "Gaug.es", + "cat": "site_analytics" + }, + "774": { + "name": "Browser Update", + "cat": "customer_interaction" + }, + "775": { + "name": "iprom", + "cat": "advertising" + }, + "776": { + "name": "HTTPool", + "cat": "advertising" + }, + "777": { + "name": "LineZing", + "cat": "advertising" + }, + "778": { + "name": "McAfee Secure", + "cat": "essential" + }, + "779": { + "name": "zaparena", + "cat": "advertising" + }, + "780": { + "name": "ReachLocal", + "cat": "advertising" + }, + "781": { + "name": "Observer", + "cat": "advertising" + }, + "782": { + "name": "Gravity Insights", + "cat": "site_analytics" + }, + "783": { + "name": "ActivEngage", + "cat": "customer_interaction" + }, + "784": { + "name": "Bubblestat", + "cat": "advertising" + }, + "785": { + "name": "Adthink (Formerly AdvertStream)", + "cat": "advertising" + }, + "786": { + "name": "Free PageRank", + "cat": "site_analytics" + }, + "787": { + "name": "MaxBounty", + "cat": "essential" + }, + "788": { + "name": "AdClickMedia", + "cat": "advertising" + }, + "790": { + "name": "Eulerian", + "cat": "advertising" + }, + "791": { + "name": "Vdopia", + "cat": "advertising" + }, + "792": { + "name": "Intercom", + "cat": "customer_interaction" + }, + "793": { + "name": "AdNetwork.net", + "cat": "advertising" + }, + "794": { + "name": "cXense", + "cat": "advertising" + }, + "795": { + "name": "The Search Agency", + "cat": "advertising" + }, + "796": { + "name": "Mongoose Metrics", + "cat": "advertising" + }, + "797": { + "name": "FeedPerfect", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "798": { + "name": "AOL OBA Notice", + "cat": "advertising" + }, + "799": { + "name": "AvantLink", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "800": { + "name": "AdOn Network", + "cat": "advertising" + }, + "802": { + "name": "AppMetrx", + "cat": "advertising" + }, + "803": { + "name": "ClickDimensions", + "cat": "advertising" + }, + "805": { + "name": "MerchantAdvantage", + "cat": "advertising" + }, + "806": { + "name": "Oracle Live Help", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "809": { + "name": "Communicator Corp", + "cat": "advertising" + }, + "810": { + "name": "MailChimp Tracking", + "cat": "advertising", + "tags": [ + 44 + ] + }, + "812": { + "name": "IHS Markit Online Shopper Insigh", + "cat": "site_analytics", + "tags": [ + 41, + 48, + 54 + ] + }, + "813": { + "name": "News Registry", + "cat": "site_analytics" + }, + "814": { + "name": "Convert Platform", + "cat": "advertising" + }, + "816": { + "name": "SingleFeed", + "cat": "advertising" + }, + "817": { + "name": "CoreMotives", + "cat": "advertising" + }, + "818": { + "name": "Motigo Webstats", + "cat": "social_media" + }, + "819": { + "name": "Yieldlab", + "cat": "advertising" + }, + "820": { + "name": "Shopzilla", + "cat": "advertising" + }, + "821": { + "name": "Adverline", + "cat": "advertising" + }, + "822": { + "name": "adzly", + "cat": "advertising" + }, + "823": { + "name": "EngineSeeker", + "cat": "advertising" + }, + "824": { + "name": "SocialRMS", + "cat": "social_media" + }, + "825": { + "name": "eTrigue", + "cat": "advertising" + }, + "826": { + "name": "Barilliance", + "cat": "advertising" + }, + "827": { + "name": "Intergi", + "cat": "advertising" + }, + "828": { + "name": "iProspect", + "cat": "advertising" + }, + "829": { + "name": "NextSTAT", + "cat": "site_analytics" + }, + "830": { + "name": "TraceMyIP", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "831": { + "name": "Attracta", + "cat": "advertising", + "tags": [ + 45 + ] + }, + "832": { + "name": "Clickwinks", + "cat": "advertising" + }, + "833": { + "name": "TurnTo", + "cat": "customer_interaction", + "tags": [ + 5, + 39, + 48 + ] + }, + "834": { + "name": "ClickBank ProAds", + "cat": "advertising" + }, + "835": { + "name": "ActiveMeter", + "cat": "advertising", + "tags": [ + 62 + ] + }, + "836": { + "name": "WOW Analytics", + "cat": "site_analytics" + }, + "837": { + "name": "AfterDownload", + "cat": "advertising" + }, + "838": { + "name": "PopAds", + "cat": "advertising" + }, + "839": { + "name": "adMOST", + "cat": "advertising" + }, + "840": { + "name": "ROI trax", + "cat": "advertising" + }, + "842": { + "name": "Branica", + "cat": "advertising" + }, + "843": { + "name": "Buffer Button", + "cat": "social_media" + }, + "844": { + "name": "BuzzParadise", + "cat": "advertising" + }, + "845": { + "name": "Slice Factory", + "cat": "customer_interaction" + }, + "846": { + "name": "Contact At Once!", + "cat": "customer_interaction" + }, + "847": { + "name": "Simply", + "cat": "advertising" + }, + "849": { + "name": "Sociomantic", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "850": { + "name": "Reklamport", + "cat": "advertising" + }, + "851": { + "name": "Inspectlet", + "cat": "site_analytics" + }, + "852": { + "name": "LinkZ", + "cat": "customer_interaction" + }, + "853": { + "name": "adhood", + "cat": "advertising" + }, + "855": { + "name": "MedyaNet", + "cat": "advertising" + }, + "856": { + "name": "AdCloud", + "cat": "advertising" + }, + "857": { + "name": "Clove Network", + "cat": "advertising" + }, + "858": { + "name": "GoStats", + "cat": "site_analytics" + }, + "859": { + "name": "ReklamZ", + "cat": "advertising" + }, + "860": { + "name": "SiteScout", + "cat": "advertising" + }, + "861": { + "name": "Ambient Digital", + "cat": "advertising" + }, + "862": { + "name": "AdMicro", + "cat": "advertising" + }, + "863": { + "name": "Ad Butler", + "cat": "advertising" + }, + "864": { + "name": "Axill", + "cat": "advertising" + }, + "865": { + "name": "GlobalTakeoff", + "cat": "advertising" + }, + "866": { + "name": "MediaShakers", + "cat": "advertising" + }, + "867": { + "name": "AWeber", + "cat": "advertising" + }, + "868": { + "name": "Pinterest", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "869": { + "name": "Mail.Ru Group", + "cat": "social_media" + }, + "870": { + "name": "Onlinewebstat", + "cat": "site_analytics" + }, + "871": { + "name": "Ad Spirit", + "cat": "advertising" + }, + "872": { + "name": "AdF.ly", + "cat": "advertising" + }, + "873": { + "name": "Virgul", + "cat": "advertising" + }, + "874": { + "name": "Adpersia", + "cat": "advertising" + }, + "875": { + "name": "GSI Media", + "cat": "advertising" + }, + "876": { + "name": "GB-World", + "cat": "social_media" + }, + "877": { + "name": "Quantcast Notice", + "cat": "essential" + }, + "878": { + "name": "Jink", + "cat": "advertising" + }, + "879": { + "name": "ThingLink", + "cat": "advertising" + }, + "880": { + "name": "BigDoor", + "cat": "advertising", + "tags": [ + 39, + 62 + ] + }, + "881": { + "name": "Dotomi Notice", + "cat": "essential" + }, + "883": { + "name": "Reklam Store", + "cat": "advertising" + }, + "884": { + "name": "BelStat", + "cat": "site_analytics" + }, + "885": { + "name": "TLV Media", + "cat": "advertising" + }, + "886": { + "name": "Bitcoin Miner", + "cat": "customer_interaction" + }, + "887": { + "name": "Twyn", + "cat": "advertising" + }, + "888": { + "name": "Adwit", + "cat": "advertising" + }, + "889": { + "name": "ResponseTap", + "cat": "advertising" + }, + "892": { + "name": "xplosion", + "cat": "advertising" + }, + "893": { + "name": "Improve Digital", + "cat": "advertising" + }, + "895": { + "name": "RevenueMax", + "cat": "advertising" + }, + "896": { + "name": "Beacon Ad Network", + "cat": "advertising" + }, + "897": { + "name": "Merchenta", + "cat": "advertising" + }, + "898": { + "name": "CookieQ", + "cat": "essential" + }, + "900": { + "name": "MyCounter.ua", + "cat": "site_analytics" + }, + "901": { + "name": "ClickAider", + "cat": "advertising" + }, + "902": { + "name": "WysiStat", + "cat": "site_analytics" + }, + "903": { + "name": "Kenshoo", + "cat": "site_analytics", + "tags": [ + 48, + 54 + ] + }, + "904": { + "name": "Delta Projects", + "cat": "advertising" + }, + "905": { + "name": "Conversive", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "906": { + "name": "Al Bawaba Advertising", + "cat": "advertising" + }, + "907": { + "name": "AdServerPub", + "cat": "advertising" + }, + "908": { + "name": "Flattr Button", + "cat": "social_media" + }, + "909": { + "name": "dotMailer", + "cat": "customer_interaction" + }, + "910": { + "name": "Facebook Conversion Tracking", + "cat": "advertising" + }, + "911": { + "name": "Vertical Leap", + "cat": "advertising" + }, + "912": { + "name": "AdMob", + "cat": "advertising" + }, + "914": { + "name": "Swoop", + "cat": "advertising" + }, + "915": { + "name": "LinksAlpha", + "cat": "social_media" + }, + "916": { + "name": "GittiGidiyor Affiliate Program", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "917": { + "name": "Sonobi", + "cat": "advertising", + "tags": [ + 41, + 48 + ] + }, + "918": { + "name": "Vemba", + "cat": "advertising" + }, + "919": { + "name": "Intermarkets", + "cat": "advertising" + }, + "920": { + "name": "NK.pl Widgets", + "cat": "advertising" + }, + "921": { + "name": "WebProspector", + "cat": "site_analytics" + }, + "922": { + "name": "Facebook Social Graph", + "cat": "social_media" + }, + "923": { + "name": "Kauli", + "cat": "advertising" + }, + "924": { + "name": "adingo", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "925": { + "name": "ConvertMedia", + "cat": "advertising" + }, + "926": { + "name": "Clickbooth", + "cat": "advertising" + }, + "927": { + "name": "SexTracker", + "cat": "pornvertising", + "tags": [ + 7 + ] + }, + "928": { + "name": "OMG", + "cat": "social_media", + "tags": [ + 46 + ] + }, + "929": { + "name": "Slashdot Widget", + "cat": "customer_interaction", + "tags": [ + 39 + ] + }, + "930": { + "name": "AdvertPro", + "cat": "advertising" + }, + "931": { + "name": "Valued Opinions", + "cat": "advertising", + "tags": [ + 41 + ] + }, + "932": { + "name": "BlogBang", + "cat": "advertising" + }, + "933": { + "name": "Segment", + "cat": "site_analytics" + }, + "934": { + "name": "Proclivity", + "cat": "advertising" + }, + "935": { + "name": "V12 Group", + "cat": "site_analytics" + }, + "936": { + "name": "adk2", + "cat": "advertising" + }, + "937": { + "name": "Tribal Fusion Notice", + "cat": "advertising" + }, + "938": { + "name": "TurnSocial", + "cat": "social_media", + "tags": [ + 39, + 40 + ] + }, + "939": { + "name": "TapIt!", + "cat": "advertising" + }, + "941": { + "name": "Innity", + "cat": "advertising" + }, + "943": { + "name": "Adloox", + "cat": "advertising" + }, + "944": { + "name": "ChannelFinder", + "cat": "advertising" + }, + "945": { + "name": "CivicScience", + "cat": "site_analytics", + "tags": [ + 6 + ] + }, + "946": { + "name": "BBelements", + "cat": "advertising" + }, + "947": { + "name": "Crowd Ignite", + "cat": "advertising" + }, + "948": { + "name": "MaxMind", + "cat": "advertising" + }, + "949": { + "name": "clixGalore", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "950": { + "name": "UserReport", + "cat": "customer_interaction", + "tags": [ + 5, + 41, + 48 + ] + }, + "951": { + "name": "Taboola", + "cat": "advertising", + "tags": [ + 9 + ] + }, + "952": { + "name": "advmaker.ru", + "cat": "advertising" + }, + "953": { + "name": "IceRocket Tracker", + "cat": "social_media" + }, + "954": { + "name": "ad6media", + "cat": "advertising" + }, + "955": { + "name": "GoingUp", + "cat": "site_analytics" + }, + "958": { + "name": "Adhese", + "cat": "advertising" + }, + "960": { + "name": "Adverteerdirect", + "cat": "advertising" + }, + "961": { + "name": "Partner-Ads", + "cat": "advertising" + }, + "962": { + "name": "Open AdExchange", + "cat": "advertising" + }, + "963": { + "name": "Advantage Media", + "cat": "advertising" + }, + "964": { + "name": "Adservice Media", + "cat": "advertising" + }, + "965": { + "name": "Euroads", + "cat": "advertising" + }, + "966": { + "name": "Siteimprove", + "cat": "site_analytics" + }, + "967": { + "name": "Livecounter", + "cat": "site_analytics" + }, + "968": { + "name": "Targetix", + "cat": "advertising" + }, + "969": { + "name": "Centro", + "cat": "advertising" + }, + "970": { + "name": "Hyves Widgets", + "cat": "advertising", + "tags": [ + 39 + ] + }, + "971": { + "name": "GoDaddy Affiliate Program", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "972": { + "name": "gamerDNA", + "cat": "social_media" + }, + "973": { + "name": "Share42", + "cat": "social_media" + }, + "974": { + "name": "Bazaarvoice", + "cat": "customer_interaction", + "tags": [ + 39 + ] + }, + "975": { + "name": "Batanga Network", + "cat": "advertising" + }, + "976": { + "name": "Impresiones Web", + "cat": "advertising" + }, + "977": { + "name": "Harren Media", + "cat": "advertising" + }, + "978": { + "name": "Infusionsoft", + "cat": "advertising" + }, + "979": { + "name": "Total Media", + "cat": "advertising" + }, + "980": { + "name": "Revolver Maps", + "cat": "site_analytics" + }, + "981": { + "name": "Strands Recommender", + "cat": "advertising" + }, + "982": { + "name": "Errorception", + "cat": "site_analytics" + }, + "983": { + "name": "Sailthru Horizon", + "cat": "advertising" + }, + "984": { + "name": "Moonray Autopilot", + "cat": "advertising" + }, + "985": { + "name": "Enecto Analytics", + "cat": "site_analytics" + }, + "986": { + "name": "Adult Webmaster Empire", + "cat": "pornvertising", + "tags": [ + 7 + ] + }, + "988": { + "name": "Medley", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "989": { + "name": "Viacom Tag Container", + "cat": "advertising" + }, + "990": { + "name": "SUP media", + "cat": "advertising" + }, + "992": { + "name": "TBN.ru", + "cat": "advertising" + }, + "993": { + "name": "eBuzzing", + "cat": "advertising" + }, + "994": { + "name": "Ligatus", + "cat": "advertising" + }, + "995": { + "name": "Sanoma", + "cat": "advertising" + }, + "996": { + "name": "WhosOn", + "cat": "site_analytics" + }, + "997": { + "name": "AddyON", + "cat": "advertising" + }, + "998": { + "name": "Adkontekst", + "cat": "advertising" + }, + "999": { + "name": "Adoperator", + "cat": "advertising" + }, + "1000": { + "name": "AdTaily", + "cat": "advertising" + }, + "1001": { + "name": "Adtraction", + "cat": "advertising" + }, + "1002": { + "name": "Affiliate Window", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1003": { + "name": "comOn Group", + "cat": "advertising" + }, + "1004": { + "name": "CPMProfit", + "cat": "advertising" + }, + "1005": { + "name": "Double.net", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1006": { + "name": "eADV", + "cat": "advertising" + }, + "1007": { + "name": "Aruba Media Marketing", + "cat": "advertising" + }, + "1008": { + "name": "Etarget", + "cat": "advertising" + }, + "1009": { + "name": "Fonecta", + "cat": "customer_interaction" + }, + "1010": { + "name": "JuiceADV", + "cat": "advertising" + }, + "1011": { + "name": "Klaustech", + "cat": "advertising" + }, + "1012": { + "name": "Leiki", + "cat": "advertising" + }, + "1013": { + "name": "MyStat", + "cat": "social_media" + }, + "1014": { + "name": "Neodata", + "cat": "advertising" + }, + "1015": { + "name": "NetAffiliation", + "cat": "advertising" + }, + "1016": { + "name": "PayClick", + "cat": "advertising" + }, + "1017": { + "name": "Pirchio", + "cat": "advertising" + }, + "1018": { + "name": "Pubdirecte", + "cat": "advertising" + }, + "1019": { + "name": "Publicidad.net", + "cat": "advertising" + }, + "1020": { + "name": "Questback", + "cat": "customer_interaction", + "tags": [ + 5 + ] + }, + "1021": { + "name": "SmartContext", + "cat": "advertising" + }, + "1022": { + "name": "Stat24", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "1024": { + "name": "Userneeds", + "cat": "customer_interaction" + }, + "1025": { + "name": "Vizzit", + "cat": "advertising" + }, + "1026": { + "name": "Web Service Award", + "cat": "site_analytics" + }, + "1027": { + "name": "Vertical Network", + "cat": "advertising" + }, + "1028": { + "name": "Adrolays", + "cat": "advertising" + }, + "1029": { + "name": "Unister", + "cat": "site_analytics" + }, + "1030": { + "name": "Eyeconomy", + "cat": "advertising" + }, + "1031": { + "name": "freeXmedia", + "cat": "social_media" + }, + "1032": { + "name": "Yieldr Ads", + "cat": "advertising", + "tags": [ + 48, + 54 + ] + }, + "1033": { + "name": "Repost.us", + "cat": "advertising" + }, + "1034": { + "name": "Foodie Blogroll", + "cat": "social_media" + }, + "1035": { + "name": "Digital River", + "cat": "advertising" + }, + "1036": { + "name": "AdsenseCamp", + "cat": "advertising" + }, + "1037": { + "name": "Wiget Media", + "cat": "advertising" + }, + "1038": { + "name": "diHITT Badge", + "cat": "social_media" + }, + "1039": { + "name": "Scripps Networks", + "cat": "advertising" + }, + "1040": { + "name": "Zippyshare Widget", + "cat": "customer_interaction" + }, + "1041": { + "name": "Foursquare Widget", + "cat": "advertising", + "tags": [ + 39 + ] + }, + "1044": { + "name": "Personyze", + "cat": "customer_interaction" + }, + "1045": { + "name": "JumpTime", + "cat": "site_analytics" + }, + "1046": { + "name": "Resonate Networks", + "cat": "advertising" + }, + "1047": { + "name": "Gigya Socialize", + "cat": "customer_interaction", + "tags": [ + 39 + ] + }, + "1048": { + "name": "AffiliateLounge", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1049": { + "name": "ADMAN", + "cat": "advertising" + }, + "1050": { + "name": "AdMarvel", + "cat": "advertising" + }, + "1051": { + "name": "Audience Ad Network", + "cat": "advertising", + "tags": [ + 41 + ] + }, + "1052": { + "name": "apptap", + "cat": "advertising" + }, + "1053": { + "name": "Shop2market", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "1054": { + "name": "HookLogic", + "cat": "advertising" + }, + "1055": { + "name": "Torbit", + "cat": "site_analytics" + }, + "1057": { + "name": "Avazu Network", + "cat": "advertising" + }, + "1058": { + "name": "Rich", + "cat": "advertising" + }, + "1059": { + "name": "Provide Support", + "cat": "customer_interaction" + }, + "1060": { + "name": "ThreatMetrix", + "cat": "site_analytics", + "tags": [ + 57 + ] + }, + "1061": { + "name": "InfluAds", + "cat": "advertising" + }, + "1062": { + "name": "iubenda", + "cat": "essential" + }, + "1063": { + "name": "Salesforce Live Agent", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "1064": { + "name": "Hype Exchange", + "cat": "advertising" + }, + "1065": { + "name": "RevenueHits", + "cat": "advertising" + }, + "1066": { + "name": "Adzerk", + "cat": "advertising" + }, + "1067": { + "name": "Spotify Embed", + "cat": "audio_video_player", + "tags": [ + 51 + ] + }, + "1068": { + "name": "SoundCloud", + "cat": "audio_video_player", + "tags": [ + 51 + ] + }, + "1069": { + "name": "PixFuture", + "cat": "advertising" + }, + "1070": { + "name": "TrafficJunky", + "cat": "pornvertising", + "tags": [ + 48 + ] + }, + "1071": { + "name": "SexAdNetwork", + "cat": "pornvertising", + "tags": [ + 7 + ] + }, + "1072": { + "name": "CQ Counter", + "cat": "site_analytics" + }, + "1074": { + "name": "ClarityRay", + "cat": "site_analytics" + }, + "1075": { + "name": "PredictiveIntent", + "cat": "advertising" + }, + "1076": { + "name": "HiConversion", + "cat": "advertising" + }, + "1077": { + "name": "TrafficHaus", + "cat": "pornvertising" + }, + "1079": { + "name": "BrandReach", + "cat": "advertising" + }, + "1080": { + "name": "Precision Health Media", + "cat": "advertising" + }, + "1081": { + "name": "Po.st", + "cat": "social_media" + }, + "1083": { + "name": "BugHerd", + "cat": "customer_interaction" + }, + "1084": { + "name": "Yieldbot", + "cat": "advertising" + }, + "1086": { + "name": "Movable Media", + "cat": "advertising" + }, + "1087": { + "name": "Jetpack Digital", + "cat": "site_analytics" + }, + "1088": { + "name": "ReferLocal", + "cat": "advertising" + }, + "1089": { + "name": "Buzzdeck", + "cat": "site_analytics" + }, + "1090": { + "name": "Press+", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1091": { + "name": "Komoona", + "cat": "advertising" + }, + "1092": { + "name": "Freshdesk", + "cat": "customer_interaction", + "tags": [ + 38, + 62 + ] + }, + "1093": { + "name": "Feedbackify", + "cat": "customer_interaction", + "tags": [ + 5 + ] + }, + "1094": { + "name": "Reddit", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "1095": { + "name": "geoPlugin", + "cat": "site_analytics" + }, + "1096": { + "name": "Exceptional", + "cat": "site_analytics" + }, + "1098": { + "name": "KlikSaya", + "cat": "advertising" + }, + "1099": { + "name": "Gigya Social Analytics", + "cat": "site_analytics" + }, + "1100": { + "name": "Geovisite", + "cat": "site_analytics" + }, + "1101": { + "name": "MetriWeb", + "cat": "advertising" + }, + "1102": { + "name": "GoodADVERT", + "cat": "advertising" + }, + "1103": { + "name": "WebTracker", + "cat": "site_analytics" + }, + "1104": { + "name": "GetGlue", + "cat": "audio_video_player" + }, + "1105": { + "name": "Yandex.Direct", + "cat": "site_analytics" + }, + "1108": { + "name": "FeatureLink", + "cat": "advertising" + }, + "1109": { + "name": "Scout Analytics", + "cat": "advertising" + }, + "1110": { + "name": "Break Media", + "cat": "advertising", + "tags": [ + 9 + ] + }, + "1112": { + "name": "Direct/ADVERT", + "cat": "advertising" + }, + "1113": { + "name": "ADNETWORK.PRO", + "cat": "advertising" + }, + "1114": { + "name": "PublishFlow", + "cat": "advertising" + }, + "1115": { + "name": "Magnetise Group", + "cat": "advertising" + }, + "1116": { + "name": "Adnet", + "cat": "advertising" + }, + "1117": { + "name": "Totango", + "cat": "advertising" + }, + "1118": { + "name": "Matomy Market", + "cat": "advertising" + }, + "1119": { + "name": "InviziAds", + "cat": "advertising" + }, + "1120": { + "name": "Adcash", + "cat": "advertising" + }, + "1121": { + "name": "Varick Media Management", + "cat": "advertising" + }, + "1122": { + "name": "nPario", + "cat": "site_analytics" + }, + "1123": { + "name": "nRelate", + "cat": "customer_interaction", + "tags": [ + 45, + 48 + ] + }, + "1124": { + "name": "ZergNet", + "cat": "customer_interaction" + }, + "1125": { + "name": "Webtrends Ads", + "cat": "advertising" + }, + "1126": { + "name": "HotTraffic", + "cat": "advertising" + }, + "1127": { + "name": "Banner Connect", + "cat": "advertising", + "tags": [ + 48, + 54 + ] + }, + "1128": { + "name": "SalesFUSION", + "cat": "advertising" + }, + "1129": { + "name": "New York Times", + "cat": "essential" + }, + "1130": { + "name": "SaleCycle", + "cat": "advertising" + }, + "1131": { + "name": "PlugRush", + "cat": "advertising" + }, + "1133": { + "name": "Adverticum", + "cat": "advertising" + }, + "1134": { + "name": "Creafi", + "cat": "advertising" + }, + "1135": { + "name": "CTnetwork", + "cat": "advertising" + }, + "1136": { + "name": "FruitFlan", + "cat": "advertising" + }, + "1137": { + "name": "MCOnet", + "cat": "advertising" + }, + "1138": { + "name": "Simple AdServer", + "cat": "advertising" + }, + "1141": { + "name": "Epic Game Ads", + "cat": "advertising" + }, + "1142": { + "name": "StrikeAd", + "cat": "advertising" + }, + "1143": { + "name": "Gigya Toolbar", + "cat": "customer_interaction" + }, + "1144": { + "name": "VisitorTrack", + "cat": "advertising" + }, + "1147": { + "name": "Euroweb Counter", + "cat": "advertising" + }, + "1148": { + "name": "JuggCash", + "cat": "pornvertising", + "tags": [ + 7, + 46 + ] + }, + "1149": { + "name": "LifeStreet Media", + "cat": "advertising", + "tags": [ + 39 + ] + }, + "1150": { + "name": "Mediawhiz", + "cat": "advertising", + "tags": [ + 36, + 38, + 46 + ] + }, + "1151": { + "name": "Yabuka", + "cat": "advertising" + }, + "1152": { + "name": "Copacet", + "cat": "advertising" + }, + "1153": { + "name": "Flag Counter", + "cat": "advertising", + "tags": [ + 63 + ] + }, + "1154": { + "name": "Typekit by Adobe", + "cat": "essential", + "tags": [ + 58 + ] + }, + "1155": { + "name": "Kontactor", + "cat": "customer_interaction" + }, + "1156": { + "name": "Yola Analytics", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "1157": { + "name": "LeadForensics", + "cat": "advertising" + }, + "1158": { + "name": "eVisit Analyst", + "cat": "advertising" + }, + "1159": { + "name": "smart4ads", + "cat": "advertising" + }, + "1160": { + "name": "Adpv", + "cat": "advertising" + }, + "1161": { + "name": "RSSPump", + "cat": "customer_interaction" + }, + "1162": { + "name": "Social Annex", + "cat": "advertising" + }, + "1163": { + "name": "Experimently", + "cat": "site_analytics" + }, + "1165": { + "name": "Purch", + "cat": "advertising" + }, + "1166": { + "name": "Kavanga", + "cat": "advertising" + }, + "1167": { + "name": "AdLabs", + "cat": "advertising" + }, + "1168": { + "name": "B2Bvideo", + "cat": "advertising" + }, + "1169": { + "name": "AudienceFUEL", + "cat": "advertising" + }, + "1170": { + "name": "Buzz Media", + "cat": "advertising" + }, + "1171": { + "name": "AdExcite", + "cat": "advertising" + }, + "1172": { + "name": "Brandscreen", + "cat": "advertising" + }, + "1173": { + "name": "Affinity", + "cat": "advertising" + }, + "1174": { + "name": "Sekindo", + "cat": "advertising" + }, + "1175": { + "name": "Refined Labs", + "cat": "advertising" + }, + "1176": { + "name": "Tapad", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "1177": { + "name": "Operative Media", + "cat": "advertising" + }, + "1178": { + "name": "Mokono Analytics", + "cat": "advertising" + }, + "1179": { + "name": "Modernus", + "cat": "site_analytics" + }, + "1180": { + "name": "Banzai Advertising", + "cat": "advertising" + }, + "1181": { + "name": "i2i.jp", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "1182": { + "name": "AccessTrade", + "cat": "advertising" + }, + "1183": { + "name": "PolyAd", + "cat": "advertising" + }, + "1184": { + "name": "51.La", + "cat": "site_analytics" + }, + "1185": { + "name": "WebAds", + "cat": "advertising" + }, + "1186": { + "name": "adgoal", + "cat": "advertising" + }, + "1187": { + "name": "Open Web Analytics", + "cat": "site_analytics", + "tags": [ + 3, + 64 + ] + }, + "1188": { + "name": "Responsys", + "cat": "advertising" + }, + "1189": { + "name": "impAct", + "cat": "advertising" + }, + "1190": { + "name": "Webtraffic", + "cat": "site_analytics" + }, + "1191": { + "name": "RadarStats", + "cat": "advertising" + }, + "1192": { + "name": "Content.ad", + "cat": "advertising" + }, + "1193": { + "name": "SimpleReach", + "cat": "site_analytics" + }, + "1194": { + "name": "ADAOS", + "cat": "advertising" + }, + "1195": { + "name": "Semasio", + "cat": "advertising", + "tags": [ + 41 + ] + }, + "1196": { + "name": "rtbLab", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "1197": { + "name": "AffiMax", + "cat": "advertising" + }, + "1198": { + "name": "The Reach Group (Formerly redvertisment)", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "1199": { + "name": "Alenty", + "cat": "advertising" + }, + "1200": { + "name": "Way2traffic", + "cat": "advertising" + }, + "1201": { + "name": "SuperCounters", + "cat": "site_analytics" + }, + "1202": { + "name": "Wikia Beacon", + "cat": "site_analytics", + "tags": [ + 39 + ] + }, + "1203": { + "name": "AudienceRate", + "cat": "advertising" + }, + "1204": { + "name": "BrightEdge", + "cat": "advertising" + }, + "1205": { + "name": "Tumblr Buttons", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "1206": { + "name": "Teroti", + "cat": "advertising" + }, + "1207": { + "name": "WebEffective", + "cat": "site_analytics" + }, + "1209": { + "name": "Triton Digital", + "cat": "advertising", + "tags": [ + 51 + ] + }, + "1210": { + "name": "MediaHub", + "cat": "advertising" + }, + "1211": { + "name": "Realtime", + "cat": "customer_interaction" + }, + "1212": { + "name": "C|ON|TEXT", + "cat": "advertising" + }, + "1214": { + "name": "isocket", + "cat": "advertising" + }, + "1215": { + "name": "Lengow", + "cat": "advertising" + }, + "1216": { + "name": "iAdvize", + "cat": "customer_interaction" + }, + "1217": { + "name": "Jeetyet Media", + "cat": "advertising" + }, + "1218": { + "name": "Goooal", + "cat": "site_analytics" + }, + "1219": { + "name": "UserZoom", + "cat": "customer_interaction" + }, + "1220": { + "name": "Smart Content", + "cat": "advertising" + }, + "1221": { + "name": "GitHub Ribbon", + "cat": "customer_interaction", + "tags": [ + 39 + ] + }, + "1222": { + "name": "Webhelpje", + "cat": "customer_interaction" + }, + "1223": { + "name": "Prisma Media Digital", + "cat": "advertising" + }, + "1224": { + "name": "MouseTrace", + "cat": "site_analytics" + }, + "1225": { + "name": "Crakmedia Network", + "cat": "advertising" + }, + "1226": { + "name": "Akavita", + "cat": "advertising" + }, + "1227": { + "name": "Adswizz", + "cat": "advertising" + }, + "1228": { + "name": "AdHitz", + "cat": "advertising" + }, + "1229": { + "name": "videoclick.ru", + "cat": "advertising" + }, + "1230": { + "name": "actionpay", + "cat": "advertising" + }, + "1231": { + "name": "rutarget", + "cat": "advertising" + }, + "1232": { + "name": "DataPoint Media", + "cat": "advertising", + "tags": [ + 41, + 48 + ] + }, + "1233": { + "name": "AdGent Digital", + "cat": "advertising" + }, + "1234": { + "name": "iogous", + "cat": "advertising" + }, + "1235": { + "name": "Digital Forest", + "cat": "site_analytics" + }, + "1236": { + "name": "eClick", + "cat": "advertising" + }, + "1237": { + "name": "Ad360", + "cat": "advertising" + }, + "1238": { + "name": "VietAd", + "cat": "advertising" + }, + "1239": { + "name": "Admax", + "cat": "advertising" + }, + "1240": { + "name": "Allyes", + "cat": "advertising" + }, + "1241": { + "name": "MarkMonitor", + "cat": "advertising" + }, + "1242": { + "name": "Adsame", + "cat": "advertising" + }, + "1243": { + "name": "Tanx", + "cat": "advertising" + }, + "1244": { + "name": "MediaV", + "cat": "advertising" + }, + "1245": { + "name": "AdSupply", + "cat": "advertising" + }, + "1246": { + "name": "RevenueMantra", + "cat": "advertising" + }, + "1247": { + "name": "J-List Affiliate Program", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1248": { + "name": "ICStats", + "cat": "site_analytics" + }, + "1249": { + "name": "Ozone Media", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "1250": { + "name": "Acuity Ads", + "cat": "advertising" + }, + "1251": { + "name": "adXion", + "cat": "advertising" + }, + "1252": { + "name": "Median", + "cat": "advertising" + }, + "1253": { + "name": "Lomadee", + "cat": "advertising" + }, + "1254": { + "name": "Chaordic", + "cat": "advertising" + }, + "1255": { + "name": "Perform Group", + "cat": "essential" + }, + "1256": { + "name": "Ohana Advertising Network", + "cat": "advertising" + }, + "1257": { + "name": "dgMatix", + "cat": "advertising" + }, + "1258": { + "name": "Ad Magnet", + "cat": "advertising" + }, + "1259": { + "name": "Komli ATOM", + "cat": "advertising" + }, + "1260": { + "name": "Vizury", + "cat": "advertising" + }, + "1261": { + "name": "LinkWithin", + "cat": "social_media" + }, + "1262": { + "name": "ClickExperts", + "cat": "advertising" + }, + "1264": { + "name": "MeaningTool", + "cat": "social_media" + }, + "1265": { + "name": "AdFrontiers", + "cat": "advertising" + }, + "1266": { + "name": "Ezakus", + "cat": "advertising" + }, + "1267": { + "name": "Public Ideas", + "cat": "advertising" + }, + "1268": { + "name": "Piximedia", + "cat": "advertising" + }, + "1269": { + "name": "Relay42", + "cat": "essential" + }, + "1270": { + "name": "Semilo", + "cat": "advertising" + }, + "1271": { + "name": "Weebly Ads", + "cat": "advertising", + "tags": [ + 45 + ] + }, + "1272": { + "name": "Shopify Stats", + "cat": "advertising" + }, + "1273": { + "name": "AdClear", + "cat": "advertising" + }, + "1274": { + "name": "AdTraxx", + "cat": "advertising" + }, + "1275": { + "name": "adyard", + "cat": "advertising" + }, + "1277": { + "name": "adru.net", + "cat": "advertising" + }, + "1278": { + "name": "Medialand", + "cat": "advertising" + }, + "1279": { + "name": "Mediagra", + "cat": "pornvertising" + }, + "1280": { + "name": "ADGoto", + "cat": "advertising" + }, + "1281": { + "name": "AdHands", + "cat": "advertising" + }, + "1282": { + "name": "C8 Network", + "cat": "advertising" + }, + "1283": { + "name": "Google Tag Manager", + "cat": "essential", + "tags": [ + 8 + ] + }, + "1284": { + "name": "DiVa", + "cat": "site_analytics" + }, + "1285": { + "name": "Martini Media", + "cat": "advertising" + }, + "1286": { + "name": "Admaya", + "cat": "advertising" + }, + "1287": { + "name": "CentralTag", + "cat": "advertising", + "tags": [ + 8 + ] + }, + "1288": { + "name": "ad4mat", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "1289": { + "name": "intelliAd", + "cat": "site_analytics" + }, + "1290": { + "name": "TrafficBroker", + "cat": "advertising" + }, + "1291": { + "name": "Drawbridge", + "cat": "advertising" + }, + "1292": { + "name": "Game Advertising Online", + "cat": "advertising" + }, + "1293": { + "name": "Connexity", + "cat": "advertising" + }, + "1294": { + "name": "Innovid", + "cat": "advertising", + "tags": [ + 9 + ] + }, + "1295": { + "name": "Sokrati", + "cat": "advertising" + }, + "1296": { + "name": "Infinity Tracking", + "cat": "site_analytics" + }, + "1297": { + "name": "Yashi", + "cat": "advertising", + "tags": [ + 9 + ] + }, + "1298": { + "name": "Unruly Media", + "cat": "advertising" + }, + "1299": { + "name": "Just Relevant", + "cat": "advertising" + }, + "1300": { + "name": "PowerLinks", + "cat": "advertising" + }, + "1301": { + "name": "iPromote", + "cat": "advertising" + }, + "1302": { + "name": "CityAds", + "cat": "advertising" + }, + "1304": { + "name": "imho vi", + "cat": "advertising" + }, + "1305": { + "name": "Adinch", + "cat": "advertising" + }, + "1306": { + "name": "admitad", + "cat": "advertising" + }, + "1307": { + "name": "Magna Advertise", + "cat": "advertising" + }, + "1308": { + "name": "WebAntenna", + "cat": "site_analytics" + }, + "1309": { + "name": "B2BContext", + "cat": "advertising" + }, + "1310": { + "name": "AdEasy", + "cat": "advertising" + }, + "1311": { + "name": "Maxlab", + "cat": "advertising" + }, + "1312": { + "name": "ADmulti", + "cat": "advertising" + }, + "1313": { + "name": "Rich Media Banner Network", + "cat": "advertising" + }, + "1314": { + "name": "AdMaster", + "cat": "advertising" + }, + "1315": { + "name": "Recreativ", + "cat": "advertising" + }, + "1316": { + "name": "CNStats", + "cat": "site_analytics" + }, + "1317": { + "name": "Play by Mamba", + "cat": "advertising" + }, + "1318": { + "name": "uTarget", + "cat": "advertising" + }, + "1319": { + "name": "Rollad", + "cat": "advertising" + }, + "1320": { + "name": "SmartBN", + "cat": "advertising" + }, + "1321": { + "name": "Underclick", + "cat": "advertising" + }, + "1322": { + "name": "Pornvertising", + "cat": "pornvertising", + "tags": [ + 7 + ] + }, + "1323": { + "name": "Ad.agio", + "cat": "advertising" + }, + "1324": { + "name": "ViviStats", + "cat": "site_analytics" + }, + "1325": { + "name": "Adnet Media", + "cat": "advertising" + }, + "1326": { + "name": "smartAD", + "cat": "advertising" + }, + "1327": { + "name": "HIT.UA", + "cat": "advertising" + }, + "1328": { + "name": "Mytop Counter", + "cat": "social_media" + }, + "1329": { + "name": "Tyroo Direct", + "cat": "advertising" + }, + "1330": { + "name": "Impact Radius", + "cat": "essential" + }, + "1331": { + "name": "InSkin Media", + "cat": "advertising" + }, + "1332": { + "name": "Adcito", + "cat": "advertising" + }, + "1333": { + "name": "PubGears", + "cat": "advertising" + }, + "1334": { + "name": "iGoDigital", + "cat": "customer_interaction", + "tags": [ + 48, + 54 + ] + }, + "1335": { + "name": "SecuredVisit", + "cat": "advertising" + }, + "1336": { + "name": "Eyeota", + "cat": "advertising", + "tags": [ + 48, + 54 + ] + }, + "1337": { + "name": "Hiiir", + "cat": "advertising" + }, + "1338": { + "name": "Scupio", + "cat": "advertising" + }, + "1339": { + "name": "BloggerAds", + "cat": "advertising" + }, + "1340": { + "name": "Respond", + "cat": "advertising" + }, + "1341": { + "name": "ChineseAN", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1342": { + "name": "888media", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1343": { + "name": "Switch Concepts", + "cat": "advertising" + }, + "1344": { + "name": "AdConductor", + "cat": "advertising" + }, + "1345": { + "name": "IPLogger", + "cat": "site_analytics" + }, + "1346": { + "name": "Jirafe", + "cat": "site_analytics" + }, + "1347": { + "name": "Digital Impact", + "cat": "advertising" + }, + "1348": { + "name": "Dynamic Yield Analytics", + "cat": "site_analytics" + }, + "1349": { + "name": "AdLand", + "cat": "advertising" + }, + "1350": { + "name": "Telemetry", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "1351": { + "name": "Loggly", + "cat": "site_analytics" + }, + "1352": { + "name": "Klikki", + "cat": "advertising" + }, + "1354": { + "name": "Adtoma", + "cat": "advertising" + }, + "1355": { + "name": "ADPLUS", + "cat": "advertising" + }, + "1356": { + "name": "Adstars", + "cat": "advertising" + }, + "1357": { + "name": "Truehits.net", + "cat": "site_analytics" + }, + "1358": { + "name": "Synergy-E", + "cat": "advertising" + }, + "1359": { + "name": "COADVERTISE", + "cat": "advertising" + }, + "1360": { + "name": "Adnet (MedyaNet)", + "cat": "advertising" + }, + "1361": { + "name": "Adklik", + "cat": "advertising" + }, + "1362": { + "name": "Nanigans", + "cat": "advertising" + }, + "1363": { + "name": "Improvely", + "cat": "site_analytics" + }, + "1364": { + "name": "RealVu", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "1366": { + "name": "4w Marketplace", + "cat": "advertising" + }, + "1367": { + "name": "ad:C media", + "cat": "advertising" + }, + "1368": { + "name": "ShareThrough", + "cat": "advertising" + }, + "1369": { + "name": "AOL Streampad", + "cat": "audio_video_player" + }, + "1370": { + "name": "Esendra", + "cat": "advertising" + }, + "1371": { + "name": "Facebook Exchange (FBX)", + "cat": "advertising" + }, + "1373": { + "name": "Frosmo Optimizer", + "cat": "advertising", + "tags": [ + 41, + 48 + ] + }, + "1375": { + "name": "Quick-counter.net", + "cat": "site_analytics" + }, + "1376": { + "name": "Contextly", + "cat": "site_analytics", + "tags": [ + 5, + 38 + ] + }, + "1377": { + "name": "Adobe TagManager", + "cat": "advertising", + "tags": [ + 8 + ] + }, + "1378": { + "name": "AffiliateFuture", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1379": { + "name": "SessionCam", + "cat": "site_analytics" + }, + "1380": { + "name": "Forensiq", + "cat": "advertising" + }, + "1382": { + "name": "Linkpulse", + "cat": "site_analytics" + }, + "1384": { + "name": "Scandinavian Ad Networks", + "cat": "advertising", + "tags": [ + 36, + 46, + 48 + ] + }, + "1385": { + "name": "Affiliator", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1386": { + "name": "Innometrics", + "cat": "customer_interaction" + }, + "1390": { + "name": "ity.im", + "cat": "advertising" + }, + "1391": { + "name": "Wamcash", + "cat": "pornvertising" + }, + "1392": { + "name": "Aztecash", + "cat": "advertising" + }, + "1393": { + "name": "Flag Ads", + "cat": "advertising", + "tags": [ + 61, + 66 + ] + }, + "1394": { + "name": "Kaltura", + "cat": "audio_video_player", + "tags": [ + 9, + 64 + ] + }, + "1395": { + "name": "eZanga Advertising", + "cat": "advertising", + "tags": [ + 36 + ] + }, + "1396": { + "name": "QCRI Analytics", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "1397": { + "name": "BuzzFeed", + "cat": "customer_interaction" + }, + "1398": { + "name": "Promodity", + "cat": "advertising" + }, + "1399": { + "name": "The DECK", + "cat": "advertising" + }, + "1400": { + "name": "Tradera Widget", + "cat": "customer_interaction" + }, + "1401": { + "name": "Adrecord", + "cat": "advertising" + }, + "1402": { + "name": "Buzzador", + "cat": "social_media" + }, + "1403": { + "name": "Perfect Audience", + "cat": "advertising" + }, + "1404": { + "name": "StatHat", + "cat": "site_analytics" + }, + "1405": { + "name": "DirectREV", + "cat": "advertising" + }, + "1406": { + "name": "Lucky Orange", + "cat": "site_analytics" + }, + "1407": { + "name": "SAS", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "1408": { + "name": "SiteHeart", + "cat": "customer_interaction" + }, + "1409": { + "name": "nonstop Consulting", + "cat": "advertising" + }, + "1410": { + "name": "Buddy Media", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "1411": { + "name": "Post Affiliate Pro", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1412": { + "name": "4stats", + "cat": "site_analytics" + }, + "1413": { + "name": "adNET.de", + "cat": "advertising" + }, + "1414": { + "name": "Usemax", + "cat": "advertising" + }, + "1416": { + "name": "Monitis", + "cat": "site_analytics" + }, + "1417": { + "name": "FeedCat", + "cat": "advertising" + }, + "1418": { + "name": "Hacker News Button", + "cat": "social_media" + }, + "1419": { + "name": "Enreach", + "cat": "advertising" + }, + "1420": { + "name": "Livefyre", + "cat": "comments", + "tags": [ + 1 + ] + }, + "1421": { + "name": "Shareaholic", + "cat": "advertising", + "tags": [ + 39 + ] + }, + "1422": { + "name": "ClickProtector", + "cat": "site_analytics" + }, + "1423": { + "name": "Century Interactive", + "cat": "customer_interaction" + }, + "1424": { + "name": "LeadLife", + "cat": "customer_interaction" + }, + "1425": { + "name": "Gamned", + "cat": "advertising", + "tags": [ + 41, + 62 + ] + }, + "1426": { + "name": "Advertlets", + "cat": "advertising" + }, + "1427": { + "name": "YesUp Advertising", + "cat": "advertising" + }, + "1428": { + "name": "RBC Counter", + "cat": "site_analytics" + }, + "1429": { + "name": "Magnify Stats", + "cat": "advertising", + "tags": [ + 9, + 39, + 48 + ] + }, + "1430": { + "name": "Webstat.se", + "cat": "site_analytics" + }, + "1431": { + "name": "Web.STAT", + "cat": "site_analytics" + }, + "1432": { + "name": "AdFalcon", + "cat": "advertising" + }, + "1433": { + "name": "Blog Rating Tracker", + "cat": "social_media" + }, + "1434": { + "name": "Tealeaf", + "cat": "site_analytics" + }, + "1435": { + "name": "ClixSense", + "cat": "advertising" + }, + "1436": { + "name": "CrowdGather", + "cat": "social_media", + "tags": [ + 46 + ] + }, + "1437": { + "name": "MineWhat", + "cat": "advertising" + }, + "1439": { + "name": "M4N", + "cat": "advertising" + }, + "1440": { + "name": "Daisycon", + "cat": "advertising" + }, + "1441": { + "name": "Affiliate4You", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1443": { + "name": "BOL Affiliate Program", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1444": { + "name": "A8", + "cat": "advertising" + }, + "1445": { + "name": "ValueCommerce", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1446": { + "name": "CheckMyStats", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1447": { + "name": "dgm", + "cat": "advertising" + }, + "1448": { + "name": "Comm100", + "cat": "customer_interaction" + }, + "1449": { + "name": "ChatWing", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "1450": { + "name": "RedTram", + "cat": "advertising" + }, + "1451": { + "name": "Mobify", + "cat": "advertising" + }, + "1452": { + "name": "Greystripe", + "cat": "advertising" + }, + "1453": { + "name": "Moat", + "cat": "advertising" + }, + "1454": { + "name": "Email Attitude", + "cat": "advertising" + }, + "1455": { + "name": "Net Communities", + "cat": "advertising" + }, + "1456": { + "name": "Smart Device Media", + "cat": "advertising" + }, + "1457": { + "name": "Qualaroo", + "cat": "site_analytics" + }, + "1458": { + "name": "Rating@Mail.Ru", + "cat": "social_media" + }, + "1459": { + "name": "Lexity", + "cat": "advertising" + }, + "1460": { + "name": "Needle", + "cat": "customer_interaction", + "tags": [ + 39 + ] + }, + "1461": { + "name": "MegaIndex", + "cat": "advertising" + }, + "1462": { + "name": "Google JSAPI Stats Collection", + "cat": "site_analytics" + }, + "1463": { + "name": "Bounce Exchange", + "cat": "advertising" + }, + "1465": { + "name": "Anametrix", + "cat": "site_analytics" + }, + "1466": { + "name": "AdDynamics", + "cat": "advertising" + }, + "1467": { + "name": "adGENIE", + "cat": "advertising" + }, + "1468": { + "name": "Affectv", + "cat": "advertising" + }, + "1469": { + "name": "Audience2Media", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "1470": { + "name": "Digitize", + "cat": "advertising" + }, + "1471": { + "name": "Metrigo", + "cat": "advertising" + }, + "1472": { + "name": "Mark & Mini", + "cat": "advertising" + }, + "1473": { + "name": "Advanse", + "cat": "advertising" + }, + "1474": { + "name": "LinkSmart", + "cat": "advertising" + }, + "1475": { + "name": "Allure Media", + "cat": "advertising" + }, + "1476": { + "name": "Jumptap", + "cat": "advertising" + }, + "1477": { + "name": "Generic Social Sharing Widgets", + "cat": "site_analytics", + "tags": [ + 39 + ] + }, + "1478": { + "name": "Nexage", + "cat": "advertising" + }, + "1479": { + "name": "Big Mobile", + "cat": "advertising" + }, + "1480": { + "name": "Tynt", + "cat": "advertising" + }, + "1481": { + "name": "Flux", + "cat": "social_media" + }, + "1482": { + "name": "Mass Relevance", + "cat": "social_media" + }, + "1483": { + "name": "MLN Advertising", + "cat": "advertising" + }, + "1485": { + "name": "LinkedIn Ads", + "cat": "advertising" + }, + "1486": { + "name": "LinkedIn Notice", + "cat": "social_media" + }, + "1487": { + "name": "LongTail Video Analytics", + "cat": "advertising" + }, + "1488": { + "name": "Between Digital", + "cat": "advertising" + }, + "1489": { + "name": "Qrius", + "cat": "social_media" + }, + "1490": { + "name": "Castle Ridge Media", + "cat": "advertising" + }, + "1491": { + "name": "Jet Interactive", + "cat": "site_analytics" + }, + "1492": { + "name": "boo-box", + "cat": "advertising" + }, + "1493": { + "name": "ividence", + "cat": "site_analytics" + }, + "1494": { + "name": "Teads", + "cat": "advertising" + }, + "1495": { + "name": "Surf by Surfingbird", + "cat": "customer_interaction" + }, + "1496": { + "name": "elicit", + "cat": "advertising" + }, + "1497": { + "name": "IdeoClick", + "cat": "advertising" + }, + "1498": { + "name": "nanoRep", + "cat": "customer_interaction", + "tags": [ + 5 + ] + }, + "1499": { + "name": "trendcounter", + "cat": "site_analytics" + }, + "1500": { + "name": "R66T Advertising", + "cat": "advertising" + }, + "1501": { + "name": "6Sense", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "1502": { + "name": "Muscula", + "cat": "site_analytics" + }, + "1504": { + "name": "Mail.Ru Banner Network", + "cat": "advertising" + }, + "1505": { + "name": "Sidecar", + "cat": "site_analytics" + }, + "1506": { + "name": "Kontextua", + "cat": "advertising" + }, + "1507": { + "name": "Linkstorm", + "cat": "customer_interaction" + }, + "1508": { + "name": "Kalooga Widget", + "cat": "advertising" + }, + "1509": { + "name": "InferClick", + "cat": "site_analytics" + }, + "1510": { + "name": "Janrain", + "cat": "site_analytics" + }, + "1511": { + "name": "Accordant Media", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "1512": { + "name": "ADZ", + "cat": "advertising" + }, + "1513": { + "name": "Aerify Media", + "cat": "advertising" + }, + "1514": { + "name": "EQWorks", + "cat": "advertising" + }, + "1515": { + "name": "Eyeview", + "cat": "advertising" + }, + "1516": { + "name": "Bronto", + "cat": "advertising" + }, + "1517": { + "name": "Radware", + "cat": "essential" + }, + "1518": { + "name": "Pulpo Media", + "cat": "advertising" + }, + "1519": { + "name": "GrandSlamMedia", + "cat": "advertising" + }, + "1520": { + "name": "Audience Amplify", + "cat": "advertising" + }, + "1521": { + "name": "Twitter Advertising", + "cat": "advertising", + "tags": [ + 39 + ] + }, + "1522": { + "name": "ShopRunner", + "cat": "customer_interaction" + }, + "1523": { + "name": "SearchBroker", + "cat": "advertising" + }, + "1526": { + "name": "Pingdom", + "cat": "site_analytics" + }, + "1527": { + "name": "AdEffective", + "cat": "advertising" + }, + "1528": { + "name": "Nativo", + "cat": "advertising" + }, + "1529": { + "name": "Blastro Networks", + "cat": "audio_video_player" + }, + "1530": { + "name": "SundaySky", + "cat": "advertising" + }, + "1531": { + "name": "Qualtrics", + "cat": "site_analytics", + "tags": [ + 5, + 6, + 48 + ] + }, + "1532": { + "name": "Hatena", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "1533": { + "name": "Extole", + "cat": "advertising", + "tags": [ + 39, + 48, + 62 + ] + }, + "1534": { + "name": "Monster Advertising", + "cat": "advertising" + }, + "1535": { + "name": "RCS MediaGroup", + "cat": "advertising" + }, + "1536": { + "name": "Cookie Reports", + "cat": "essential" + }, + "1537": { + "name": "Boldchat", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "1538": { + "name": "UserEcho", + "cat": "customer_interaction", + "tags": [ + 5, + 10 + ] + }, + "1539": { + "name": "Trove", + "cat": "customer_interaction", + "tags": [ + 39 + ] + }, + "1540": { + "name": "Segmint", + "cat": "site_analytics" + }, + "1541": { + "name": "Beanstock Media", + "cat": "advertising" + }, + "1542": { + "name": "Superfish", + "cat": "customer_interaction" + }, + "1543": { + "name": "PubSquared", + "cat": "advertising" + }, + "1544": { + "name": "Coradiant", + "cat": "site_analytics" + }, + "1545": { + "name": "Smarter Remarketer", + "cat": "advertising", + "tags": [ + 38 + ] + }, + "1546": { + "name": "DirectAvenue", + "cat": "advertising" + }, + "1547": { + "name": "Ve Interactive", + "cat": "advertising" + }, + "1548": { + "name": "Digital Window", + "cat": "advertising" + }, + "1549": { + "name": "HotKeys", + "cat": "advertising" + }, + "1550": { + "name": "Intelligent Reach", + "cat": "advertising" + }, + "1551": { + "name": "eDigitalResearch", + "cat": "advertising" + }, + "1552": { + "name": "SLI Systems", + "cat": "customer_interaction" + }, + "1553": { + "name": "Unknown Advertisers", + "cat": "comments" + }, + "1554": { + "name": "Locayta", + "cat": "site_analytics" + }, + "1555": { + "name": "WIPmania", + "cat": "site_analytics" + }, + "1556": { + "name": "Liveclicker", + "cat": "customer_interaction" + }, + "1557": { + "name": "Confirmit", + "cat": "advertising" + }, + "1558": { + "name": "PayPal Shopping", + "cat": "advertising" + }, + "1559": { + "name": "Avail", + "cat": "advertising" + }, + "1560": { + "name": "Onefeed", + "cat": "site_analytics" + }, + "1561": { + "name": "HelloSociety", + "cat": "site_analytics" + }, + "1562": { + "name": "MotionPoint", + "cat": "site_analytics" + }, + "1563": { + "name": "Solve Media", + "cat": "advertising" + }, + "1564": { + "name": "SiteApps", + "cat": "customer_interaction" + }, + "1565": { + "name": "Captify", + "cat": "advertising" + }, + "1566": { + "name": "Flite", + "cat": "advertising" + }, + "1567": { + "name": "RightAction", + "cat": "advertising" + }, + "1568": { + "name": "Coroflot Job Feed", + "cat": "advertising" + }, + "1569": { + "name": "Epom", + "cat": "advertising" + }, + "1570": { + "name": "YieldSquare", + "cat": "advertising" + }, + "1571": { + "name": "Spider.Ad", + "cat": "advertising" + }, + "1572": { + "name": "Baidu Ads", + "cat": "advertising" + }, + "1574": { + "name": "Weibo Widget", + "cat": "advertising" + }, + "1575": { + "name": "Sociable Labs", + "cat": "advertising" + }, + "1576": { + "name": "TripleLift", + "cat": "advertising", + "tags": [ + 46, + 48 + ] + }, + "1577": { + "name": "AgilOne", + "cat": "site_analytics" + }, + "1578": { + "name": "EasyAds", + "cat": "advertising" + }, + "1580": { + "name": "Active Performance", + "cat": "advertising" + }, + "1581": { + "name": "Newsmax", + "cat": "advertising" + }, + "1582": { + "name": "TRUSTe Seal", + "cat": "essential" + }, + "1584": { + "name": "Freshplum", + "cat": "advertising" + }, + "1585": { + "name": "8thBridge", + "cat": "advertising" + }, + "1586": { + "name": "Commanders Act (formerly Tag Commander)", + "cat": "essential", + "tags": [ + 8 + ] + }, + "1587": { + "name": "Tedemis", + "cat": "advertising" + }, + "1588": { + "name": "ip-label", + "cat": "site_analytics" + }, + "1589": { + "name": "Hop-Cube", + "cat": "advertising" + }, + "1590": { + "name": "Ometria", + "cat": "advertising" + }, + "1591": { + "name": "Flyertown", + "cat": "site_analytics" + }, + "1592": { + "name": "NET-Metrix", + "cat": "site_analytics" + }, + "1593": { + "name": "Onswipe", + "cat": "advertising" + }, + "1594": { + "name": "Mad Ads Media", + "cat": "advertising" + }, + "1595": { + "name": "ReactX", + "cat": "advertising" + }, + "1596": { + "name": "Adyoulike", + "cat": "advertising" + }, + "1597": { + "name": "Ethnio", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "1598": { + "name": "Umbel", + "cat": "site_analytics" + }, + "1599": { + "name": "Atomz Search", + "cat": "customer_interaction" + }, + "1600": { + "name": "Ziff Davis", + "cat": "advertising" + }, + "1601": { + "name": "Aeris Weather", + "cat": "advertising" + }, + "1602": { + "name": "Virtusize", + "cat": "essential" + }, + "1603": { + "name": "AdExtent", + "cat": "advertising" + }, + "1604": { + "name": "SpeakPipe", + "cat": "customer_interaction" + }, + "1605": { + "name": "Fancy Widget", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "1606": { + "name": "Blue Cherry Group", + "cat": "advertising" + }, + "1607": { + "name": "Olapic", + "cat": "advertising", + "tags": [ + 39, + 64 + ] + }, + "1608": { + "name": "CraftKeys", + "cat": "advertising" + }, + "1609": { + "name": "Cooliris", + "cat": "customer_interaction" + }, + "1610": { + "name": "SOASTA mPulse", + "cat": "site_analytics" + }, + "1611": { + "name": "Emma", + "cat": "advertising", + "tags": [ + 38 + ] + }, + "1612": { + "name": "ChannelIQ Badge", + "cat": "essential" + }, + "1614": { + "name": "Brandmovers", + "cat": "advertising" + }, + "1615": { + "name": "eGain", + "cat": "customer_interaction" + }, + "1617": { + "name": "CallRail", + "cat": "customer_interaction" + }, + "1618": { + "name": "LiveChat", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "1619": { + "name": "ShopSocially", + "cat": "customer_interaction", + "tags": [ + 39 + ] + }, + "1620": { + "name": "500friends", + "cat": "customer_interaction" + }, + "1621": { + "name": "SaleSpider Media", + "cat": "advertising" + }, + "1622": { + "name": "Yotpo", + "cat": "comments" + }, + "1623": { + "name": "BrainSINS", + "cat": "advertising" + }, + "1624": { + "name": "Avenseo", + "cat": "advertising" + }, + "1625": { + "name": "NetBooster Group", + "cat": "advertising" + }, + "1626": { + "name": "Scribit", + "cat": "advertising" + }, + "1627": { + "name": "UserPulse", + "cat": "customer_interaction", + "tags": [ + 10, + 40 + ] + }, + "1628": { + "name": "PageFair", + "cat": "customer_interaction", + "tags": [ + 48 + ] + }, + "1629": { + "name": "ClickCertain", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "1630": { + "name": "Passionfruit", + "cat": "advertising" + }, + "1631": { + "name": "Autonomy Campaign", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "1632": { + "name": "Skysa", + "cat": "customer_interaction" + }, + "1633": { + "name": "TraceView", + "cat": "site_analytics" + }, + "1634": { + "name": "MyFonts Counter", + "cat": "site_analytics", + "tags": [ + 58 + ] + }, + "1635": { + "name": "Commerce Sciences", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "1636": { + "name": "AddShoppers", + "cat": "social_media", + "tags": [ + 39 + ] + }, + "1637": { + "name": "Sift Science", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "1638": { + "name": "FluidSurveys", + "cat": "customer_interaction", + "tags": [ + 6 + ] + }, + "1639": { + "name": "Ahalogy", + "cat": "social_media" + }, + "1640": { + "name": "Monetize Me", + "cat": "advertising" + }, + "1641": { + "name": "Tradelab", + "cat": "advertising" + }, + "1642": { + "name": "adklip", + "cat": "advertising" + }, + "1643": { + "name": "Media.net", + "cat": "advertising" + }, + "1644": { + "name": "Atedra", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1645": { + "name": "Rakuten LinkShare", + "cat": "advertising" + }, + "1646": { + "name": "AccessAnalyzer", + "cat": "site_analytics" + }, + "1647": { + "name": "Smaato", + "cat": "advertising" + }, + "1648": { + "name": "Heap", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "1649": { + "name": "Rokwell", + "cat": "advertising" + }, + "1650": { + "name": "AdProfy", + "cat": "advertising" + }, + "1651": { + "name": "StockTwits", + "cat": "customer_interaction" + }, + "1652": { + "name": "otClick", + "cat": "advertising" + }, + "1653": { + "name": "Chatango", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "1654": { + "name": "SkyGlue", + "cat": "site_analytics" + }, + "1655": { + "name": "eKomi", + "cat": "comments", + "tags": [ + 5, + 39 + ] + }, + "1656": { + "name": "Ai Media Group", + "cat": "advertising" + }, + "1657": { + "name": "77Tracking", + "cat": "site_analytics" + }, + "1658": { + "name": "Sociocast", + "cat": "site_analytics" + }, + "1659": { + "name": "Intent IQ", + "cat": "advertising" + }, + "1661": { + "name": "Groove", + "cat": "customer_interaction" + }, + "1663": { + "name": "Splurgy", + "cat": "advertising" + }, + "1664": { + "name": "HIRO", + "cat": "advertising" + }, + "1665": { + "name": "Social Amp", + "cat": "advertising" + }, + "1666": { + "name": "LCX Digital", + "cat": "advertising" + }, + "1667": { + "name": "FLXONE", + "cat": "advertising" + }, + "1668": { + "name": "Shopping Flux", + "cat": "site_analytics" + }, + "1669": { + "name": "BeezUP", + "cat": "advertising" + }, + "1670": { + "name": "[24]7", + "cat": "customer_interaction" + }, + "1671": { + "name": "SiteWit", + "cat": "advertising" + }, + "1672": { + "name": "Beanstalk Data", + "cat": "advertising" + }, + "1673": { + "name": "OpinionBar", + "cat": "customer_interaction" + }, + "1674": { + "name": "SellPoint", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "1675": { + "name": "Mogo Interactive", + "cat": "advertising" + }, + "1676": { + "name": "Vero", + "cat": "advertising", + "tags": [ + 38, + 41, + 44 + ] + }, + "1677": { + "name": "Ad Peeps", + "cat": "advertising" + }, + "1678": { + "name": "ValidClick", + "cat": "advertising" + }, + "1679": { + "name": "Image Advantage", + "cat": "advertising" + }, + "1680": { + "name": "Exactag", + "cat": "site_analytics" + }, + "1681": { + "name": "webtrack", + "cat": "site_analytics" + }, + "1682": { + "name": "Zappos", + "cat": "advertising" + }, + "1683": { + "name": "adverServe", + "cat": "advertising" + }, + "1684": { + "name": "Customer.io", + "cat": "customer_interaction" + }, + "1685": { + "name": "Yodle", + "cat": "advertising" + }, + "1686": { + "name": "Green Certified Site", + "cat": "customer_interaction" + }, + "1687": { + "name": "JivoSite", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "1688": { + "name": "Click and Chat", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "1689": { + "name": "Adimpact", + "cat": "advertising" + }, + "1690": { + "name": "Jivox", + "cat": "advertising" + }, + "1691": { + "name": "Perfect Market", + "cat": "advertising" + }, + "1692": { + "name": "Speed Shift Media", + "cat": "advertising" + }, + "1693": { + "name": "Amobee", + "cat": "advertising" + }, + "1694": { + "name": "Net Avenir", + "cat": "advertising", + "tags": [ + 46, + 48 + ] + }, + "1695": { + "name": "Synacor", + "cat": "advertising", + "tags": [ + 9 + ] + }, + "1696": { + "name": "ReachJunction", + "cat": "advertising" + }, + "1697": { + "name": "ClickBank", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1698": { + "name": "Sojern", + "cat": "advertising", + "tags": [ + 41 + ] + }, + "1699": { + "name": "Conversions On Demand", + "cat": "essential" + }, + "1700": { + "name": "SourceKnowledge Pixel", + "cat": "advertising" + }, + "1701": { + "name": "Marimedia", + "cat": "advertising" + }, + "1702": { + "name": "Propeller Ads", + "cat": "advertising" + }, + "1703": { + "name": "Advanced Tracker", + "cat": "site_analytics", + "tags": [ + 45, + 48 + ] + }, + "1704": { + "name": "TzeTze", + "cat": "customer_interaction" + }, + "1705": { + "name": "WebSTAT", + "cat": "site_analytics" + }, + "1706": { + "name": "SiteTag", + "cat": "customer_interaction" + }, + "1707": { + "name": "AdMaxim", + "cat": "advertising", + "tags": [ + 41, + 48 + ] + }, + "1708": { + "name": "ClickReport", + "cat": "site_analytics" + }, + "1709": { + "name": "Broadstreet", + "cat": "advertising" + }, + "1710": { + "name": "ad2games", + "cat": "advertising" + }, + "1711": { + "name": "Adsfactor", + "cat": "advertising" + }, + "1712": { + "name": "ExitMonetization", + "cat": "advertising" + }, + "1713": { + "name": "NEORY ", + "cat": "advertising" + }, + "1714": { + "name": "Leitmotiv", + "cat": "advertising" + }, + "1715": { + "name": "LucidMedia Notice", + "cat": "essential" + }, + "1716": { + "name": "Conmio", + "cat": "site_analytics" + }, + "1717": { + "name": "mOcean Mobile", + "cat": "advertising" + }, + "1718": { + "name": "SuperMedia", + "cat": "advertising" + }, + "1720": { + "name": "Velti mGage Visualize", + "cat": "advertising" + }, + "1721": { + "name": "Verve Mobile", + "cat": "advertising" + }, + "1722": { + "name": "YP", + "cat": "advertising" + }, + "1723": { + "name": "Sepyra", + "cat": "advertising" + }, + "1724": { + "name": "Malware", + "cat": "site_analytics" + }, + "1725": { + "name": "Adgile", + "cat": "advertising" + }, + "1726": { + "name": "Deli Ads", + "cat": "advertising" + }, + "1727": { + "name": "Research Now", + "cat": "advertising", + "tags": [ + 41, + 54 + ] + }, + "1728": { + "name": "DM2", + "cat": "advertising" + }, + "1730": { + "name": "Anetwork", + "cat": "advertising" + }, + "1731": { + "name": "iFlyChat", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "1732": { + "name": "Kargo", + "cat": "advertising" + }, + "1733": { + "name": "SAPO Ads", + "cat": "advertising" + }, + "1734": { + "name": "MapLoco", + "cat": "advertising" + }, + "1735": { + "name": "ClickForce", + "cat": "advertising" + }, + "1736": { + "name": "GetConversion", + "cat": "customer_interaction" + }, + "1737": { + "name": "Pixel Media", + "cat": "advertising" + }, + "1738": { + "name": "Devatics", + "cat": "customer_interaction" + }, + "1739": { + "name": "Evergage", + "cat": "customer_interaction" + }, + "1740": { + "name": "AppDynamics", + "cat": "site_analytics" + }, + "1741": { + "name": "Moontoast", + "cat": "advertising", + "tags": [ + 39 + ] + }, + "1742": { + "name": "Adacado", + "cat": "advertising" + }, + "1743": { + "name": "Orange", + "cat": "advertising" + }, + "1744": { + "name": "Pocket Button", + "cat": "site_analytics", + "tags": [ + 39 + ] + }, + "1746": { + "name": "Videoplaza", + "cat": "advertising" + }, + "1747": { + "name": "Adview (Agora)", + "cat": "advertising" + }, + "1748": { + "name": "Gazprom-Media Digital", + "cat": "audio_video_player" + }, + "1749": { + "name": "Aftonbladet Ads", + "cat": "advertising" + }, + "1750": { + "name": "veeseo", + "cat": "audio_video_player" + }, + "1751": { + "name": "Hubert Burda Media", + "cat": "advertising" + }, + "1752": { + "name": "Lanista Concepts", + "cat": "advertising" + }, + "1753": { + "name": "Aplus Analytics", + "cat": "site_analytics" + }, + "1754": { + "name": "Sentry", + "cat": "site_analytics" + }, + "1755": { + "name": "AnonymousAds", + "cat": "advertising" + }, + "1756": { + "name": "Adjal", + "cat": "advertising" + }, + "1757": { + "name": "Envolve", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "1758": { + "name": "AT&T AdWorks", + "cat": "advertising" + }, + "1759": { + "name": "Suggest.io", + "cat": "advertising" + }, + "1760": { + "name": "Crowdynews", + "cat": "social_media" + }, + "1761": { + "name": "Unite", + "cat": "advertising" + }, + "1762": { + "name": "Premonix", + "cat": "advertising" + }, + "1763": { + "name": "OnScroll", + "cat": "advertising" + }, + "1764": { + "name": "DotAndMedia", + "cat": "advertising" + }, + "1765": { + "name": "Grabo Affiliate", + "cat": "advertising" + }, + "1766": { + "name": "Usabilla", + "cat": "customer_interaction", + "tags": [ + 5 + ] + }, + "1767": { + "name": "Kantar Media", + "cat": "advertising", + "tags": [ + 41, + 48 + ] + }, + "1768": { + "name": "Domino Counter", + "cat": "site_analytics" + }, + "1769": { + "name": "i-mobile", + "cat": "advertising" + }, + "1770": { + "name": "RotaBan", + "cat": "advertising" + }, + "1771": { + "name": "Netminers", + "cat": "site_analytics" + }, + "1772": { + "name": "ECONA", + "cat": "site_analytics" + }, + "1773": { + "name": "Gravatar", + "cat": "social_media" + }, + "1774": { + "name": "Yesware", + "cat": "customer_interaction", + "tags": [ + 38 + ] + }, + "1775": { + "name": "AdParlor", + "cat": "advertising" + }, + "1776": { + "name": "DynAd", + "cat": "advertising" + }, + "1777": { + "name": "Barometer", + "cat": "customer_interaction" + }, + "1778": { + "name": "Reformal", + "cat": "customer_interaction" + }, + "1779": { + "name": "Yieldify", + "cat": "advertising", + "tags": [ + 48, + 65 + ] + }, + "1780": { + "name": "Q1Media", + "cat": "advertising" + }, + "1781": { + "name": "PaperG", + "cat": "advertising" + }, + "1782": { + "name": "Project Sunblock", + "cat": "advertising" + }, + "1783": { + "name": "Kupona", + "cat": "advertising" + }, + "1784": { + "name": "SOMA 2", + "cat": "advertising" + }, + "1785": { + "name": "UserRules", + "cat": "customer_interaction" + }, + "1786": { + "name": "Just Premium", + "cat": "advertising" + }, + "1787": { + "name": "IPFingerprint", + "cat": "site_analytics" + }, + "1788": { + "name": "AdTrustMedia", + "cat": "advertising" + }, + "1789": { + "name": "Clickonometrics", + "cat": "advertising" + }, + "1791": { + "name": "Internet BillBoard", + "cat": "advertising" + }, + "1792": { + "name": "e-Viral", + "cat": "advertising" + }, + "1793": { + "name": "TapCommerce", + "cat": "advertising" + }, + "1794": { + "name": "VideoStep", + "cat": "advertising" + }, + "1795": { + "name": "HeyBubble", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "1796": { + "name": "Search123", + "cat": "advertising", + "tags": [ + 45 + ] + }, + "1797": { + "name": "Dratio", + "cat": "site_analytics" + }, + "1798": { + "name": "FluidAds", + "cat": "advertising" + }, + "1799": { + "name": "NCOL", + "cat": "advertising" + }, + "1800": { + "name": "Catchpoint", + "cat": "site_analytics" + }, + "1801": { + "name": "epoq", + "cat": "customer_interaction", + "tags": [ + 45 + ] + }, + "1802": { + "name": "Feedsportal", + "cat": "advertising" + }, + "1803": { + "name": "Informer Widget", + "cat": "site_analytics" + }, + "1804": { + "name": "AdStage", + "cat": "advertising", + "tags": [ + 45, + 48 + ] + }, + "1805": { + "name": "R-Advertising", + "cat": "advertising" + }, + "1806": { + "name": "LiveChatNow", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "1807": { + "name": "CrankyAds", + "cat": "advertising" + }, + "1808": { + "name": "Pub-Fit", + "cat": "advertising", + "tags": [ + 61, + 66 + ] + }, + "1809": { + "name": "USERDIVE", + "cat": "site_analytics" + }, + "1810": { + "name": "WriteUp ClickAnalyzer", + "cat": "site_analytics" + }, + "1811": { + "name": "TAGGY", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "1812": { + "name": "Affiliate-B", + "cat": "advertising" + }, + "1813": { + "name": "Yahoo! Retargetting", + "cat": "advertising" + }, + "1814": { + "name": "activecore", + "cat": "site_analytics" + }, + "1815": { + "name": "logly", + "cat": "site_analytics" + }, + "1816": { + "name": "Logicad", + "cat": "advertising", + "tags": [ + 41 + ] + }, + "1817": { + "name": "BehavioralEngine", + "cat": "advertising" + }, + "1818": { + "name": "Ro2.biz", + "cat": "advertising" + }, + "1819": { + "name": "Coull", + "cat": "advertising" + }, + "1820": { + "name": "Keen IO", + "cat": "site_analytics" + }, + "1821": { + "name": "USERcycle", + "cat": "site_analytics" + }, + "1822": { + "name": "Pure Chat", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "1823": { + "name": "YieldMo", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "1824": { + "name": "Slingpic", + "cat": "advertising", + "tags": [ + 39 + ] + }, + "1825": { + "name": "adFreestyle", + "cat": "advertising" + }, + "1826": { + "name": "ecotag", + "cat": "advertising" + }, + "1828": { + "name": "Rollbar", + "cat": "site_analytics" + }, + "1829": { + "name": "Reactful", + "cat": "advertising" + }, + "1830": { + "name": "Media-clic", + "cat": "advertising" + }, + "1831": { + "name": "ClicKing", + "cat": "advertising" + }, + "1832": { + "name": "BlogAD", + "cat": "advertising" + }, + "1833": { + "name": "Spinnakr", + "cat": "site_analytics" + }, + "1834": { + "name": "Tinypass", + "cat": "essential" + }, + "1835": { + "name": "Yengo", + "cat": "advertising" + }, + "1836": { + "name": "Unofficial GitHub Buttons", + "cat": "customer_interaction" + }, + "1837": { + "name": "Gittip", + "cat": "customer_interaction", + "tags": [ + 39 + ] + }, + "1838": { + "name": "StatusCake", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "1839": { + "name": "M8Lab", + "cat": "advertising" + }, + "1840": { + "name": "Adslot", + "cat": "advertising" + }, + "1841": { + "name": "BidSwitch", + "cat": "advertising" + }, + "1842": { + "name": "Numbate", + "cat": "advertising" + }, + "1843": { + "name": "Effiliation", + "cat": "advertising" + }, + "1844": { + "name": "Cyber Wing", + "cat": "advertising" + }, + "1845": { + "name": "MasterTarget", + "cat": "advertising" + }, + "1846": { + "name": "eTargeting", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "1847": { + "name": "HUBRUS", + "cat": "advertising", + "tags": [ + 48, + 54 + ] + }, + "1848": { + "name": "Smart Leads", + "cat": "advertising" + }, + "1849": { + "name": "Advaction", + "cat": "advertising" + }, + "1850": { + "name": "Psyma", + "cat": "advertising" + }, + "1851": { + "name": "GetMyAd", + "cat": "advertising" + }, + "1852": { + "name": "Admixer", + "cat": "advertising" + }, + "1853": { + "name": "Venatus Media", + "cat": "advertising" + }, + "1856": { + "name": "Crossss", + "cat": "advertising" + }, + "1857": { + "name": "Lucini", + "cat": "advertising", + "tags": [ + 6, + 38, + 39 + ] + }, + "1858": { + "name": "TrafMag", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "1859": { + "name": "GdeSlon", + "cat": "advertising" + }, + "1860": { + "name": "LiveTex", + "cat": "customer_interaction" + }, + "1861": { + "name": "LeadHit", + "cat": "customer_interaction" + }, + "1862": { + "name": "Oh My Stats", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "1863": { + "name": "Aidata", + "cat": "advertising" + }, + "1864": { + "name": "Nolix", + "cat": "advertising" + }, + "1865": { + "name": "Pubble", + "cat": "customer_interaction" + }, + "1866": { + "name": "Argyle Social", + "cat": "social_media" + }, + "1867": { + "name": "Developer Media", + "cat": "advertising" + }, + "1868": { + "name": "Tidbit", + "cat": "customer_interaction" + }, + "1869": { + "name": "Viafoura", + "cat": "advertising", + "tags": [ + 1 + ] + }, + "1870": { + "name": "Sportsbet Affiliates", + "cat": "advertising" + }, + "1871": { + "name": "Affinity.by", + "cat": "advertising" + }, + "1872": { + "name": "ZERO.kz", + "cat": "site_analytics" + }, + "1873": { + "name": "uLogix", + "cat": "advertising" + }, + "1874": { + "name": "Granify", + "cat": "site_analytics" + }, + "1875": { + "name": "12Mnkys", + "cat": "advertising" + }, + "1876": { + "name": "M. P. NEWMEDIA", + "cat": "advertising" + }, + "1877": { + "name": "Darwin Marketing", + "cat": "advertising" + }, + "1878": { + "name": "RevResponse", + "cat": "advertising" + }, + "1879": { + "name": "LINCE Adserver", + "cat": "advertising" + }, + "1880": { + "name": "RTB House", + "cat": "advertising" + }, + "1881": { + "name": "MentAd", + "cat": "advertising" + }, + "1882": { + "name": "MediaPass", + "cat": "advertising" + }, + "1883": { + "name": "Traforet", + "cat": "advertising" + }, + "1884": { + "name": "News Corp Beacon", + "cat": "advertising" + }, + "1885": { + "name": "Caspion", + "cat": "site_analytics" + }, + "1886": { + "name": "ValueAd", + "cat": "advertising" + }, + "1887": { + "name": "Populis", + "cat": "advertising" + }, + "1888": { + "name": "AdPerfect", + "cat": "advertising" + }, + "1889": { + "name": "CoinURL", + "cat": "advertising" + }, + "1890": { + "name": "Pilot", + "cat": "site_analytics" + }, + "1891": { + "name": "Webleads Tracker", + "cat": "site_analytics" + }, + "1892": { + "name": "Flurry", + "cat": "site_analytics" + }, + "1893": { + "name": "Applifier", + "cat": "advertising" + }, + "1894": { + "name": "Kontagent", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "1895": { + "name": "Spruce Media", + "cat": "advertising" + }, + "1896": { + "name": "AdChina", + "cat": "advertising" + }, + "1897": { + "name": "AdMaster.cn", + "cat": "advertising" + }, + "1898": { + "name": "Menlo", + "cat": "advertising" + }, + "1899": { + "name": "Omnicom China", + "cat": "advertising" + }, + "1900": { + "name": "Terren", + "cat": "advertising" + }, + "1901": { + "name": "OptAim", + "cat": "advertising" + }, + "1902": { + "name": "Miaozhen", + "cat": "advertising" + }, + "1903": { + "name": "iClick", + "cat": "advertising" + }, + "1904": { + "name": "Pathful", + "cat": "site_analytics" + }, + "1905": { + "name": "Melt", + "cat": "advertising" + }, + "1906": { + "name": "Widespace", + "cat": "advertising" + }, + "1907": { + "name": "ReachForce", + "cat": "site_analytics" + }, + "1908": { + "name": "Insightera", + "cat": "site_analytics", + "tags": [ + 38, + 54 + ] + }, + "1909": { + "name": "Drip", + "cat": "customer_interaction" + }, + "1910": { + "name": "Exact Drive", + "cat": "advertising" + }, + "1912": { + "name": "MrSkinCash", + "cat": "pornvertising" + }, + "1913": { + "name": "Genesis", + "cat": "advertising" + }, + "1914": { + "name": "Adgorithms", + "cat": "advertising" + }, + "1915": { + "name": "Mobicow", + "cat": "advertising" + }, + "1916": { + "name": "ReaderBoard", + "cat": "social_media" + }, + "1917": { + "name": "Conversions Box", + "cat": "social_media" + }, + "1918": { + "name": "RUMAnalytics", + "cat": "site_analytics" + }, + "1919": { + "name": "ClickIgniter", + "cat": "advertising" + }, + "1920": { + "name": "Metapeople", + "cat": "advertising" + }, + "1921": { + "name": "Taggify", + "cat": "advertising" + }, + "1922": { + "name": "AdsTerra", + "cat": "advertising" + }, + "1923": { + "name": "Brow.si", + "cat": "advertising" + }, + "1924": { + "name": "trueAnthem", + "cat": "advertising" + }, + "1925": { + "name": "ClickMeter", + "cat": "advertising" + }, + "1926": { + "name": "AdEspresso", + "cat": "advertising" + }, + "1927": { + "name": "NET Visibility", + "cat": "advertising" + }, + "1928": { + "name": "Flickr Badge", + "cat": "social_media" + }, + "1929": { + "name": "Advolution", + "cat": "advertising" + }, + "1930": { + "name": "AB Tasty", + "cat": "site_analytics", + "tags": [ + 44 + ] + }, + "1931": { + "name": "MediaShift", + "cat": "advertising" + }, + "1934": { + "name": "Invoca", + "cat": "advertising" + }, + "1935": { + "name": "ekmPinPoint", + "cat": "site_analytics" + }, + "1936": { + "name": "inside", + "cat": "social_media" + }, + "1937": { + "name": "LeadiD", + "cat": "site_analytics" + }, + "1938": { + "name": "Kameleoon", + "cat": "site_analytics", + "tags": [ + 44 + ] + }, + "1939": { + "name": "BreezeAds", + "cat": "advertising" + }, + "1940": { + "name": "H12 Ads", + "cat": "advertising" + }, + "1941": { + "name": "Popcash", + "cat": "advertising" + }, + "1942": { + "name": "CPVAdvertise", + "cat": "advertising" + }, + "1943": { + "name": "Klixfeed", + "cat": "advertising" + }, + "1944": { + "name": "Gloadmarket", + "cat": "advertising" + }, + "1945": { + "name": "Vertoz", + "cat": "advertising" + }, + "1946": { + "name": "vCommission", + "cat": "advertising" + }, + "1947": { + "name": "RUN", + "cat": "advertising" + }, + "1948": { + "name": "Captora", + "cat": "advertising" + }, + "1949": { + "name": "Orange142", + "cat": "advertising" + }, + "1950": { + "name": "Live2Support", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "1951": { + "name": "CueLinks", + "cat": "advertising" + }, + "1952": { + "name": "Triggermail", + "cat": "advertising" + }, + "1953": { + "name": "ValuePubMedia", + "cat": "advertising" + }, + "1954": { + "name": "Green and Red", + "cat": "advertising" + }, + "1955": { + "name": "nPlexMedia", + "cat": "advertising" + }, + "1956": { + "name": "DEX Platform", + "cat": "advertising" + }, + "1957": { + "name": "Linkbucks", + "cat": "advertising" + }, + "1958": { + "name": "BuzzCity", + "cat": "advertising" + }, + "1959": { + "name": "Wykop", + "cat": "social_media" + }, + "1960": { + "name": "Xertive Media", + "cat": "advertising" + }, + "1962": { + "name": "CPM Rocket", + "cat": "advertising" + }, + "1963": { + "name": "appssavvy", + "cat": "advertising" + }, + "1964": { + "name": "NGDATA", + "cat": "advertising" + }, + "1965": { + "name": "Nirror", + "cat": "site_analytics" + }, + "1966": { + "name": "Leadsius", + "cat": "advertising" + }, + "1967": { + "name": "CrowdProcess", + "cat": "customer_interaction" + }, + "1968": { + "name": "ProspectEye", + "cat": "advertising", + "tags": [ + 38, + 48, + 62 + ] + }, + "1969": { + "name": "Adbooth", + "cat": "advertising" + }, + "1970": { + "name": "Generic Affiliate Systems", + "cat": "advertising" + }, + "1971": { + "name": "WebEngage", + "cat": "customer_interaction" + }, + "1972": { + "name": "Ad-Sys", + "cat": "advertising" + }, + "1973": { + "name": "ClickDesk", + "cat": "customer_interaction" + }, + "1974": { + "name": "Affiz CPM", + "cat": "advertising" + }, + "1975": { + "name": "Affiliation France", + "cat": "advertising" + }, + "1976": { + "name": "1sponsor", + "cat": "advertising" + }, + "1977": { + "name": "ClickTripz", + "cat": "advertising" + }, + "1978": { + "name": "trak.io", + "cat": "advertising" + }, + "1979": { + "name": "IQNOMY", + "cat": "site_analytics" + }, + "1980": { + "name": "Teaser.cc", + "cat": "advertising" + }, + "1981": { + "name": "ad.ru", + "cat": "advertising" + }, + "1982": { + "name": "Pluso", + "cat": "social_media" + }, + "1983": { + "name": "YouTube Subscription", + "cat": "customer_interaction" + }, + "1984": { + "name": "TORO", + "cat": "advertising" + }, + "1985": { + "name": "Kiosked", + "cat": "advertising" + }, + "1986": { + "name": "Mooxar", + "cat": "advertising" + }, + "1987": { + "name": "appTV", + "cat": "advertising" + }, + "1988": { + "name": "Sprinkle", + "cat": "audio_video_player" + }, + "1989": { + "name": "Adlux", + "cat": "advertising" + }, + "1990": { + "name": "Constant Contact", + "cat": "advertising", + "tags": [ + 38 + ] + }, + "1991": { + "name": "Skype", + "cat": "customer_interaction", + "tags": [ + 39 + ] + }, + "1992": { + "name": "Qbaka", + "cat": "site_analytics" + }, + "1993": { + "name": "Ocioso", + "cat": "social_media" + }, + "1994": { + "name": "FMAdserving", + "cat": "advertising" + }, + "1995": { + "name": "AdFocus", + "cat": "advertising" + }, + "1996": { + "name": "Puboclic", + "cat": "advertising" + }, + "1997": { + "name": "AlloTraffic", + "cat": "advertising" + }, + "1998": { + "name": "Reactivpub", + "cat": "site_analytics" + }, + "1999": { + "name": "Affiliaweb", + "cat": "advertising" + }, + "2000": { + "name": "AdLantic", + "cat": "advertising" + }, + "2001": { + "name": "Leady", + "cat": "advertising" + }, + "2002": { + "name": "Ideal Media", + "cat": "advertising" + }, + "2003": { + "name": "AdSniper", + "cat": "advertising" + }, + "2004": { + "name": "GetIntent", + "cat": "advertising" + }, + "2005": { + "name": "DataMind", + "cat": "advertising" + }, + "2006": { + "name": "Vi", + "cat": "advertising" + }, + "2007": { + "name": "aitarget", + "cat": "advertising" + }, + "2008": { + "name": "FACETz", + "cat": "advertising" + }, + "2009": { + "name": "Pay-Hit", + "cat": "advertising" + }, + "2010": { + "name": "UpToLike", + "cat": "social_media" + }, + "2011": { + "name": "Advidi", + "cat": "advertising" + }, + "2012": { + "name": "TrustLogo", + "cat": "essential" + }, + "2013": { + "name": "Avid Media", + "cat": "audio_video_player" + }, + "2014": { + "name": "Aim4Media", + "cat": "advertising" + }, + "2015": { + "name": "Burt", + "cat": "advertising" + }, + "2016": { + "name": "ThoughtLeadr", + "cat": "advertising" + }, + "2017": { + "name": "Yeabble", + "cat": "advertising" + }, + "2018": { + "name": "Sub2", + "cat": "advertising" + }, + "2019": { + "name": "Direct Keyword Link", + "cat": "advertising" + }, + "2020": { + "name": "eBay Korea", + "cat": "advertising" + }, + "2021": { + "name": "imad", + "cat": "advertising" + }, + "2022": { + "name": "JS Communications", + "cat": "advertising" + }, + "2023": { + "name": "Streak", + "cat": "customer_interaction", + "tags": [ + 38 + ] + }, + "2024": { + "name": "Dianomi", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "2025": { + "name": "LiveRe", + "cat": "social_media" + }, + "2026": { + "name": "NimbleCommerce", + "cat": "advertising" + }, + "2027": { + "name": "iTunes Link Maker", + "cat": "advertising" + }, + "2028": { + "name": "Clickky", + "cat": "advertising" + }, + "2029": { + "name": "AppendAd", + "cat": "advertising" + }, + "2030": { + "name": "Viral Ad Network", + "cat": "advertising" + }, + "2031": { + "name": "eBay Partner Network", + "cat": "advertising" + }, + "2032": { + "name": "RealClick", + "cat": "advertising" + }, + "2033": { + "name": "WiderPlanet", + "cat": "advertising" + }, + "2034": { + "name": "LinkPrice", + "cat": "advertising" + }, + "2035": { + "name": "AMoAd", + "cat": "advertising" + }, + "2036": { + "name": "Bypass", + "cat": "advertising" + }, + "2037": { + "name": "adcloud", + "cat": "advertising" + }, + "2038": { + "name": "ScaleOut", + "cat": "advertising" + }, + "2039": { + "name": "AdStir", + "cat": "advertising" + }, + "2040": { + "name": "moreAds", + "cat": "advertising" + }, + "2041": { + "name": "Publir", + "cat": "advertising" + }, + "2042": { + "name": "mixi", + "cat": "social_media" + }, + "2043": { + "name": "FlexOffers", + "cat": "advertising" + }, + "2044": { + "name": "MouseStats", + "cat": "advertising" + }, + "2046": { + "name": "MicroPoll", + "cat": "advertising", + "tags": [ + 5, + 6, + 48 + ] + }, + "2047": { + "name": "popIn", + "cat": "social_media" + }, + "2048": { + "name": "Mobalyzer", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "2049": { + "name": "iJento", + "cat": "site_analytics" + }, + "2050": { + "name": "Datalicious SuperTag", + "cat": "essential" + }, + "2051": { + "name": "Datalicious DataCollector", + "cat": "site_analytics" + }, + "2052": { + "name": "Integral Marketing", + "cat": "advertising", + "tags": [ + 61, + 66 + ] + }, + "2053": { + "name": "Aumago", + "cat": "advertising", + "tags": [ + 41, + 54 + ] + }, + "2054": { + "name": "Katana", + "cat": "advertising" + }, + "2055": { + "name": "Sonican", + "cat": "customer_interaction" + }, + "2056": { + "name": "answerbook", + "cat": "advertising" + }, + "2057": { + "name": "Roost", + "cat": "site_analytics" + }, + "2058": { + "name": "Bizible", + "cat": "advertising" + }, + "2059": { + "name": "adsnative", + "cat": "advertising" + }, + "2060": { + "name": "VisualVisitor", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "2061": { + "name": "SpokenLayer", + "cat": "audio_video_player", + "tags": [ + 51 + ] + }, + "2062": { + "name": "eMnet", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "2063": { + "name": "Pt engine", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "2064": { + "name": "ADResult", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "2065": { + "name": "BannerPlay", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "2066": { + "name": "Recruitics", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "2067": { + "name": "Second Media", + "cat": "advertising" + }, + "2068": { + "name": "Admedo", + "cat": "advertising" + }, + "2069": { + "name": "Adcrowd", + "cat": "advertising", + "tags": [ + 41, + 54 + ] + }, + "2070": { + "name": "ad4max", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "2071": { + "name": "adwebster", + "cat": "advertising", + "tags": [ + 9, + 41, + 48 + ] + }, + "2072": { + "name": "Industry Brains", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "2073": { + "name": "The Publisher Desk", + "cat": "advertising" + }, + "2074": { + "name": "YllixMedia", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "2075": { + "name": "Say.ac", + "cat": "advertising", + "tags": [ + 48, + 64 + ] + }, + "2076": { + "name": "Usersnap", + "cat": "customer_interaction", + "tags": [ + 5 + ] + }, + "2077": { + "name": "PopOnClick", + "cat": "advertising", + "tags": [ + 66 + ] + }, + "2078": { + "name": "Fidelity Media", + "cat": "advertising" + }, + "2079": { + "name": "SmarterTrack", + "cat": "advertising", + "tags": [ + 5, + 48 + ] + }, + "2080": { + "name": "Mister Bell", + "cat": "advertising", + "tags": [ + 48, + 54 + ] + }, + "2081": { + "name": "Altitude Digital", + "cat": "advertising" + }, + "2082": { + "name": "Sayyac", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "2083": { + "name": "AOL Be On", + "cat": "advertising", + "tags": [ + 9 + ] + }, + "2084": { + "name": "Kelkoo", + "cat": "advertising", + "tags": [ + 39 + ] + }, + "2085": { + "name": "Heyos", + "cat": "advertising", + "tags": [ + 48, + 54, + 61 + ] + }, + "2086": { + "name": "MoPub", + "cat": "advertising" + }, + "2087": { + "name": "Clickpoint", + "cat": "advertising", + "tags": [ + 38, + 62 + ] + }, + "2088": { + "name": "99stats", + "cat": "site_analytics", + "tags": [ + 48, + 63 + ] + }, + "2089": { + "name": "TrafficForce", + "cat": "advertising", + "tags": [ + 48, + 54 + ] + }, + "2090": { + "name": "Adscience", + "cat": "advertising" + }, + "2091": { + "name": "Bugsnag", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "2092": { + "name": "WisePops", + "cat": "advertising", + "tags": [ + 66 + ] + }, + "2093": { + "name": "MailTrack.io", + "cat": "advertising", + "tags": [ + 38 + ] + }, + "2094": { + "name": "Nextclick", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "2095": { + "name": "Ehavior", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "2096": { + "name": "Email Aptitude", + "cat": "advertising", + "tags": [ + 38 + ] + }, + "2097": { + "name": "PropelAd", + "cat": "social_media", + "tags": [ + 48 + ] + }, + "2098": { + "name": "Refersion", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "2099": { + "name": "Accord Group", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "2100": { + "name": "Signals by HubSpot", + "cat": "site_analytics", + "tags": [ + 38 + ] + }, + "2101": { + "name": "TailTarget", + "cat": "advertising" + }, + "2102": { + "name": "BidTheatre", + "cat": "advertising" + }, + "2103": { + "name": "Petametrics", + "cat": "customer_interaction", + "tags": [ + 48 + ] + }, + "2104": { + "name": "m-pathy", + "cat": "advertising", + "tags": [ + 41 + ] + }, + "2105": { + "name": "Placester", + "cat": "advertising" + }, + "2106": { + "name": "trbo", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "2107": { + "name": "Hsoub", + "cat": "advertising" + }, + "2108": { + "name": "Digicert Trust Seal", + "cat": "essential" + }, + "2109": { + "name": "GeoTrust", + "cat": "essential" + }, + "2110": { + "name": "GoDaddy Site Seal", + "cat": "essential" + }, + "2111": { + "name": "Polar Mobile", + "cat": "advertising" + }, + "2112": { + "name": "Celtra", + "cat": "audio_video_player" + }, + "2113": { + "name": "Auditorius", + "cat": "advertising", + "tags": [ + 54 + ] + }, + "2114": { + "name": "CoBrowser", + "cat": "customer_interaction", + "tags": [ + 10 + ] + }, + "2115": { + "name": "Picreel", + "cat": "site_analytics", + "tags": [ + 45, + 48 + ] + }, + "2116": { + "name": "ContactMe", + "cat": "advertising", + "tags": [ + 5, + 38 + ] + }, + "2117": { + "name": "Leads by Web.com", + "cat": "advertising", + "tags": [ + 45 + ] + }, + "2118": { + "name": "LeadDyno", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "2119": { + "name": "ViralMint", + "cat": "social_media", + "tags": [ + 39, + 63 + ] + }, + "2120": { + "name": "VerticalScope", + "cat": "advertising", + "tags": [ + 45 + ] + }, + "2121": { + "name": "Tomorrow Focus", + "cat": "advertising" + }, + "2122": { + "name": "ADSXtreme", + "cat": "customer_interaction", + "tags": [ + 54 + ] + }, + "2123": { + "name": "HyperComments", + "cat": "comments", + "tags": [ + 5 + ] + }, + "2124": { + "name": "MdotLabs", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "2125": { + "name": "GetKudos", + "cat": "comments", + "tags": [ + 39, + 63 + ] + }, + "2126": { + "name": "RedHelper", + "cat": "customer_interaction", + "tags": [ + 10, + 48 + ] + }, + "2127": { + "name": "Tender", + "cat": "customer_interaction", + "tags": [ + 38 + ] + }, + "2128": { + "name": "Fonts.com", + "cat": "site_analytics", + "tags": [ + 58 + ] + }, + "2129": { + "name": "Polar", + "cat": "advertising", + "tags": [ + 6 + ] + }, + "2130": { + "name": "SeeWhy", + "cat": "site_analytics" + }, + "2131": { + "name": "CartStack", + "cat": "customer_interaction", + "tags": [ + 38, + 62 + ] + }, + "2132": { + "name": "Quartic", + "cat": "site_analytics", + "tags": [ + 38, + 41, + 54 + ] + }, + "2134": { + "name": "Localytics", + "cat": "site_analytics" + }, + "2135": { + "name": "Beslist", + "cat": "advertising" + }, + "2136": { + "name": "ADSKOM", + "cat": "advertising" + }, + "2137": { + "name": "GDM Digital", + "cat": "advertising" + }, + "2138": { + "name": "Adtrace", + "cat": "advertising" + }, + "2139": { + "name": "Intilery", + "cat": "site_analytics" + }, + "2140": { + "name": "Indeed", + "cat": "advertising" + }, + "2141": { + "name": "The ADEX", + "cat": "advertising" + }, + "2142": { + "name": "AdForGames", + "cat": "advertising" + }, + "2144": { + "name": "Conversion Logic", + "cat": "site_analytics" + }, + "2145": { + "name": "EMatch", + "cat": "advertising" + }, + "2146": { + "name": "mainADV", + "cat": "advertising" + }, + "2147": { + "name": "AbandonAid", + "cat": "site_analytics" + }, + "2148": { + "name": "Facebook Custom Audience", + "cat": "advertising" + }, + "2149": { + "name": "GovMetric", + "cat": "site_analytics" + }, + "2150": { + "name": "Akanoo", + "cat": "site_analytics" + }, + "2151": { + "name": "ForceTrac", + "cat": "customer_interaction" + }, + "2152": { + "name": "MI725", + "cat": "advertising" + }, + "2153": { + "name": "AdPushup", + "cat": "advertising" + }, + "2154": { + "name": "Linkwise", + "cat": "advertising" + }, + "2155": { + "name": "ForestView", + "cat": "advertising" + }, + "2156": { + "name": "Geek Chart", + "cat": "customer_interaction" + }, + "2157": { + "name": "Heatmap", + "cat": "site_analytics" + }, + "2158": { + "name": "Adtarget.me", + "cat": "advertising" + }, + "2159": { + "name": "Deqwas", + "cat": "site_analytics" + }, + "2160": { + "name": "Google Dynamic Remarketing", + "cat": "advertising" + }, + "2161": { + "name": "Free Counter", + "cat": "site_analytics" + }, + "2162": { + "name": "Clearstream.TV", + "cat": "advertising" + }, + "2163": { + "name": "AD EBiS", + "cat": "advertising" + }, + "2164": { + "name": "MADNET", + "cat": "advertising" + }, + "2165": { + "name": "Helpful", + "cat": "advertising" + }, + "2166": { + "name": "Hupso", + "cat": "social_media" + }, + "2167": { + "name": "G3NESIS", + "cat": "site_analytics" + }, + "2168": { + "name": "AddInto", + "cat": "customer_interaction" + }, + "2169": { + "name": "Browser-Statistik", + "cat": "site_analytics" + }, + "2170": { + "name": "TrackJS", + "cat": "site_analytics" + }, + "2171": { + "name": "PowerReviews", + "cat": "advertising" + }, + "2172": { + "name": "Fanplayr", + "cat": "advertising" + }, + "2173": { + "name": "ReWords", + "cat": "advertising" + }, + "2174": { + "name": "Yo Button", + "cat": "customer_interaction" + }, + "2175": { + "name": "Amplitude", + "cat": "site_analytics" + }, + "2176": { + "name": "CallbackHunter", + "cat": "customer_interaction" + }, + "2177": { + "name": "SumoMe", + "cat": "site_analytics" + }, + "2178": { + "name": "Distil Networks", + "cat": "essential" + }, + "2179": { + "name": "RapidApe", + "cat": "site_analytics" + }, + "2180": { + "name": "Tom's Native Ads", + "cat": "advertising" + }, + "2181": { + "name": "IP Tracker", + "cat": "site_analytics" + }, + "2182": { + "name": "Context.ad", + "cat": "advertising" + }, + "2183": { + "name": "NDN Player Suite", + "cat": "audio_video_player" + }, + "2184": { + "name": "Google Translate", + "cat": "customer_interaction" + }, + "2185": { + "name": "Adadyn", + "cat": "advertising" + }, + "2186": { + "name": "Fonebox", + "cat": "social_media" + }, + "2187": { + "name": "AVANSER", + "cat": "customer_interaction" + }, + "2188": { + "name": "Delacon", + "cat": "site_analytics" + }, + "2189": { + "name": "Dataxpand", + "cat": "advertising" + }, + "2190": { + "name": "Imedia", + "cat": "advertising" + }, + "2191": { + "name": "SpringBoard", + "cat": "advertising" + }, + "2192": { + "name": "Netbiscuits", + "cat": "site_analytics" + }, + "2193": { + "name": "Sohu", + "cat": "social_media" + }, + "2194": { + "name": "Spot.IM", + "cat": "social_media" + }, + "2195": { + "name": "RevContent", + "cat": "advertising" + }, + "2196": { + "name": "Cygnus", + "cat": "advertising" + }, + "2197": { + "name": "Adshot.de", + "cat": "advertising" + }, + "2198": { + "name": "Zwaar", + "cat": "advertising" + }, + "2199": { + "name": "Hotjar", + "cat": "site_analytics" + }, + "2200": { + "name": "ShareCompany", + "cat": "customer_interaction" + }, + "2201": { + "name": "Insitez", + "cat": "customer_interaction" + }, + "2202": { + "name": "Fusion Ads", + "cat": "advertising" + }, + "2203": { + "name": "LaunchBit", + "cat": "advertising" + }, + "2204": { + "name": "Rooster", + "cat": "site_analytics" + }, + "2205": { + "name": "AdBox", + "cat": "advertising" + }, + "2206": { + "name": "Res-meter", + "cat": "site_analytics" + }, + "2207": { + "name": "Vidible", + "cat": "advertising" + }, + "2208": { + "name": "Trackuity", + "cat": "customer_interaction" + }, + "2209": { + "name": "Adtima", + "cat": "advertising" + }, + "2210": { + "name": "Zalo", + "cat": "customer_interaction" + }, + "2211": { + "name": "Ants", + "cat": "social_media" + }, + "2212": { + "name": "display block", + "cat": "advertising" + }, + "2213": { + "name": "Pressly", + "cat": "advertising" + }, + "2214": { + "name": "Outbanner", + "cat": "advertising" + }, + "2215": { + "name": "Gumroad", + "cat": "social_media" + }, + "2216": { + "name": "Genoo", + "cat": "advertising" + }, + "2217": { + "name": "Master Banner Network", + "cat": "advertising" + }, + "2218": { + "name": "Feedify", + "cat": "social_media" + }, + "2219": { + "name": "Trustev", + "cat": "site_analytics" + }, + "2220": { + "name": "Pulse Insights", + "cat": "site_analytics" + }, + "2221": { + "name": "Now Interact", + "cat": "site_analytics" + }, + "2222": { + "name": "Reevoo", + "cat": "advertising" + }, + "2224": { + "name": "Liqwid", + "cat": "advertising" + }, + "2225": { + "name": "Pushbullet", + "cat": "customer_interaction" + }, + "2226": { + "name": "Turbo", + "cat": "advertising" + }, + "2227": { + "name": "Target Fuel", + "cat": "site_analytics" + }, + "2228": { + "name": "ManyContacts", + "cat": "advertising", + "tags": [ + 40 + ] + }, + "2229": { + "name": "BenchTag", + "cat": "advertising" + }, + "2230": { + "name": "Knoopstat", + "cat": "site_analytics" + }, + "2232": { + "name": "Decibel Insight", + "cat": "site_analytics" + }, + "2233": { + "name": "Optinmonster", + "cat": "site_analytics" + }, + "2234": { + "name": "Adinton", + "cat": "site_analytics" + }, + "2235": { + "name": "Treasuredata", + "cat": "site_analytics" + }, + "2236": { + "name": "Pimcore", + "cat": "advertising" + }, + "2237": { + "name": "WEDCS", + "cat": "advertising" + }, + "2238": { + "name": "SendtoNews", + "cat": "advertising" + }, + "2239": { + "name": "Mediametrics", + "cat": "social_media" + }, + "2241": { + "name": "TrenDemon", + "cat": "site_analytics" + }, + "2243": { + "name": "Rhythmxchange", + "cat": "advertising" + }, + "2244": { + "name": "Bebi Media", + "cat": "advertising" + }, + "2246": { + "name": "Movable Ink", + "cat": "customer_interaction" + }, + "2247": { + "name": "Index Exchange", + "cat": "site_analytics" + }, + "2248": { + "name": "Connected Interactive", + "cat": "advertising" + }, + "2249": { + "name": "First Impression", + "cat": "advertising" + }, + "2250": { + "name": "Elastic Ad", + "cat": "advertising" + }, + "2251": { + "name": "Instinctive", + "cat": "advertising" + }, + "2252": { + "name": "PubExchange", + "cat": "advertising" + }, + "2253": { + "name": "Next Click Ads", + "cat": "site_analytics" + }, + "2254": { + "name": "Aloodo", + "cat": "site_analytics" + }, + "2255": { + "name": "BotScanner", + "cat": "site_analytics" + }, + "2256": { + "name": "Bankrate", + "cat": "customer_interaction" + }, + "2257": { + "name": "Artificial Computation Intelligence", + "cat": "site_analytics" + }, + "2258": { + "name": "Boomtrain", + "cat": "customer_interaction" + }, + "2259": { + "name": "Elastic Beanstalk", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "2260": { + "name": "Blue Triangle", + "cat": "site_analytics" + }, + "2261": { + "name": "Webcollage", + "cat": "customer_interaction" + }, + "2262": { + "name": "Spendcrazy", + "cat": "social_media" + }, + "2263": { + "name": "Akamai Cookie Sync", + "cat": "site_analytics" + }, + "2264": { + "name": "iovation", + "cat": "essential" + }, + "2265": { + "name": "Wishpond", + "cat": "customer_interaction" + }, + "2266": { + "name": "Bookingbug", + "cat": "customer_interaction" + }, + "2267": { + "name": "Leadexposer", + "cat": "advertising" + }, + "2268": { + "name": "VCMedia", + "cat": "advertising" + }, + "2270": { + "name": "Retail Rocket", + "cat": "advertising" + }, + "2271": { + "name": "ad120m", + "cat": "advertising" + }, + "2272": { + "name": "Ad-Center", + "cat": "site_analytics" + }, + "2275": { + "name": "247-inc", + "cat": "customer_interaction" + }, + "2276": { + "name": "Google AdServices", + "cat": "advertising" + }, + "2277": { + "name": "Google Syndication", + "cat": "advertising" + }, + "2278": { + "name": "Honeybadger", + "cat": "site_analytics" + }, + "2279": { + "name": "BlueConic", + "cat": "advertising" + }, + "2280": { + "name": "Trustpilot", + "cat": "customer_interaction" + }, + "2281": { + "name": "Oplytic", + "cat": "site_analytics" + }, + "2283": { + "name": "Adosia", + "cat": "advertising" + }, + "2284": { + "name": "Bombora", + "cat": "site_analytics" + }, + "2285": { + "name": "LockerDome", + "cat": "social_media" + }, + "2286": { + "name": "Modern Impact", + "cat": "advertising" + }, + "2287": { + "name": "Kixer", + "cat": "advertising" + }, + "2288": { + "name": "imonomy", + "cat": "site_analytics" + }, + "2289": { + "name": "IP Mappers", + "cat": "site_analytics" + }, + "2290": { + "name": "VIVALU", + "cat": "advertising" + }, + "2291": { + "name": "Dotter", + "cat": "customer_interaction" + }, + "2292": { + "name": "Survicate", + "cat": "customer_interaction" + }, + "2293": { + "name": "SBox", + "cat": "customer_interaction" + }, + "2294": { + "name": "Snap Engage", + "cat": "customer_interaction" + }, + "2295": { + "name": "Connatix", + "cat": "advertising" + }, + "2296": { + "name": "Revee", + "cat": "site_analytics" + }, + "2297": { + "name": "CogoCast", + "cat": "advertising" + }, + "2298": { + "name": "Sendigo", + "cat": "site_analytics", + "tags": [ + 54 + ] + }, + "2299": { + "name": "AdCompass", + "cat": "site_analytics", + "tags": [ + 54 + ] + }, + "2300": { + "name": "emetriq", + "cat": "advertising" + }, + "2301": { + "name": "IgnitionOne", + "cat": "site_analytics" + }, + "2302": { + "name": "Answers Cloud Service", + "cat": "comments" + }, + "2304": { + "name": "adMarketplace", + "cat": "advertising" + }, + "2305": { + "name": "Symantec (Norton Secured Seal)", + "cat": "essential" + }, + "2306": { + "name": "MediaMath (Sync)", + "cat": "advertising" + }, + "2307": { + "name": "Adobe Dynamic Tag Management", + "cat": "essential" + }, + "2308": { + "name": "NY Times TagX", + "cat": "site_analytics" + }, + "2309": { + "name": "Shopper Approved", + "cat": "customer_interaction" + }, + "2310": { + "name": "fast.font.net", + "cat": "customer_interaction", + "tags": [ + 58 + ] + }, + "2311": { + "name": "IO Intelligent Optimisations", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "2314": { + "name": "Loop11", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "2315": { + "name": "Georama", + "cat": "audio_video_player", + "tags": [ + 9 + ] + }, + "2316": { + "name": "Google Travel Adds", + "cat": "advertising", + "tags": [ + 47 + ] + }, + "2317": { + "name": "Gridsum", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "2318": { + "name": "Omni Retail Group", + "cat": "customer_interaction", + "tags": [ + 36 + ] + }, + "2319": { + "name": "Invodo", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "2320": { + "name": "LeadPlace", + "cat": "site_analytics", + "tags": [ + 49 + ] + }, + "2321": { + "name": "MediaPost", + "cat": "essential", + "tags": [ + 46 + ] + }, + "2322": { + "name": "Digital Point", + "cat": "essential", + "tags": [ + 49 + ] + }, + "2323": { + "name": "Rythmxchange", + "cat": "audio_video_player", + "tags": [ + 9 + ] + }, + "2324": { + "name": "Yahoo Ad Manager Plus", + "cat": "advertising", + "tags": [ + 47 + ] + }, + "2325": { + "name": "AOL CDN", + "cat": "site_analytics", + "tags": [ + 48 + ] + }, + "2326": { + "name": "Relestar", + "cat": "site_analytics" + }, + "2327": { + "name": "ServeSharp", + "cat": "site_analytics" + }, + "2328": { + "name": "MediaDesk", + "cat": "advertising" + }, + "2329": { + "name": "Instant Check Mate", + "cat": "customer_interaction" + }, + "2330": { + "name": "affilinet", + "cat": "advertising" + }, + "2331": { + "name": "Vox", + "cat": "customer_interaction" + }, + "2333": { + "name": "Google Users", + "cat": "customer_interaction" + }, + "2334": { + "name": "SupplyFrame", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "2335": { + "name": "Global", + "cat": "site_analytics" + }, + "2336": { + "name": "Wistia", + "cat": "site_analytics" + }, + "2337": { + "name": "Twitter Syndication", + "cat": "social_media" + }, + "2339": { + "name": "NGage INC.", + "cat": "site_analytics" + }, + "2345": { + "name": "LeadInspector", + "cat": "site_analytics", + "tags": [ + 62 + ] + }, + "2346": { + "name": "Geenie", + "cat": "site_analytics", + "tags": [ + 45 + ] + }, + "2347": { + "name": "SmartClip", + "cat": "advertising", + "tags": [ + 48 + ] + }, + "2348": { + "name": "StickyAds", + "cat": "advertising", + "tags": [ + 46 + ] + }, + "2349": { + "name": "Immanalytics", + "cat": "customer_interaction", + "tags": [ + 48 + ] + }, + "2355": { + "name": "AdX", + "cat": "advertising" + }, + "2356": { + "name": "Knotch", + "cat": "customer_interaction" + }, + "2357": { + "name": "TrajetTrax", + "cat": "site_analytics" + }, + "2358": { + "name": "DragetLinx", + "cat": "site_analytics" + }, + "2359": { + "name": "CCM Benchmark", + "cat": "customer_interaction" + }, + "2360": { + "name": "Optimatic", + "cat": "audio_video_player" + }, + "2361": { + "name": "OpinionLab", + "cat": "site_analytics" + }, + "2362": { + "name": "Vidora", + "cat": "audio_video_player" + }, + "2363": { + "name": "Metrical", + "cat": "site_analytics" + }, + "2364": { + "name": "Datanyze", + "cat": "site_analytics" + }, + "2365": { + "name": "Campus Explorer", + "cat": "site_analytics" + }, + "2366": { + "name": "Bunchbox", + "cat": "site_analytics" + }, + "2367": { + "name": "Mouse3K", + "cat": "advertising" + }, + "2368": { + "name": "Pixalate", + "cat": "advertising" + }, + "2369": { + "name": "AppLovin", + "cat": "advertising" + }, + "2370": { + "name": "Kickfactory", + "cat": "advertising" + }, + "2371": { + "name": "RecoPick", + "cat": "advertising" + }, + "2372": { + "name": "FullStory", + "cat": "site_analytics" + }, + "2373": { + "name": "Raygun", + "cat": "advertising" + }, + "2374": { + "name": "AudienceInsight", + "cat": "site_analytics" + }, + "2375": { + "name": "Mediapost Communications", + "cat": "site_analytics" + }, + "2376": { + "name": "CRM4D", + "cat": "site_analytics" + }, + "2377": { + "name": "FinanceADs", + "cat": "advertising" + }, + "2378": { + "name": "Online Success", + "cat": "advertising" + }, + "2379": { + "name": "Virool", + "cat": "audio_video_player" + }, + "2380": { + "name": "Airbrake", + "cat": "advertising" + }, + "2381": { + "name": "Idio", + "cat": "advertising" + }, + "2382": { + "name": "Jumpstart Tagging Solutions", + "cat": "site_analytics" + }, + "2383": { + "name": "163", + "cat": "advertising" + }, + "2384": { + "name": "AkaNe", + "cat": "advertising" + }, + "2385": { + "name": "Supership", + "cat": "advertising" + }, + "2386": { + "name": "Advark", + "cat": "advertising" + }, + "2387": { + "name": "Answers Cloud", + "cat": "advertising" + }, + "2388": { + "name": "VEE24", + "cat": "audio_video_player" + }, + "2389": { + "name": "Live800", + "cat": "customer_interaction" + }, + "2390": { + "name": "Muscula", + "cat": "advertising" + }, + "2391": { + "name": "Triggerbee", + "cat": "customer_interaction" + }, + "2392": { + "name": "Medi8", + "cat": "site_analytics" + }, + "2393": { + "name": "AFS Analystics", + "cat": "site_analytics" + }, + "2394": { + "name": "Beeswax", + "cat": "advertising" + }, + "2395": { + "name": "Beeketing", + "cat": "advertising" + }, + "2396": { + "name": "Adthrive", + "cat": "advertising" + }, + "2397": { + "name": "Retention Science", + "cat": "advertising" + }, + "2398": { + "name": "Branch Metrics", + "cat": "advertising" + }, + "2399": { + "name": "SSP Inc.", + "cat": "site_analytics" + }, + "2400": { + "name": "Unilever Food Solutions", + "cat": "site_analytics" + }, + "2401": { + "name": "Medio", + "cat": "site_analytics" + }, + "2402": { + "name": "Tiller", + "cat": "advertising" + }, + "2403": { + "name": "Sales Mango", + "cat": "site_analytics" + }, + "2404": { + "name": "Everstring", + "cat": "site_analytics" + }, + "2405": { + "name": "ADJS", + "cat": "advertising" + }, + "2406": { + "name": "Contentwrx", + "cat": "site_analytics" + }, + "2407": { + "name": "Flipp", + "cat": "site_analytics" + }, + "2408": { + "name": "Video Desk", + "cat": "audio_video_player" + }, + "2409": { + "name": "Roadrunner Sports", + "cat": "site_analytics" + }, + "2410": { + "name": "Group By Cloud", + "cat": "advertising" + }, + "2411": { + "name": "Hatchbuck", + "cat": "site_analytics" + }, + "2412": { + "name": "Addvalue", + "cat": "site_analytics" + }, + "2413": { + "name": "Vuukle", + "cat": "site_analytics" + }, + "2414": { + "name": "Engage Sciences", + "cat": "site_analytics" + }, + "2415": { + "name": "SheerID", + "cat": "advertising" + }, + "2416": { + "name": "Live Help Now", + "cat": "customer_interaction" + }, + "2417": { + "name": "Tawk", + "cat": "customer_interaction" + }, + "2418": { + "name": "Trigger Mail Marketing", + "cat": "advertising" + }, + "2419": { + "name": "Anvato", + "cat": "audio_video_player" + }, + "2420": { + "name": "Cheetahmail", + "cat": "site_analytics" + }, + "2421": { + "name": "Propel Marketing", + "cat": "advertising" + }, + "2422": { + "name": "Optimonk", + "cat": "site_analytics" + }, + "2423": { + "name": "Wanelo", + "cat": "customer_interaction" + }, + "2424": { + "name": "MoZoo", + "cat": "advertising" + }, + "2425": { + "name": "Zoho", + "cat": "site_analytics" + }, + "2426": { + "name": "Open Share Count", + "cat": "advertising" + }, + "2427": { + "name": "Radio.com", + "cat": "customer_interaction" + }, + "2428": { + "name": "Ad Scoops", + "cat": "advertising" + }, + "2429": { + "name": "True Fit", + "cat": "advertising" + }, + "2430": { + "name": "RTK.io", + "cat": "advertising" + }, + "2431": { + "name": "Feefo", + "cat": "customer_interaction" + }, + "2432": { + "name": "Click Back", + "cat": "advertising" + }, + "2433": { + "name": "Admatic", + "cat": "advertising" + }, + "2434": { + "name": "Monarch Ads", + "cat": "advertising" + }, + "2435": { + "name": "BDEX", + "cat": "advertising" + }, + "2436": { + "name": "FuelX", + "cat": "advertising" + }, + "2437": { + "name": "Target 2 Sell", + "cat": "advertising" + }, + "2438": { + "name": "Tidio", + "cat": "customer_interaction" + }, + "2439": { + "name": "Yesmail", + "cat": "advertising" + }, + "2440": { + "name": "Persio", + "cat": "advertising" + }, + "2441": { + "name": "Bridge", + "cat": "advertising" + }, + "2442": { + "name": "Chin Media", + "cat": "advertising" + }, + "2443": { + "name": "Sao Bac Dau", + "cat": "advertising" + }, + "2444": { + "name": "Exponeo", + "cat": "advertising" + }, + "2445": { + "name": "Yozio", + "cat": "advertising" + }, + "2446": { + "name": "LinkUp", + "cat": "site_analytics" + }, + "2447": { + "name": "Jobs 2 Careers", + "cat": "advertising" + }, + "2448": { + "name": "Triblio", + "cat": "site_analytics" + }, + "2449": { + "name": "Leading Reports", + "cat": "advertising" + }, + "2450": { + "name": "Gravity4", + "cat": "advertising" + }, + "2451": { + "name": "Brightcove Player", + "cat": "audio_video_player" + }, + "2452": { + "name": "SiteImprove Analytics", + "cat": "site_analytics" + }, + "2453": { + "name": "Google Publisher Tags", + "cat": "advertising" + }, + "2454": { + "name": "Clicks 4 Ads", + "cat": "advertising" + }, + "2455": { + "name": "Naver Search", + "cat": "customer_interaction" + }, + "2456": { + "name": "Naver", + "cat": "advertising" + }, + "2457": { + "name": "Smartsupp", + "cat": "advertising" + }, + "2459": { + "name": "Capturly", + "cat": "site_analytics" + }, + "2460": { + "name": "Adpop", + "cat": "advertising" + }, + "2461": { + "name": "PopMyAds", + "cat": "advertising" + }, + "2462": { + "name": "minute.ly", + "cat": "audio_video_player" + }, + "2463": { + "name": "Adnymics", + "cat": "advertising" + }, + "2464": { + "name": "CANDDI", + "cat": "site_analytics" + }, + "2465": { + "name": "Bannersnack", + "cat": "advertising" + }, + "2466": { + "name": "Push Engage", + "cat": "customer_interaction" + }, + "2467": { + "name": "Sharpspring", + "cat": "site_analytics" + }, + "2469": { + "name": "Playbuzz", + "cat": "customer_interaction" + }, + "2470": { + "name": "Adnow", + "cat": "advertising" + }, + "2472": { + "name": "Spoutable", + "cat": "advertising" + }, + "2473": { + "name": "Limk Widget", + "cat": "advertising" + }, + "2474": { + "name": "Limk Loader", + "cat": "advertising" + }, + "2475": { + "name": "Revenue", + "cat": "advertising" + }, + "2478": { + "name": "Airpush", + "cat": "advertising" + }, + "2486": { + "name": "Comscore", + "cat": "advertising" + }, + "2491": { + "name": "Facebook", + "cat": "advertising" + }, + "2498": { + "name": "OneSignal", + "cat": "essential" + }, + "2516": { + "name": "Viral Loops", + "cat": "customer_interaction" + }, + "2517": { + "name": "UserReport-Analytics", + "cat": "site_analytics" + }, + "2518": { + "name": "SnackTV-Player", + "cat": "audio_video_player" + }, + "2519": { + "name": "SnackTV", + "cat": "site_analytics" + }, + "2520": { + "name": "Warp.ly", + "cat": "site_analytics" + }, + "2521": { + "name": "Heureka-Widget", + "cat": "advertising" + }, + "2522": { + "name": "Bitrix24", + "cat": "advertising" + }, + "2523": { + "name": "Yottly", + "cat": "advertising" + }, + "2524": { + "name": "Adglue", + "cat": "advertising" + }, + "2525": { + "name": "Commission Factory", + "cat": "site_analytics" + }, + "2526": { + "name": "Site Stratos", + "cat": "advertising" + }, + "2527": { + "name": "Kméléo", + "cat": "advertising" + }, + "2528": { + "name": "Silverpop", + "cat": "advertising" + }, + "2529": { + "name": "Amazon Mobile Ads", + "cat": "advertising" + }, + "2530": { + "name": "JW Player", + "cat": "audio_video_player" + }, + "2531": { + "name": "DoubleClick Ad Exchange-Seller", + "cat": "advertising" + }, + "2532": { + "name": "DoubleClick Ad Exchange-Buyer", + "cat": "advertising" + }, + "2533": { + "name": "Adelphic", + "cat": "site_analytics" + }, + "2534": { + "name": "Venyoo", + "cat": "customer_interaction" + }, + "2535": { + "name": "Callback KIller", + "cat": "customer_interaction" + }, + "2536": { + "name": "Lytics", + "cat": "site_analytics" + }, + "2537": { + "name": "Cleversite", + "cat": "customer_interaction" + }, + "2538": { + "name": "Shop Target", + "cat": "advertising" + }, + "2539": { + "name": "LeadGENIC", + "cat": "advertising" + }, + "2540": { + "name": "LeadGENIC Chat", + "cat": "customer_interaction" + }, + "2541": { + "name": "LeadGENIC Mobile", + "cat": "customer_interaction" + }, + "2542": { + "name": "AdvertServe", + "cat": "advertising" + }, + "2543": { + "name": "Early Birds", + "cat": "advertising" + }, + "2544": { + "name": "Fluent", + "cat": "advertising" + }, + "2545": { + "name": "WWWPromoter", + "cat": "advertising" + }, + "2546": { + "name": "Top Mail", + "cat": "site_analytics" + }, + "2547": { + "name": "Earnify", + "cat": "advertising" + }, + "2548": { + "name": "Forensiq", + "cat": "site_analytics" + }, + "2549": { + "name": "Filament.io", + "cat": "advertising" + }, + "2550": { + "name": "BBB Seals", + "cat": "customer_interaction" + }, + "2551": { + "name": "Event Optimize", + "cat": "advertising" + }, + "2552": { + "name": "Adprotected", + "cat": "advertising" + }, + "2553": { + "name": "SNT Media", + "cat": "customer_interaction" + }, + "2554": { + "name": "Clerk.io", + "cat": "advertising" + }, + "2556": { + "name": "Hearst Digital Studios", + "cat": "audio_video_player" + }, + "2557": { + "name": "Sales Feed", + "cat": "advertising" + }, + "2558": { + "name": "Gannett Media", + "cat": "audio_video_player" + }, + "2559": { + "name": "Admeo Widget", + "cat": "advertising" + }, + "2560": { + "name": "Admeo", + "cat": "advertising" + }, + "2561": { + "name": "Celebrus", + "cat": "site_analytics" + }, + "2562": { + "name": "Aderz Media", + "cat": "advertising" + }, + "2564": { + "name": "unibet", + "cat": "customer_interaction" + }, + "2565": { + "name": "Pricespider", + "cat": "advertising" + }, + "2566": { + "name": "Mercado-Ads", + "cat": "advertising" + }, + "2567": { + "name": "Mercado-Analytics", + "cat": "site_analytics" + }, + "2568": { + "name": "Mercado", + "cat": "customer_interaction" + }, + "2570": { + "name": "Blastam", + "cat": "advertising" + }, + "2571": { + "name": "Symphony Talent", + "cat": "customer_interaction" + }, + "2572": { + "name": "Pushcrew", + "cat": "customer_interaction" + }, + "2573": { + "name": "Conde Nast", + "cat": "advertising" + }, + "2575": { + "name": "Hubspot Forms", + "cat": "customer_interaction" + }, + "2576": { + "name": "Leadpages", + "cat": "site_analytics" + }, + "2577": { + "name": "Kortx", + "cat": "site_analytics" + }, + "2578": { + "name": "Crossroads WOW", + "cat": "customer_interaction" + }, + "2579": { + "name": "Brainly", + "cat": "social_media" + }, + "2580": { + "name": "Lucid", + "cat": "advertising" + }, + "2581": { + "name": "Storify", + "cat": "advertising" + }, + "2582": { + "name": "UNBXD", + "cat": "site_analytics" + }, + "2583": { + "name": "Circulate", + "cat": "site_analytics" + }, + "2584": { + "name": "Setrow", + "cat": "site_analytics" + }, + "2585": { + "name": "Star", + "cat": "site_analytics" + }, + "2586": { + "name": "24log", + "cat": "site_analytics" + }, + "2587": { + "name": "Grouvi", + "cat": "site_analytics" + }, + "2588": { + "name": "Intimate Merger", + "cat": "site_analytics" + }, + "2589": { + "name": "Stroer", + "cat": "site_analytics" + }, + "2590": { + "name": "Strava", + "cat": "site_analytics" + }, + "2591": { + "name": "Spider Ads", + "cat": "advertising" + }, + "2592": { + "name": "Order Groove", + "cat": "advertising" + }, + "2593": { + "name": "Gild", + "cat": "site_analytics" + }, + "2594": { + "name": "Fresh Desk Chat", + "cat": "customer_interaction" + }, + "2595": { + "name": "Get Response", + "cat": "customer_interaction" + }, + "2596": { + "name": "GMO", + "cat": "advertising" + }, + "2597": { + "name": "Treasure Data", + "cat": "site_analytics" + }, + "2598": { + "name": "Azalead", + "cat": "advertising" + }, + "2599": { + "name": "Match.com", + "cat": "advertising" + }, + "2600": { + "name": "Distroscale", + "cat": "site_analytics" + }, + "2601": { + "name": "Adobe Site Catalyst", + "cat": "site_analytics" + }, + "2602": { + "name": "Hive Networks", + "cat": "advertising" + }, + "2603": { + "name": "Connecto", + "cat": "site_analytics" + }, + "2604": { + "name": "Atomex", + "cat": "site_analytics" + }, + "2605": { + "name": "Usability Tools", + "cat": "site_analytics" + }, + "2606": { + "name": "Cubed", + "cat": "site_analytics" + }, + "2607": { + "name": "Zencoder", + "cat": "audio_video_player" + }, + "2608": { + "name": "Webmecanik", + "cat": "site_analytics" + }, + "2609": { + "name": "Cookie Script", + "cat": "site_analytics" + }, + "2610": { + "name": "Highwinds", + "cat": "site_analytics" + }, + "2611": { + "name": "Ooyala Player", + "cat": "audio_video_player" + }, + "2612": { + "name": "Live Journal", + "cat": "site_analytics" + }, + "2613": { + "name": "Parsely", + "cat": "site_analytics" + }, + "2614": { + "name": "Retargeting.cl", + "cat": "advertising" + }, + "2615": { + "name": "Jumplead", + "cat": "site_analytics" + }, + "2616": { + "name": "Add To Calendar", + "cat": "customer_interaction" + }, + "2617": { + "name": "Earnify Tracker", + "cat": "site_analytics" + }, + "2618": { + "name": "Clever Push", + "cat": "site_analytics" + }, + "2619": { + "name": "Mail.ru counter", + "cat": "customer_interaction" + }, + "2620": { + "name": "Mux", + "cat": "audio_video_player" + }, + "2621": { + "name": "CrossEngage", + "cat": "site_analytics" + }, + "2622": { + "name": "StartAFire Anlytics", + "cat": "site_analytics" + }, + "2623": { + "name": "StartAFire", + "cat": "site_analytics" + }, + "2624": { + "name": "ADman Media", + "cat": "advertising" + }, + "2625": { + "name": "Let Reach", + "cat": "customer_interaction" + }, + "2626": { + "name": "Ycontent", + "cat": "audio_video_player" + }, + "2627": { + "name": "Divvit", + "cat": "site_analytics" + }, + "2628": { + "name": "Content Exchange", + "cat": "site_analytics" + }, + "2629": { + "name": "OnThe.io", + "cat": "site_analytics" + }, + "2630": { + "name": "Shrink", + "cat": "customer_interaction" + }, + "2631": { + "name": "Yomedia", + "cat": "advertising" + }, + "2632": { + "name": "AdsKeeper", + "cat": "advertising" + }, + "2633": { + "name": "Profitshare", + "cat": "site_analytics" + }, + "2634": { + "name": "Afftrack", + "cat": "site_analytics" + }, + "2636": { + "name": "Xing", + "cat": "site_analytics" + }, + "2637": { + "name": "Allin", + "cat": "site_analytics" + }, + "2638": { + "name": "Smartlook", + "cat": "customer_interaction" + }, + "2639": { + "name": "YLE", + "cat": "site_analytics" + }, + "2640": { + "name": "Vzaar", + "cat": "audio_video_player" + }, + "2641": { + "name": "Handtalk", + "cat": "customer_interaction" + }, + "2642": { + "name": "Carrot Quest", + "cat": "site_analytics" + }, + "2643": { + "name": "Carambola", + "cat": "advertising" + }, + "2644": { + "name": "Trupoptik", + "cat": "site_analytics" + }, + "2645": { + "name": "Chameleon", + "cat": "advertising" + }, + "2646": { + "name": "Afilio Sales", + "cat": "site_analytics" + }, + "2647": { + "name": "Afilio Lead", + "cat": "site_analytics" + }, + "2648": { + "name": "Cerberus Speed-Trap", + "cat": "site_analytics" + }, + "2649": { + "name": "Realytics", + "cat": "site_analytics" + }, + "2650": { + "name": "Smooch", + "cat": "customer_interaction" + }, + "2651": { + "name": "Urosario", + "cat": "site_analytics" + }, + "2652": { + "name": "Glad Cube", + "cat": "site_analytics" + }, + "2653": { + "name": "Sleeknote", + "cat": "customer_interaction" + }, + "2654": { + "name": "Eurosoftware", + "cat": "site_analytics" + }, + "2655": { + "name": "AdNexio", + "cat": "advertising" + }, + "2656": { + "name": "Trafex", + "cat": "site_analytics" + }, + "2657": { + "name": "DuMedia", + "cat": "advertising" + }, + "2658": { + "name": "Comcast Technology Solutions", + "cat": "audio_video_player" + }, + "2659": { + "name": "Sirdata", + "cat": "site_analytics" + }, + "2660": { + "name": "Ancora", + "cat": "site_analytics" + }, + "2661": { + "name": "ValueClick Media", + "cat": "advertising" + }, + "2662": { + "name": "1000mercis", + "cat": "site_analytics" + }, + "2663": { + "name": "Leadin", + "cat": "site_analytics" + }, + "2664": { + "name": "Winaffiliates", + "cat": "site_analytics" + }, + "2665": { + "name": "LeTV", + "cat": "site_analytics" + }, + "2666": { + "name": "Straight North", + "cat": "site_analytics" + }, + "2667": { + "name": "Revtrax", + "cat": "site_analytics" + }, + "2668": { + "name": "Arvato Canvas FP", + "cat": "site_analytics" + }, + "2670": { + "name": "Mints App", + "cat": "customer_interaction" + }, + "2671": { + "name": "Snowplow", + "cat": "site_analytics" + }, + "2672": { + "name": "Vilynx", + "cat": "site_analytics" + }, + "2674": { + "name": "Untriel Finger Printing", + "cat": "site_analytics" + }, + "2675": { + "name": "Sina", + "cat": "site_analytics" + }, + "2676": { + "name": "Plenty Of Fish", + "cat": "site_analytics" + }, + "2677": { + "name": "iResearch", + "cat": "site_analytics" + }, + "2678": { + "name": "Europecash", + "cat": "advertising" + }, + "2679": { + "name": "Pick a Time", + "cat": "advertising" + }, + "2680": { + "name": "Yandex Kik", + "cat": "site_analytics" + }, + "2681": { + "name": "ExpressVPN", + "cat": "customer_interaction" + }, + "2682": { + "name": "Netscaler", + "cat": "site_analytics" + }, + "2683": { + "name": "ID Services", + "cat": "site_analytics" + }, + "2684": { + "name": "Sweettooth", + "cat": "customer_interaction" + }, + "2685": { + "name": "JWPLayer Pre-Roll", + "cat": "advertising" + }, + "2686": { + "name": "Yandex", + "cat": "advertising" + }, + "2687": { + "name": "Notifyfox", + "cat": "site_analytics" + }, + "2688": { + "name": "Maru-EDU", + "cat": "customer_interaction" + }, + "2689": { + "name": "King.com", + "cat": "advertising" + }, + "2690": { + "name": "Audienzz", + "cat": "site_analytics" + }, + "2691": { + "name": "Click 4 Assistance", + "cat": "customer_interaction" + }, + "2692": { + "name": "SalesViewer", + "cat": "site_analytics" + }, + "2693": { + "name": "Fit Analytics", + "cat": "site_analytics" + }, + "2696": { + "name": "Qeado", + "cat": "site_analytics" + }, + "2697": { + "name": "Push", + "cat": "customer_interaction" + }, + "2698": { + "name": "iFeng", + "cat": "customer_interaction" + }, + "2699": { + "name": "Blue Seed", + "cat": "advertising" + }, + "2700": { + "name": "Rune", + "cat": "site_analytics" + }, + "2701": { + "name": "Catalyst", + "cat": "site_analytics" + }, + "2702": { + "name": "Opicle", + "cat": "site_analytics" + }, + "2703": { + "name": "Profiliad", + "cat": "site_analytics" + }, + "2704": { + "name": "Proformics", + "cat": "site_analytics" + }, + "2705": { + "name": "AdChakra", + "cat": "site_analytics" + }, + "2706": { + "name": "Optimedia", + "cat": "site_analytics" + }, + "2707": { + "name": "Seznam", + "cat": "site_analytics" + }, + "2708": { + "name": "Adoric", + "cat": "site_analytics" + }, + "2709": { + "name": "Pointific", + "cat": "site_analytics" + }, + "2710": { + "name": "Digiglitz", + "cat": "site_analytics" + }, + "2711": { + "name": "Ad2Click", + "cat": "advertising" + }, + "2712": { + "name": "Clicks Thru Networks", + "cat": "advertising" + }, + "2713": { + "name": "Retail 9", + "cat": "advertising" + }, + "2714": { + "name": "LinkedIn Analytics", + "cat": "site_analytics" + }, + "2715": { + "name": "Dealer.com", + "cat": "site_analytics" + }, + "2716": { + "name": "Twitter Analytics", + "cat": "site_analytics" + }, + "2717": { + "name": "Yahoo DOT tag", + "cat": "advertising" + }, + "2718": { + "name": "Qihoo 360", + "cat": "site_analytics" + }, + "2720": { + "name": "Cendyn", + "cat": "advertising" + }, + "2721": { + "name": "SVG Media", + "cat": "site_analytics" + }, + "2722": { + "name": "SMX Ventures", + "cat": "site_analytics" + }, + "2723": { + "name": "Sense Digital", + "cat": "site_analytics" + }, + "2724": { + "name": "Adcanopus", + "cat": "site_analytics" + }, + "2725": { + "name": "Tune In", + "cat": "audio_video_player" + }, + "2726": { + "name": "SabaVision", + "cat": "advertising" + }, + "2727": { + "name": "Vimeo", + "cat": "audio_video_player" + }, + "2728": { + "name": "Snoobi", + "cat": "site_analytics" + }, + "2729": { + "name": "Pebble Post", + "cat": "site_analytics" + }, + "2730": { + "name": "Adtrue", + "cat": "advertising" + }, + "2731": { + "name": "Eduscho", + "cat": "customer_interaction" + }, + "2732": { + "name": "Numbers.md", + "cat": "site_analytics" + }, + "2733": { + "name": "Twine", + "cat": "site_analytics" + }, + "2734": { + "name": "Admo.tv", + "cat": "advertising" + }, + "2735": { + "name": "WP", + "cat": "advertising" + }, + "2736": { + "name": "AdClickZone", + "cat": "advertising" + }, + "2737": { + "name": "Digital Mailers", + "cat": "customer_interaction" + }, + "2738": { + "name": "Rockabox", + "cat": "advertising" + }, + "2739": { + "name": "Acloudimages", + "cat": "advertising" + }, + "2740": { + "name": "JeuxVideo", + "cat": "advertising" + }, + "2741": { + "name": "Bilin", + "cat": "advertising" + }, + "2742": { + "name": "Zypmedia", + "cat": "advertising" + }, + "2743": { + "name": "Univide", + "cat": "advertising" + }, + "2744": { + "name": "Global Web Index", + "cat": "site_analytics" + }, + "2745": { + "name": "Gigya Counter", + "cat": "social_media" + }, + "2746": { + "name": "Gigya", + "cat": "site_analytics" + }, + "2747": { + "name": "Live Intent", + "cat": "site_analytics" + }, + "2748": { + "name": "Pinterest Conversion Tracker", + "cat": "site_analytics" + }, + "2749": { + "name": "Bidswitch", + "cat": "advertising" + }, + "2751": { + "name": "Mattell", + "cat": "audio_video_player" + }, + "2752": { + "name": "Whiz Marketing", + "cat": "advertising" + }, + "2753": { + "name": "Artimedia", + "cat": "advertising" + }, + "2754": { + "name": "SpringServe", + "cat": "advertising" + }, + "2755": { + "name": "iPaddress", + "cat": "customer_interaction" + }, + "2756": { + "name": "Travel Click", + "cat": "advertising" + }, + "2757": { + "name": "Track Duck", + "cat": "site_analytics" + }, + "2758": { + "name": "BoxxSpring", + "cat": "advertising" + }, + "2759": { + "name": "MoChapp", + "cat": "customer_interaction" + }, + "2760": { + "name": "Social Miner", + "cat": "social_media" + }, + "2761": { + "name": "Flocktory", + "cat": "site_analytics" + }, + "2762": { + "name": "Steepto", + "cat": "advertising" + }, + "2763": { + "name": "TDH", + "cat": "site_analytics" + }, + "2764": { + "name": "Adworx", + "cat": "advertising" + }, + "2765": { + "name": "Open Adstream", + "cat": "advertising" + }, + "2766": { + "name": "Zucks", + "cat": "advertising" + }, + "2767": { + "name": "Rekmob", + "cat": "advertising" + }, + "2768": { + "name": "Klaviyo", + "cat": "site_analytics" + }, + "2769": { + "name": "Kyto", + "cat": "site_analytics" + }, + "2770": { + "name": "Wibbitz", + "cat": "audio_video_player" + }, + "2771": { + "name": "MarkMonitor Video", + "cat": "audio_video_player" + }, + "2772": { + "name": "Logan Media", + "cat": "site_analytics" + }, + "2773": { + "name": "Digiteka", + "cat": "advertising" + }, + "2774": { + "name": "StackAdapt", + "cat": "advertising" + }, + "2775": { + "name": "Bizcn", + "cat": "advertising" + }, + "2776": { + "name": "Sykes", + "cat": "site_analytics" + }, + "2777": { + "name": "Insticator", + "cat": "advertising" + }, + "2778": { + "name": "Smartsupp Chat", + "cat": "customer_interaction" + }, + "2779": { + "name": "Getfeedback", + "cat": "site_analytics" + }, + "2780": { + "name": "Marketlinc", + "cat": "site_analytics" + }, + "2781": { + "name": "Drift", + "cat": "customer_interaction" + }, + "2782": { + "name": "Pivol", + "cat": "advertising" + }, + "2783": { + "name": "Spoteffect", + "cat": "site_analytics" + }, + "2784": { + "name": "8digits", + "cat": "site_analytics" + }, + "2785": { + "name": "Markafoni", + "cat": "advertising" + }, + "2787": { + "name": "Glance", + "cat": "site_analytics" + }, + "2788": { + "name": "DigiNow", + "cat": "advertising" + }, + "2789": { + "name": "iCubes Pro", + "cat": "site_analytics" + }, + "2790": { + "name": "Affle", + "cat": "advertising" + }, + "2791": { + "name": "Dogannet", + "cat": "advertising" + }, + "2792": { + "name": "Video Media Group", + "cat": "audio_video_player" + }, + "2793": { + "name": "Dun and Bradstreet", + "cat": "site_analytics" + }, + "2795": { + "name": "Dialogtech", + "cat": "site_analytics" + }, + "2796": { + "name": "Reg.ru", + "cat": "advertising" + }, + "2797": { + "name": "Yahoo Gemini", + "cat": "advertising" + }, + "2798": { + "name": "De Volkskrant", + "cat": "advertising" + }, + "2799": { + "name": "Engageya Widget", + "cat": "advertising" + }, + "2800": { + "name": "VPSCash", + "cat": "advertising" + }, + "2801": { + "name": "Burda", + "cat": "audio_video_player" + }, + "2802": { + "name": "Civicuk", + "cat": "essential" + }, + "2803": { + "name": "Kontextr", + "cat": "advertising" + }, + "2804": { + "name": "Traffic Fuel", + "cat": "advertising" + }, + "2805": { + "name": "WiQhit", + "cat": "site_analytics" + }, + "2806": { + "name": "d-agency", + "cat": "advertising" + }, + "2807": { + "name": "Quantum Metric Tracker", + "cat": "site_analytics" + }, + "2808": { + "name": "Volusion Chat", + "cat": "customer_interaction" + }, + "2809": { + "name": "101xp", + "cat": "advertising" + }, + "2810": { + "name": "Whatbroadcast", + "cat": "customer_interaction" + }, + "2811": { + "name": "Evidon Ad Notice", + "cat": "essential" + }, + "2812": { + "name": "Optanon", + "cat": "customer_interaction" + }, + "2813": { + "name": "Truste Consent", + "cat": "essential" + }, + "2814": { + "name": "Cookie Consent", + "cat": "essential" + }, + "2815": { + "name": "Conversio", + "cat": "site_analytics" + }, + "2816": { + "name": "Trusted Shops", + "cat": "site_analytics" + }, + "2817": { + "name": "Traffic Stars", + "cat": "pornvertising" + }, + "2818": { + "name": "Retarget App", + "cat": "advertising" + }, + "2819": { + "name": "Pixel Union", + "cat": "advertising" + }, + "2820": { + "name": "XPO Knorex", + "cat": "advertising" + }, + "2821": { + "name": "Live Look", + "cat": "advertising" + }, + "2822": { + "name": "Dynamic Yield", + "cat": "essential" + }, + "2823": { + "name": "WP", + "cat": "advertising" + }, + "2824": { + "name": "VideoJS", + "cat": "audio_video_player" + }, + "2825": { + "name": "FoxPush", + "cat": "advertising" + }, + "2826": { + "name": "PurLive", + "cat": "advertising" + }, + "2827": { + "name": "GA Audiences", + "cat": "site_analytics" + }, + "2828": { + "name": "Quantcount", + "cat": "site_analytics" + }, + "2829": { + "name": "Google Custom Search", + "cat": "essential" + }, + "2830": { + "name": "IXI Digital", + "cat": "advertising" + }, + "2831": { + "name": "Soasta", + "cat": "advertising" + }, + "2832": { + "name": "YSance", + "cat": "advertising" + }, + "2833": { + "name": "LKQD", + "cat": "advertising" + }, + "2834": { + "name": "Tamboo", + "cat": "site_analytics" + }, + "2835": { + "name": "AdSpyglass", + "cat": "advertising" + }, + "2836": { + "name": "Tagcade", + "cat": "advertising" + }, + "2837": { + "name": "Custom Search Ads", + "cat": "advertising" + }, + "2838": { + "name": "White Ops", + "cat": "advertising" + }, + "2839": { + "name": "Youku", + "cat": "audio_video_player" + }, + "2840": { + "name": "Uptain", + "cat": "site_analytics" + }, + "2841": { + "name": "Google Safeframe", + "cat": "advertising" + }, + "2843": { + "name": "Doorbell.io", + "cat": "essential" + }, + "2844": { + "name": "Rhythmone Beacon", + "cat": "advertising" + }, + "2845": { + "name": "Samba", + "cat": "advertising" + }, + "2847": { + "name": "Foshpa", + "cat": "site_analytics" + }, + "2848": { + "name": "Giosg", + "cat": "site_analytics" + }, + "2849": { + "name": "Inbox Labs", + "cat": "site_analytics" + }, + "2850": { + "name": "Arbor", + "cat": "site_analytics" + }, + "2851": { + "name": "Adbrain", + "cat": "site_analytics" + }, + "2852": { + "name": "Google Interactive Media", + "cat": "advertising" + }, + "2853": { + "name": "Google Pingback", + "cat": "advertising" + }, + "2854": { + "name": "Twitter", + "cat": "social_media" + }, + "2855": { + "name": "Marketgrid", + "cat": "advertising" + }, + "2856": { + "name": "Azadify", + "cat": "advertising" + }, + "2857": { + "name": "Rebel Mouse", + "cat": "site_analytics" + }, + "2858": { + "name": "Plaid", + "cat": "advertising" + }, + "2859": { + "name": "Video Potok", + "cat": "audio_video_player" + }, + "2860": { + "name": "Contribusource", + "cat": "advertising" + }, + "2861": { + "name": "Callibri", + "cat": "advertising" + }, + "2862": { + "name": "Fact Finder", + "cat": "site_analytics" + }, + "2863": { + "name": "XmediaClicks", + "cat": "pornvertising" + }, + "2864": { + "name": "Nominal", + "cat": "site_analytics" + }, + "2865": { + "name": "Jetlore", + "cat": "site_analytics" + }, + "2866": { + "name": "Adnegah", + "cat": "advertising" + }, + "2867": { + "name": "Adro", + "cat": "advertising" + }, + "2868": { + "name": "Insider", + "cat": "advertising" + }, + "2869": { + "name": "BrainPad", + "cat": "advertising" + }, + "2870": { + "name": "Binotel", + "cat": "advertising" + }, + "2871": { + "name": "Live Admins", + "cat": "customer_interaction" + }, + "2872": { + "name": "Get Site Control", + "cat": "advertising" + }, + "2873": { + "name": "BlueConic Plugin", + "cat": "site_analytics" + }, + "2874": { + "name": "Auto Pilot", + "cat": "advertising" + }, + "2875": { + "name": "Live Agent", + "cat": "customer_interaction" + }, + "2876": { + "name": "Sprinklr", + "cat": "advertising" + }, + "2877": { + "name": "Matiro", + "cat": "site_analytics" + }, + "2878": { + "name": "Next User", + "cat": "advertising" + }, + "2879": { + "name": "BrightFunnel", + "cat": "site_analytics" + }, + "2880": { + "name": "Mindbreeze", + "cat": "site_analytics" + }, + "2881": { + "name": "Poptm", + "cat": "advertising" + }, + "2882": { + "name": "Rocket.ia", + "cat": "advertising" + }, + "2883": { + "name": "Media Impact", + "cat": "advertising" + }, + "2884": { + "name": "Desk Five", + "cat": "site_analytics" + }, + "2885": { + "name": "Adgebra", + "cat": "advertising" + }, + "2886": { + "name": "MADS", + "cat": "advertising" + }, + "2887": { + "name": "Outbrain Analytics", + "cat": "site_analytics" + }, + "2888": { + "name": "Facebook Pixel", + "cat": "advertising" + }, + "2889": { + "name": "Flowplayer", + "cat": "advertising" + }, + "2890": { + "name": "AdRoll Pixel", + "cat": "advertising" + }, + "2891": { + "name": "mCabi", + "cat": "advertising" + }, + "2892": { + "name": "VisScore", + "cat": "advertising" + }, + "2893": { + "name": "Pornwave", + "cat": "pornvertising" + }, + "2894": { + "name": "Outbrain Pixel", + "cat": "advertising" + }, + "2895": { + "name": "Outbrain Widgets", + "cat": "advertising" + }, + "2896": { + "name": "Virool Player", + "cat": "advertising" + }, + "2897": { + "name": "Boxever", + "cat": "advertising" + }, + "2898": { + "name": "ADTECH", + "cat": "site_analytics" + }, + "2899": { + "name": "Vision Critical", + "cat": "site_analytics" + }, + "2900": { + "name": "TradeAds", + "cat": "advertising" + }, + "2901": { + "name": "AdPulse", + "cat": "advertising" + }, + "2902": { + "name": "Bam", + "cat": "advertising" + }, + "2903": { + "name": "Visual IQ", + "cat": "site_analytics" + }, + "2904": { + "name": "Ninja Outreach", + "cat": "site_analytics" + }, + "2905": { + "name": "SlimCutMedia", + "cat": "site_analytics" + }, + "2906": { + "name": "Australia.gov", + "cat": "advertising" + }, + "2907": { + "name": "D4m", + "cat": "advertising" + }, + "2908": { + "name": "Ruhrgebiet", + "cat": "advertising" + }, + "2909": { + "name": "Steady", + "cat": "advertising" + }, + "2910": { + "name": "Dealer.com Widgets", + "cat": "customer_interaction" + }, + "2911": { + "name": "Bauer Media", + "cat": "advertising" + }, + "2912": { + "name": "Google Adsense Asynchronous", + "cat": "advertising" + }, + "2913": { + "name": "Head Hunter", + "cat": "site_analytics" + }, + "2914": { + "name": "Yandex AdExchange", + "cat": "advertising" + }, + "2915": { + "name": "Yandex Passport", + "cat": "customer_interaction" + }, + "2917": { + "name": "AdStanding", + "cat": "advertising" + }, + "2918": { + "name": "emarketeer", + "cat": "advertising" + }, + "2919": { + "name": "SphereUp", + "cat": "customer_interaction" + }, + "2920": { + "name": "Pozvonim", + "cat": "advertising" + }, + "2921": { + "name": "AdRoll Roundtrip", + "cat": "advertising" + }, + "2922": { + "name": "Facebook Impressions", + "cat": "advertising" + }, + "2923": { + "name": "AdFront", + "cat": "advertising" + }, + "2924": { + "name": "HucksterBot", + "cat": "advertising" + }, + "2925": { + "name": "RummyCircle", + "cat": "advertising" + }, + "2926": { + "name": "Moneytizer", + "cat": "advertising" + }, + "2927": { + "name": "Appier", + "cat": "advertising" + }, + "2928": { + "name": "RD Station", + "cat": "site_analytics" + }, + "2929": { + "name": "DudaMobile", + "cat": "advertising" + }, + "2930": { + "name": "Apester", + "cat": "advertising" + }, + "2931": { + "name": "Rambler Widget", + "cat": "customer_interaction" + }, + "2932": { + "name": "CIWebGroup", + "cat": "advertising" + }, + "2933": { + "name": "Vcita", + "cat": "site_analytics" + }, + "2934": { + "name": "ConnectAd", + "cat": "advertising" + }, + "2935": { + "name": "Signifyd", + "cat": "site_analytics" + }, + "2936": { + "name": "IPG Mediabrands", + "cat": "advertising" + }, + "2937": { + "name": "Hola Player", + "cat": "audio_video_player" + }, + "2938": { + "name": "Digidip", + "cat": "advertising" + }, + "2939": { + "name": "GM Delivery", + "cat": "advertising" + }, + "2940": { + "name": "Ignition AI", + "cat": "advertising" + }, + "2941": { + "name": "Porta Brazil", + "cat": "advertising" + }, + "2942": { + "name": "C1 Exchange", + "cat": "advertising" + }, + "2943": { + "name": "Zmags", + "cat": "site_analytics" + }, + "2944": { + "name": "Travel Audience", + "cat": "site_analytics" + }, + "2945": { + "name": "Neytiv", + "cat": "site_analytics" + }, + "2946": { + "name": "Exiber", + "cat": "advertising" + }, + "2947": { + "name": "Gravitec", + "cat": "site_analytics" + }, + "2948": { + "name": "Leadback", + "cat": "site_analytics" + }, + "2949": { + "name": "Segmenta", + "cat": "advertising" + }, + "2950": { + "name": "Gugaboo", + "cat": "advertising" + }, + "2951": { + "name": "AppCast 2", + "cat": "customer_interaction" + }, + "2952": { + "name": "AppCast 1", + "cat": "customer_interaction" + }, + "2953": { + "name": "AppCast 3", + "cat": "customer_interaction" + }, + "2954": { + "name": "ProductsUp", + "cat": "advertising" + }, + "2955": { + "name": "Bilgin Pro", + "cat": "advertising" + }, + "2956": { + "name": "Reflektion", + "cat": "advertising" + }, + "2957": { + "name": "Expressen", + "cat": "advertising" + }, + "2958": { + "name": "Performax", + "cat": "site_analytics" + }, + "2959": { + "name": "Prostor", + "cat": "advertising" + }, + "2960": { + "name": "Stroer Digital Media", + "cat": "advertising" + }, + "2961": { + "name": "Sputnik", + "cat": "site_analytics" + }, + "2962": { + "name": "Sublime", + "cat": "advertising" + }, + "2963": { + "name": "Adikteev", + "cat": "advertising" + }, + "2964": { + "name": "Admatrix", + "cat": "advertising" + }, + "2965": { + "name": "Smarterclick", + "cat": "advertising" + }, + "2966": { + "name": "Adclerks", + "cat": "advertising" + }, + "2967": { + "name": "Vidgyor", + "cat": "audio_video_player" + }, + "2968": { + "name": "Google Trusted Stores", + "cat": "site_analytics" + }, + "2969": { + "name": "Google Shopping Reviews", + "cat": "customer_interaction" + }, + "2970": { + "name": "Xapads", + "cat": "advertising" + }, + "2971": { + "name": "Webtrek Control Cookie", + "cat": "site_analytics" + }, + "2972": { + "name": "Twiago", + "cat": "advertising" + }, + "2973": { + "name": "Narando", + "cat": "audio_video_player" + }, + "2974": { + "name": "Mixpo", + "cat": "advertising" + }, + "2975": { + "name": "Optimizely Geographical Targeting", + "cat": "site_analytics" + }, + "2976": { + "name": "Contact Impact", + "cat": "advertising" + }, + "2977": { + "name": "Launch Darkly", + "cat": "essential" + }, + "2978": { + "name": "Zumby", + "cat": "advertising" + }, + "2979": { + "name": "Noddus", + "cat": "advertising" + }, + "2980": { + "name": "Noddus Widget", + "cat": "customer_interaction" + }, + "2981": { + "name": "OnAudience", + "cat": "advertising" + }, + "2982": { + "name": "Deadline Funnel", + "cat": "site_analytics" + }, + "2983": { + "name": "Medigo", + "cat": "advertising" + }, + "2984": { + "name": "Media Voice", + "cat": "audio_video_player" + }, + "2985": { + "name": "MGID", + "cat": "advertising" + }, + "2987": { + "name": "WCO", + "cat": "essential" + }, + "2989": { + "name": "Cquotient", + "cat": "advertising" + }, + "2990": { + "name": "Kalooga", + "cat": "advertising" + }, + "2991": { + "name": "Search G2", + "cat": "essential" + }, + "2992": { + "name": "Yandex Analysis", + "cat": "advertising" + }, + "2993": { + "name": "Doubleclick Video Stats", + "cat": "advertising" + }, + "2994": { + "name": "Bidtellect", + "cat": "advertising" + }, + "2995": { + "name": "Google IMA", + "cat": "advertising" + }, + "2996": { + "name": "Rawr", + "cat": "advertising" + }, + "2997": { + "name": "Rationalyze", + "cat": "advertising" + }, + "2998": { + "name": "Limetalk", + "cat": "customer_interaction" + }, + "2999": { + "name": "Mango", + "cat": "advertising" + }, + "3000": { + "name": "MRP", + "cat": "advertising" + }, + "3001": { + "name": "Chaser", + "cat": "customer_interaction" + }, + "3002": { + "name": "Datawrkz", + "cat": "advertising" + }, + "3003": { + "name": "Speee", + "cat": "advertising" + }, + "3004": { + "name": "BodyClick", + "cat": "advertising" + }, + "3005": { + "name": "Avant Metrics", + "cat": "site_analytics" + }, + "3006": { + "name": "Orel Site", + "cat": "customer_interaction" + }, + "3009": { + "name": "Rakuten Widget", + "cat": "advertising" + }, + "3010": { + "name": "Rakuten", + "cat": "advertising" + }, + "3011": { + "name": "Rambler Sync", + "cat": "advertising" + }, + "3012": { + "name": "Rambler Count", + "cat": "customer_interaction" + }, + "3013": { + "name": "Twitter Conversion Tracking", + "cat": "advertising" + }, + "3014": { + "name": "Katchup", + "cat": "advertising" + }, + "3015": { + "name": "Pipz", + "cat": "advertising" + }, + "3016": { + "name": "AdTube", + "cat": "advertising" + }, + "3017": { + "name": "Republer", + "cat": "advertising" + }, + "3018": { + "name": "Civey Widgets", + "cat": "customer_interaction" + }, + "3019": { + "name": "Eye Newton", + "cat": "customer_interaction" + }, + "3020": { + "name": "Plex Metrics", + "cat": "site_analytics" + }, + "3021": { + "name": "Smart Call", + "cat": "customer_interaction" + }, + "3022": { + "name": "Nativeroll", + "cat": "audio_video_player" + }, + "3023": { + "name": "Relap", + "cat": "advertising" + }, + "3024": { + "name": "Bid Run", + "cat": "advertising" + }, + "3025": { + "name": "Spicy", + "cat": "advertising" + }, + "3027": { + "name": "ADTags", + "cat": "advertising" + }, + "3028": { + "name": "Advertur", + "cat": "advertising" + }, + "3029": { + "name": "Clickyab", + "cat": "advertising" + }, + "3030": { + "name": "Pureprofile", + "cat": "site_analytics" + }, + "3031": { + "name": "Tarafdari", + "cat": "advertising" + }, + "3032": { + "name": "VPON", + "cat": "advertising" + }, + "3033": { + "name": "VideoNow", + "cat": "advertising" + }, + "3034": { + "name": "Vidazoo", + "cat": "audio_video_player" + }, + "3035": { + "name": "Scripps Analytics", + "cat": "site_analytics" + }, + "3036": { + "name": "Optimatic Tracking", + "cat": "site_analytics" + }, + "3037": { + "name": "DynAdmic", + "cat": "advertising" + }, + "3038": { + "name": "CBSI Player", + "cat": "audio_video_player" + }, + "3039": { + "name": "247 Sports Analytics", + "cat": "site_analytics" + }, + "3040": { + "name": "Tessarine", + "cat": "advertising" + }, + "3041": { + "name": "AdsCpm", + "cat": "advertising" + }, + "3042": { + "name": "AdRunnr", + "cat": "advertising" + }, + "3043": { + "name": "Video.me", + "cat": "site_analytics" + }, + "3044": { + "name": "Informa", + "cat": "customer_interaction" + }, + "3045": { + "name": "Spam Analyst", + "cat": "advertising" + }, + "3046": { + "name": "Sortable", + "cat": "advertising" + }, + "3047": { + "name": "Market Thunder", + "cat": "advertising" + }, + "3048": { + "name": "Usocial", + "cat": "social_media" + }, + "3049": { + "name": "Plutusads", + "cat": "advertising" + }, + "3050": { + "name": "Coin Traffic", + "cat": "customer_interaction" + }, + "3051": { + "name": "Adrizer", + "cat": "advertising" + }, + "3052": { + "name": "Verta Media", + "cat": "advertising" + }, + "3053": { + "name": "Streamrail", + "cat": "advertising" + }, + "3054": { + "name": "Voxus", + "cat": "advertising" + }, + "3055": { + "name": "Google Adwords User Lists", + "cat": "advertising" + }, + "3056": { + "name": "Audience Square", + "cat": "advertising" + }, + "3057": { + "name": "Audience Square Prebid", + "cat": "advertising" + }, + "3058": { + "name": "Outbrain Images", + "cat": "advertising" + }, + "3059": { + "name": "Mediawallah", + "cat": "advertising" + }, + "3060": { + "name": "GroovinAds", + "cat": "advertising" + }, + "3061": { + "name": "Ooyala Analytics", + "cat": "site_analytics" + }, + "3062": { + "name": "TV Squared", + "cat": "advertising" + }, + "3063": { + "name": "ESPN Analytics", + "cat": "site_analytics" + }, + "3065": { + "name": "Makazi", + "cat": "advertising" + }, + "3066": { + "name": "ADworx", + "cat": "advertising" + }, + "3067": { + "name": "R66", + "cat": "advertising" + }, + "3068": { + "name": "Invibes Video Ads", + "cat": "advertising" + }, + "3069": { + "name": "Invibes", + "cat": "advertising" + }, + "3070": { + "name": "Omnitag", + "cat": "site_analytics" + }, + "3071": { + "name": "Onfocus", + "cat": "advertising" + }, + "3072": { + "name": "Cup Interactive", + "cat": "advertising" + }, + "3073": { + "name": "Be Opinion", + "cat": "customer_interaction" + }, + "3074": { + "name": "Alooma", + "cat": "advertising" + }, + "3075": { + "name": "Narrative", + "cat": "advertising" + }, + "3076": { + "name": "WalkMe", + "cat": "customer_interaction" + }, + "3077": { + "name": "Wywy Analytics", + "cat": "advertising" + }, + "3078": { + "name": "WyWy", + "cat": "advertising" + }, + "3079": { + "name": "Findologic", + "cat": "customer_interaction" + }, + "3080": { + "name": "Alibaba", + "cat": "advertising" + }, + "3081": { + "name": "Lazada", + "cat": "advertising" + }, + "3082": { + "name": "Deep Intent", + "cat": "advertising" + }, + "3083": { + "name": "BlackDragon", + "cat": "advertising" + }, + "3084": { + "name": "Convert", + "cat": "site_analytics" + }, + "3085": { + "name": "Back In Stock", + "cat": "essential" + }, + "3086": { + "name": "Bold", + "cat": "advertising" + }, + "3087": { + "name": "Iotec", + "cat": "site_analytics" + }, + "3088": { + "name": "Sito", + "cat": "advertising" + }, + "3089": { + "name": "Convert TV", + "cat": "audio_video_player" + }, + "3090": { + "name": "Fyber", + "cat": "advertising" + }, + "3091": { + "name": "Survata", + "cat": "advertising" + }, + "3092": { + "name": "MySpace", + "cat": "advertising" + }, + "3093": { + "name": "AdPilot", + "cat": "advertising" + }, + "3094": { + "name": "First Impression", + "cat": "advertising" + }, + "3095": { + "name": "minute.ly video", + "cat": "audio_video_player" + }, + "3096": { + "name": "Google Ads Measurement", + "cat": "advertising" + }, + "3097": { + "name": "Optimizely Logging", + "cat": "site_analytics" + }, + "3098": { + "name": "Outbrain Logger", + "cat": "advertising" + }, + "3099": { + "name": "Outbrain Utilities", + "cat": "site_analytics" + }, + "3100": { + "name": "Outbrain Amplify", + "cat": "advertising" + }, + "3101": { + "name": "Optimizely Error Log", + "cat": "site_analytics" + }, + "3102": { + "name": "Coin Hive", + "cat": "advertising" + }, + "3103": { + "name": "DTScout", + "cat": "advertising" + }, + "3104": { + "name": "1DMP", + "cat": "advertising" + }, + "3105": { + "name": "City Spark", + "cat": "advertising" + }, + "3106": { + "name": "Media Today", + "cat": "advertising" + }, + "3107": { + "name": "PushApps", + "cat": "essential" + }, + "3108": { + "name": "Octavius", + "cat": "advertising" + }, + "3109": { + "name": "eGain Analytics", + "cat": "site_analytics" + }, + "3110": { + "name": "TimezonDB", + "cat": "advertising" + }, + "3111": { + "name": "JSE Coin", + "cat": "advertising" + }, + "3112": { + "name": "Uliza", + "cat": "advertising" + }, + "3113": { + "name": "More Communication", + "cat": "advertising" + }, + "3114": { + "name": "Geolify", + "cat": "advertising" + }, + "3115": { + "name": "Adomik", + "cat": "advertising" + }, + "3116": { + "name": "Cybertonica", + "cat": "advertising" + }, + "3117": { + "name": "Expose Box Widgets", + "cat": "customer_interaction" + }, + "3118": { + "name": "Expose Box", + "cat": "advertising" + }, + "3119": { + "name": "Tisoomi", + "cat": "advertising" + }, + "3120": { + "name": "Ipinfo", + "cat": "customer_interaction" + }, + "3121": { + "name": "Jeeng", + "cat": "advertising" + }, + "3122": { + "name": "Jeeng Widgets", + "cat": "advertising" + }, + "3123": { + "name": "Polyfill", + "cat": "essential" + }, + "3124": { + "name": "Keywee", + "cat": "site_analytics" + }, + "3125": { + "name": "AOL Images CDN", + "cat": "essential" + }, + "3126": { + "name": "AdAsia Holdings", + "cat": "advertising" + }, + "3127": { + "name": "Matomo", + "cat": "site_analytics", + "tags": [ + 3, + 64 + ] + }, + "3129": { + "name": "Bridgeline", + "cat": "site_analytics" + }, + "3130": { + "name": "Adlive Header Bidding", + "cat": "advertising" + }, + "3131": { + "name": "Active Campaign", + "cat": "site_analytics" + }, + "3132": { + "name": "Snapchat For Business", + "cat": "advertising" + }, + "3133": { + "name": "Chat Beacon", + "cat": "customer_interaction" + }, + "3134": { + "name": "Happy Fox Chat", + "cat": "customer_interaction" + }, + "3135": { + "name": "Yektanet", + "cat": "advertising" + }, + "3136": { + "name": "Site Booster", + "cat": "social_media" + }, + "3137": { + "name": "Graph Comment", + "cat": "essential" + }, + "3138": { + "name": "Snigel Web", + "cat": "site_analytics" + }, + "3139": { + "name": "OptInMonster", + "cat": "customer_interaction" + }, + "3140": { + "name": "socialbeat", + "cat": "advertising" + }, + "3141": { + "name": "advertising.com", + "cat": "advertising" + }, + "3142": { + "name": "Geeen", + "cat": "site_analytics" + }, + "3143": { + "name": "iZooto", + "cat": "site_analytics" + }, + "3144": { + "name": "Red Ventures", + "cat": "site_analytics" + }, + "3145": { + "name": "Oneall", + "cat": "social_media" + }, + "3146": { + "name": "Formisimo", + "cat": "advertising" + }, + "3147": { + "name": "Fresh8", + "cat": "site_analytics" + }, + "3148": { + "name": "Fresh Service IT", + "cat": "site_analytics" + }, + "3149": { + "name": "Zotabox", + "cat": "social_media" + }, + "3150": { + "name": "Linker", + "cat": "site_analytics" + }, + "3151": { + "name": "Jaco", + "cat": "site_analytics" + }, + "3152": { + "name": "AddToAny", + "cat": "social_media" + }, + "3153": { + "name": "Yusp", + "cat": "site_analytics" + }, + "3154": { + "name": "Glomex", + "cat": "audio_video_player" + }, + "3155": { + "name": "Userlike", + "cat": "customer_interaction" + }, + "3156": { + "name": "Giga", + "cat": "advertising" + }, + "3157": { + "name": "Melissa", + "cat": "site_analytics" + }, + "3158": { + "name": "Datacoral", + "cat": "advertising" + }, + "3159": { + "name": "Adless", + "cat": "advertising" + }, + "3160": { + "name": "Belco", + "cat": "customer_interaction" + }, + "3161": { + "name": "Merkle Research", + "cat": "site_analytics" + }, + "3162": { + "name": "UserReplay", + "cat": "site_analytics" + }, + "3163": { + "name": "Coin Have", + "cat": "advertising" + }, + "3165": { + "name": "CryptoLoot Miner", + "cat": "advertising" + }, + "3166": { + "name": "Minero", + "cat": "advertising" + }, + "3167": { + "name": "Crisp", + "cat": "customer_interaction" + }, + "3168": { + "name": "ContentPass", + "cat": "site_analytics" + }, + "3169": { + "name": "Permutive", + "cat": "advertising" + }, + "3170": { + "name": "Bankrate", + "cat": "advertising" + }, + "3171": { + "name": "bd4travel", + "cat": "advertising" + }, + "3172": { + "name": "Zadarma", + "cat": "customer_interaction" + }, + "3173": { + "name": "AutoID", + "cat": "site_analytics" + }, + "3174": { + "name": "YouCanBookMe", + "cat": "customer_interaction" + }, + "3175": { + "name": "Geniee, Inc.", + "cat": "advertising" + }, + "3176": { + "name": "Trust Pilot", + "cat": "customer_interaction" + }, + "3177": { + "name": "Call Page", + "cat": "customer_interaction" + }, + "3178": { + "name": "Algebra", + "cat": "advertising" + }, + "3179": { + "name": "Columbia Online", + "cat": "advertising" + }, + "3180": { + "name": "Fresh Marketer", + "cat": "site_analytics" + }, + "3181": { + "name": "Stetic", + "cat": "site_analytics" + }, + "3182": { + "name": "Smart Selling", + "cat": "customer_interaction" + }, + "3183": { + "name": "Matelso", + "cat": "site_analytics" + }, + "3184": { + "name": "Wixab", + "cat": "site_analytics" + }, + "3185": { + "name": "Cedato", + "cat": "audio_video_player" + }, + "3187": { + "name": "RaiseNow", + "cat": "site_analytics" + }, + "3188": { + "name": "Keytiles", + "cat": "site_analytics" + }, + "3189": { + "name": "Opta", + "cat": "site_analytics" + }, + "3190": { + "name": "Opinary", + "cat": "customer_interaction" + }, + "3191": { + "name": "Vicomi", + "cat": "site_analytics" + }, + "3192": { + "name": "Castle", + "cat": "customer_interaction" + }, + "3193": { + "name": "Transmatic", + "cat": "site_analytics" + }, + "3194": { + "name": "Webcamo", + "cat": "pornvertising" + }, + "3195": { + "name": "Astronomer", + "cat": "site_analytics" + }, + "3196": { + "name": "sendinblue", + "cat": "advertising" + }, + "3197": { + "name": "Augur", + "cat": "site_analytics" + }, + "3198": { + "name": "Natimatica", + "cat": "advertising" + }, + "3199": { + "name": "Props", + "cat": "advertising" + }, + "3200": { + "name": "Forter", + "cat": "advertising" + }, + "3201": { + "name": "Smyte", + "cat": "site_analytics" + }, + "3202": { + "name": "United Internet Media GmbH", + "cat": "advertising" + }, + "3203": { + "name": "MBR Targeting", + "cat": "advertising" + }, + "3204": { + "name": "mediarithmics", + "cat": "advertising" + }, + "3206": { + "name": "Scarab Research", + "cat": "advertising" + }, + "3207": { + "name": "Seeding Alliance", + "cat": "advertising" + }, + "3208": { + "name": "Albacross", + "cat": "advertising" + }, + "3209": { + "name": "LeadScoreApp", + "cat": "customer_interaction" + }, + "3210": { + "name": "Audience One", + "cat": "site_analytics" + }, + "3212": { + "name": "Capture Media", + "cat": "advertising" + }, + "3213": { + "name": "Boost Box", + "cat": "site_analytics" + }, + "3214": { + "name": "Deep.BI", + "cat": "site_analytics" + }, + "3215": { + "name": "Yieldr Air", + "cat": "site_analytics" + }, + "3216": { + "name": "Pepsia", + "cat": "site_analytics" + }, + "3217": { + "name": "Click360", + "cat": "site_analytics" + }, + "3218": { + "name": "DMM", + "cat": "pornvertising" + }, + "3221": { + "name": "Kinja", + "cat": "site_analytics" + }, + "3223": { + "name": "RapidSpike", + "cat": "site_analytics" + }, + "3224": { + "name": "Deluxe", + "cat": "site_analytics" + }, + "3225": { + "name": "Roistat", + "cat": "site_analytics" + }, + "3226": { + "name": "PerimeterX", + "cat": "site_analytics" + }, + "3227": { + "name": "Scroll", + "cat": "essential" + }, + "3228": { + "name": "WonderPush", + "cat": "customer_interaction" + }, + "3229": { + "name": "Proxistore", + "cat": "advertising" + }, + "3230": { + "name": "Evolution Media Group", + "cat": "advertising" + }, + "3231": { + "name": "Bench Platform", + "cat": "advertising" + }, + "3232": { + "name": "pushAd", + "cat": "advertising" + }, + "3233": { + "name": "Funnelytics", + "cat": "site_analytics" + }, + "3234": { + "name": "MediaAd", + "cat": "advertising" + }, + "3235": { + "name": "Content Insights", + "cat": "site_analytics" + }, + "3236": { + "name": "SphereMall", + "cat": "site_analytics" + }, + "3237": { + "name": "Pushnews", + "cat": "advertising" + }, + "3238": { + "name": "Oath", + "cat": "advertising" + }, + "3239": { + "name": "Popcorn Metrics", + "cat": "site_analytics" + }, + "3240": { + "name": "Wigzo", + "cat": "advertising" + }, + "3241": { + "name": "Skroutz", + "cat": "site_analytics" + }, + "3242": { + "name": "Sendsay", + "cat": "customer_interaction" + }, + "3243": { + "name": "X-lift", + "cat": "advertising" + }, + "3244": { + "name": "Calltracking", + "cat": "customer_interaction" + }, + "3245": { + "name": "Sessionly", + "cat": "customer_interaction" + }, + "3246": { + "name": "Lead Liaison", + "cat": "site_analytics" + }, + "3247": { + "name": "Plan.net Experience Cloud", + "cat": "site_analytics" + }, + "3248": { + "name": "Proper Media", + "cat": "advertising" + }, + "3249": { + "name": "Media2 Stat.Media", + "cat": "site_analytics" + }, + "3250": { + "name": "Just Answer", + "cat": "customer_interaction" + }, + "3251": { + "name": "FriendBuy", + "cat": "site_analytics" + }, + "3252": { + "name": "Chatra", + "cat": "customer_interaction" + }, + "3253": { + "name": "Triptease", + "cat": "customer_interaction" + }, + "3254": { + "name": "SpotX", + "cat": "advertising" + }, + "3255": { + "name": "Advalo", + "cat": "advertising" + }, + "3256": { + "name": "FreshChat", + "cat": "customer_interaction" + }, + "3258": { + "name": "DataDome", + "cat": "site_analytics" + }, + "3259": { + "name": "ConvertFox", + "cat": "customer_interaction" + }, + "3260": { + "name": "Mluvii", + "cat": "customer_interaction" + }, + "3261": { + "name": "Mopinion", + "cat": "site_analytics" + }, + "3262": { + "name": "Sourcepoint", + "cat": "advertising" + }, + "3263": { + "name": "dockvine", + "cat": "customer_interaction" + }, + "3264": { + "name": "Line", + "cat": "site_analytics" + }, + "3265": { + "name": "Mather Analytics", + "cat": "site_analytics" + }, + "3266": { + "name": "Admeira", + "cat": "advertising" + }, + "3267": { + "name": "AirPR", + "cat": "site_analytics" + }, + "3268": { + "name": "BlackBird", + "cat": "site_analytics" + }, + "3269": { + "name": "Marketing Automation", + "cat": "advertising" + }, + "3270": { + "name": "etag", + "cat": "advertising" + }, + "3271": { + "name": "Infinite Analytics", + "cat": "site_analytics" + }, + "3272": { + "name": "Tazeros", + "cat": "advertising" + } + }, + "bugs": { + "2": { + "aid": 13 + }, + "3": { + "aid": 15 + }, + "4": { + "aid": 16 + }, + "6": { + "aid": 17 + }, + "9": { + "aid": 20 + }, + "10": { + "aid": 21 + }, + "11": { + "aid": 22 + }, + "12": { + "aid": 44 + }, + "13": { + "aid": 23 + }, + "15": { + "aid": 45 + }, + "16": { + "aid": 24 + }, + "17": { + "aid": 26 + }, + "18": { + "aid": 27 + }, + "19": { + "aid": 28 + }, + "21": { + "aid": 30 + }, + "22": { + "aid": 42 + }, + "23": { + "aid": 31 + }, + "24": { + "aid": 32 + }, + "25": { + "aid": 33 + }, + "26": { + "aid": 34 + }, + "27": { + "aid": 35 + }, + "28": { + "aid": 36 + }, + "29": { + "aid": 37 + }, + "30": { + "aid": 38 + }, + "31": { + "aid": 39 + }, + "32": { + "aid": 40 + }, + "34": { + "aid": 43 + }, + "35": { + "aid": 41 + }, + "36": { + "aid": 46 + }, + "37": { + "aid": 47 + }, + "38": { + "aid": 48 + }, + "39": { + "aid": 49 + }, + "40": { + "aid": 50 + }, + "41": { + "aid": 52 + }, + "42": { + "aid": 53 + }, + "43": { + "aid": 54 + }, + "44": { + "aid": 55 + }, + "45": { + "aid": 56 + }, + "46": { + "aid": 57 + }, + "47": { + "aid": 58 + }, + "48": { + "aid": 3 + }, + "49": { + "aid": 59 + }, + "50": { + "aid": 60 + }, + "51": { + "aid": 61 + }, + "52": { + "aid": 62 + }, + "53": { + "aid": 63 + }, + "54": { + "aid": 64 + }, + "56": { + "aid": 66 + }, + "57": { + "aid": 5 + }, + "58": { + "aid": 67 + }, + "59": { + "aid": 68 + }, + "60": { + "aid": 69 + }, + "61": { + "aid": 455 + }, + "62": { + "aid": 185 + }, + "64": { + "aid": 70 + }, + "65": { + "aid": 71 + }, + "66": { + "aid": 72 + }, + "67": { + "aid": 73 + }, + "68": { + "aid": 74 + }, + "69": { + "aid": 75 + }, + "70": { + "aid": 76 + }, + "71": { + "aid": 77 + }, + "72": { + "aid": 78 + }, + "74": { + "aid": 80 + }, + "75": { + "aid": 81 + }, + "76": { + "aid": 82 + }, + "77": { + "aid": 83 + }, + "78": { + "aid": 84 + }, + "79": { + "aid": 85 + }, + "80": { + "aid": 86 + }, + "81": { + "aid": 87 + }, + "82": { + "aid": 88 + }, + "84": { + "aid": 199 + }, + "85": { + "aid": 90 + }, + "86": { + "aid": 91 + }, + "87": { + "aid": 92 + }, + "89": { + "aid": 94 + }, + "90": { + "aid": 95 + }, + "92": { + "aid": 97 + }, + "93": { + "aid": 98 + }, + "94": { + "aid": 99 + }, + "95": { + "aid": 100 + }, + "97": { + "aid": 102 + }, + "98": { + "aid": 103 + }, + "99": { + "aid": 104 + }, + "100": { + "aid": 105 + }, + "101": { + "aid": 6 + }, + "102": { + "aid": 106 + }, + "103": { + "aid": 107 + }, + "104": { + "aid": 108 + }, + "105": { + "aid": 109 + }, + "106": { + "aid": 110 + }, + "107": { + "aid": 111 + }, + "108": { + "aid": 112 + }, + "109": { + "aid": 113 + }, + "110": { + "aid": 114 + }, + "111": { + "aid": 115 + }, + "112": { + "aid": 116 + }, + "115": { + "aid": 119 + }, + "117": { + "aid": 120 + }, + "118": { + "aid": 121 + }, + "120": { + "aid": 123 + }, + "121": { + "aid": 124 + }, + "122": { + "aid": 125 + }, + "123": { + "aid": 126 + }, + "124": { + "aid": 8 + }, + "126": { + "aid": 128 + }, + "127": { + "aid": 129 + }, + "129": { + "aid": 131 + }, + "130": { + "aid": 132 + }, + "131": { + "aid": 133 + }, + "133": { + "aid": 135 + }, + "134": { + "aid": 136 + }, + "135": { + "aid": 137 + }, + "137": { + "aid": 531 + }, + "138": { + "aid": 140 + }, + "140": { + "aid": 142 + }, + "141": { + "aid": 143 + }, + "143": { + "aid": 145 + }, + "145": { + "aid": 147 + }, + "148": { + "aid": 150 + }, + "149": { + "aid": 151 + }, + "150": { + "aid": 152 + }, + "151": { + "aid": 153 + }, + "152": { + "aid": 154 + }, + "153": { + "aid": 155 + }, + "154": { + "aid": 9 + }, + "156": { + "aid": 201 + }, + "157": { + "aid": 207 + }, + "158": { + "aid": 158 + }, + "159": { + "aid": 159 + }, + "160": { + "aid": 160 + }, + "161": { + "aid": 161 + }, + "162": { + "aid": 162 + }, + "163": { + "aid": 163 + }, + "164": { + "aid": 164 + }, + "166": { + "aid": 166 + }, + "167": { + "aid": 167 + }, + "168": { + "aid": 168 + }, + "169": { + "aid": 169 + }, + "170": { + "aid": 170 + }, + "171": { + "aid": 171 + }, + "172": { + "aid": 200 + }, + "173": { + "aid": 172 + }, + "174": { + "aid": 173 + }, + "175": { + "aid": 174 + }, + "176": { + "aid": 175 + }, + "177": { + "aid": 176 + }, + "178": { + "aid": 177 + }, + "179": { + "aid": 2765 + }, + "180": { + "aid": 186 + }, + "181": { + "aid": 187 + }, + "182": { + "aid": 179 + }, + "183": { + "aid": 191 + }, + "184": { + "aid": 192 + }, + "185": { + "aid": 194 + }, + "186": { + "aid": 195 + }, + "187": { + "aid": 196 + }, + "191": { + "aid": 208 + }, + "192": { + "aid": 209 + }, + "193": { + "aid": 210 + }, + "195": { + "aid": 242 + }, + "196": { + "aid": 213 + }, + "199": { + "aid": 211 + }, + "200": { + "aid": 217 + }, + "202": { + "aid": 219 + }, + "203": { + "aid": 228 + }, + "204": { + "aid": 220 + }, + "205": { + "aid": 221 + }, + "206": { + "aid": 244 + }, + "207": { + "aid": 245 + }, + "208": { + "aid": 222 + }, + "209": { + "aid": 223 + }, + "210": { + "aid": 224 + }, + "211": { + "aid": 237 + }, + "216": { + "aid": 248 + }, + "218": { + "aid": 225 + }, + "219": { + "aid": 226 + }, + "220": { + "aid": 234 + }, + "221": { + "aid": 249 + }, + "222": { + "aid": 235 + }, + "223": { + "aid": 240 + }, + "224": { + "aid": 227 + }, + "225": { + "aid": 246 + }, + "226": { + "aid": 233 + }, + "227": { + "aid": 243 + }, + "228": { + "aid": 231 + }, + "229": { + "aid": 236 + }, + "230": { + "aid": 239 + }, + "231": { + "aid": 241 + }, + "238": { + "aid": 19 + }, + "315": { + "aid": 95 + }, + "339": { + "aid": 120 + }, + "398": { + "aid": 187 + }, + "447": { + "aid": 250 + }, + "448": { + "aid": 251 + }, + "449": { + "aid": 252 + }, + "450": { + "aid": 253 + }, + "451": { + "aid": 254 + }, + "453": { + "aid": 255 + }, + "455": { + "aid": 257 + }, + "458": { + "aid": 259 + }, + "459": { + "aid": 260 + }, + "460": { + "aid": 261 + }, + "461": { + "aid": 262 + }, + "462": { + "aid": 263 + }, + "463": { + "aid": 264 + }, + "464": { + "aid": 265 + }, + "465": { + "aid": 266 + }, + "466": { + "aid": 267 + }, + "467": { + "aid": 268 + }, + "468": { + "aid": 269 + }, + "470": { + "aid": 270 + }, + "471": { + "aid": 272 + }, + "472": { + "aid": 273 + }, + "473": { + "aid": 274 + }, + "474": { + "aid": 275 + }, + "475": { + "aid": 276 + }, + "476": { + "aid": 277 + }, + "477": { + "aid": 279 + }, + "478": { + "aid": 278 + }, + "479": { + "aid": 280 + }, + "480": { + "aid": 281 + }, + "481": { + "aid": 282 + }, + "483": { + "aid": 283 + }, + "484": { + "aid": 284 + }, + "485": { + "aid": 285 + }, + "487": { + "aid": 287 + }, + "488": { + "aid": 288 + }, + "490": { + "aid": 289 + }, + "491": { + "aid": 290 + }, + "492": { + "aid": 291 + }, + "494": { + "aid": 292 + }, + "496": { + "aid": 293 + }, + "498": { + "aid": 256 + }, + "499": { + "aid": 294 + }, + "501": { + "aid": 295 + }, + "502": { + "aid": 296 + }, + "504": { + "aid": 297 + }, + "505": { + "aid": 299 + }, + "506": { + "aid": 300 + }, + "507": { + "aid": 301 + }, + "508": { + "aid": 302 + }, + "509": { + "aid": 304 + }, + "511": { + "aid": 306 + }, + "512": { + "aid": 307 + }, + "514": { + "aid": 308 + }, + "516": { + "aid": 309 + }, + "517": { + "aid": 310 + }, + "518": { + "aid": 311 + }, + "519": { + "aid": 312 + }, + "520": { + "aid": 313 + }, + "521": { + "aid": 314 + }, + "522": { + "aid": 315 + }, + "523": { + "aid": 316 + }, + "525": { + "aid": 318 + }, + "526": { + "aid": 319 + }, + "527": { + "aid": 320 + }, + "528": { + "aid": 321 + }, + "529": { + "aid": 322 + }, + "531": { + "aid": 323 + }, + "532": { + "aid": 324 + }, + "533": { + "aid": 326 + }, + "535": { + "aid": 327 + }, + "537": { + "aid": 328 + }, + "538": { + "aid": 329 + }, + "540": { + "aid": 330 + }, + "541": { + "aid": 331 + }, + "542": { + "aid": 332 + }, + "543": { + "aid": 317 + }, + "544": { + "aid": 333 + }, + "547": { + "aid": 335 + }, + "548": { + "aid": 336 + }, + "550": { + "aid": 337 + }, + "551": { + "aid": 338 + }, + "552": { + "aid": 339 + }, + "553": { + "aid": 340 + }, + "554": { + "aid": 341 + }, + "556": { + "aid": 344 + }, + "558": { + "aid": 345 + }, + "559": { + "aid": 346 + }, + "560": { + "aid": 347 + }, + "561": { + "aid": 348 + }, + "562": { + "aid": 349 + }, + "563": { + "aid": 350 + }, + "565": { + "aid": 351 + }, + "566": { + "aid": 352 + }, + "567": { + "aid": 353 + }, + "569": { + "aid": 354 + }, + "570": { + "aid": 355 + }, + "571": { + "aid": 356 + }, + "572": { + "aid": 357 + }, + "573": { + "aid": 358 + }, + "574": { + "aid": 359 + }, + "575": { + "aid": 360 + }, + "576": { + "aid": 361 + }, + "578": { + "aid": 363 + }, + "580": { + "aid": 364 + }, + "581": { + "aid": 365 + }, + "582": { + "aid": 366 + }, + "583": { + "aid": 367 + }, + "584": { + "aid": 368 + }, + "585": { + "aid": 369 + }, + "586": { + "aid": 370 + }, + "587": { + "aid": 371 + }, + "588": { + "aid": 372 + }, + "590": { + "aid": 373 + }, + "591": { + "aid": 374 + }, + "592": { + "aid": 375 + }, + "593": { + "aid": 376 + }, + "595": { + "aid": 377 + }, + "597": { + "aid": 378 + }, + "598": { + "aid": 379 + }, + "599": { + "aid": 380 + }, + "602": { + "aid": 381 + }, + "603": { + "aid": 382 + }, + "604": { + "aid": 383 + }, + "605": { + "aid": 384 + }, + "606": { + "aid": 385 + }, + "608": { + "aid": 386 + }, + "609": { + "aid": 386 + }, + "610": { + "aid": 387 + }, + "612": { + "aid": 388 + }, + "613": { + "aid": 389 + }, + "614": { + "aid": 390 + }, + "615": { + "aid": 391 + }, + "616": { + "aid": 392 + }, + "618": { + "aid": 393 + }, + "619": { + "aid": 394 + }, + "620": { + "aid": 395 + }, + "621": { + "aid": 396 + }, + "622": { + "aid": 397 + }, + "624": { + "aid": 398 + }, + "625": { + "aid": 399 + }, + "627": { + "aid": 400 + }, + "629": { + "aid": 401 + }, + "630": { + "aid": 402 + }, + "632": { + "aid": 403 + }, + "633": { + "aid": 404 + }, + "635": { + "aid": 405 + }, + "636": { + "aid": 406 + }, + "638": { + "aid": 407 + }, + "639": { + "aid": 408 + }, + "640": { + "aid": 409 + }, + "643": { + "aid": 410 + }, + "645": { + "aid": 411 + }, + "647": { + "aid": 412 + }, + "649": { + "aid": 414 + }, + "651": { + "aid": 415 + }, + "652": { + "aid": 416 + }, + "655": { + "aid": 43 + }, + "657": { + "aid": 422 + }, + "658": { + "aid": 423 + }, + "662": { + "aid": 425 + }, + "664": { + "aid": 426 + }, + "665": { + "aid": 427 + }, + "667": { + "aid": 428 + }, + "668": { + "aid": 429 + }, + "670": { + "aid": 430 + }, + "672": { + "aid": 431 + }, + "675": { + "aid": 432 + }, + "676": { + "aid": 433 + }, + "677": { + "aid": 434 + }, + "678": { + "aid": 435 + }, + "679": { + "aid": 438 + }, + "680": { + "aid": 439 + }, + "682": { + "aid": 440 + }, + "683": { + "aid": 441 + }, + "684": { + "aid": 442 + }, + "686": { + "aid": 443 + }, + "689": { + "aid": 445 + }, + "690": { + "aid": 446 + }, + "692": { + "aid": 447 + }, + "693": { + "aid": 448 + }, + "694": { + "aid": 449 + }, + "698": { + "aid": 424 + }, + "699": { + "aid": 450 + }, + "701": { + "aid": 451 + }, + "702": { + "aid": 452 + }, + "704": { + "aid": 453 + }, + "705": { + "aid": 454 + }, + "706": { + "aid": 454 + }, + "707": { + "aid": 455 + }, + "708": { + "aid": 455 + }, + "709": { + "aid": 456 + }, + "711": { + "aid": 457 + }, + "713": { + "aid": 458 + }, + "714": { + "aid": 459 + }, + "715": { + "aid": 460 + }, + "716": { + "aid": 461 + }, + "717": { + "aid": 462 + }, + "719": { + "aid": 464 + }, + "720": { + "aid": 465 + }, + "722": { + "aid": 466 + }, + "724": { + "aid": 468 + }, + "726": { + "aid": 469 + }, + "727": { + "aid": 469 + }, + "728": { + "aid": 470 + }, + "734": { + "aid": 472 + }, + "736": { + "aid": 473 + }, + "738": { + "aid": 474 + }, + "739": { + "aid": 474 + }, + "742": { + "aid": 476 + }, + "743": { + "aid": 476 + }, + "744": { + "aid": 477 + }, + "745": { + "aid": 478 + }, + "746": { + "aid": 479 + }, + "747": { + "aid": 481 + }, + "749": { + "aid": 483 + }, + "750": { + "aid": 484 + }, + "751": { + "aid": 485 + }, + "752": { + "aid": 486 + }, + "754": { + "aid": 487 + }, + "755": { + "aid": 488 + }, + "758": { + "aid": 489 + }, + "763": { + "aid": 491 + }, + "766": { + "aid": 492 + }, + "768": { + "aid": 493 + }, + "769": { + "aid": 494 + }, + "771": { + "aid": 495 + }, + "773": { + "aid": 496 + }, + "778": { + "aid": 19 + }, + "786": { + "aid": 354 + }, + "790": { + "aid": 359 + }, + "807": { + "aid": 500 + }, + "812": { + "aid": 505 + }, + "813": { + "aid": 505 + }, + "814": { + "aid": 506 + }, + "816": { + "aid": 507 + }, + "817": { + "aid": 508 + }, + "819": { + "aid": 510 + }, + "821": { + "aid": 511 + }, + "823": { + "aid": 512 + }, + "828": { + "aid": 516 + }, + "831": { + "aid": 517 + }, + "833": { + "aid": 354 + }, + "836": { + "aid": 520 + }, + "839": { + "aid": 522 + }, + "841": { + "aid": 523 + }, + "843": { + "aid": 524 + }, + "845": { + "aid": 525 + }, + "848": { + "aid": 527 + }, + "850": { + "aid": 528 + }, + "864": { + "aid": 541 + }, + "867": { + "aid": 543 + }, + "870": { + "aid": 471 + }, + "871": { + "aid": 546 + }, + "873": { + "aid": 547 + }, + "874": { + "aid": 548 + }, + "876": { + "aid": 548 + }, + "878": { + "aid": 549 + }, + "879": { + "aid": 550 + }, + "880": { + "aid": 551 + }, + "881": { + "aid": 552 + }, + "882": { + "aid": 208 + }, + "883": { + "aid": 553 + }, + "884": { + "aid": 554 + }, + "885": { + "aid": 555 + }, + "886": { + "aid": 556 + }, + "888": { + "aid": 557 + }, + "890": { + "aid": 535 + }, + "891": { + "aid": 558 + }, + "892": { + "aid": 559 + }, + "893": { + "aid": 559 + }, + "894": { + "aid": 559 + }, + "898": { + "aid": 561 + }, + "902": { + "aid": 566 + }, + "903": { + "aid": 567 + }, + "904": { + "aid": 568 + }, + "906": { + "aid": 570 + }, + "908": { + "aid": 540 + }, + "909": { + "aid": 540 + }, + "910": { + "aid": 571 + }, + "911": { + "aid": 571 + }, + "912": { + "aid": 572 + }, + "913": { + "aid": 573 + }, + "917": { + "aid": 577 + }, + "918": { + "aid": 578 + }, + "919": { + "aid": 578 + }, + "920": { + "aid": 361 + }, + "921": { + "aid": 361 + }, + "922": { + "aid": 49 + }, + "923": { + "aid": 579 + }, + "925": { + "aid": 580 + }, + "926": { + "aid": 582 + }, + "927": { + "aid": 526 + }, + "929": { + "aid": 504 + }, + "930": { + "aid": 386 + }, + "931": { + "aid": 583 + }, + "935": { + "aid": 13 + }, + "937": { + "aid": 586 + }, + "939": { + "aid": 587 + }, + "940": { + "aid": 587 + }, + "941": { + "aid": 235 + }, + "942": { + "aid": 20 + }, + "943": { + "aid": 588 + }, + "944": { + "aid": 589 + }, + "945": { + "aid": 589 + }, + "946": { + "aid": 590 + }, + "947": { + "aid": 591 + }, + "948": { + "aid": 557 + }, + "949": { + "aid": 562 + }, + "950": { + "aid": 592 + }, + "951": { + "aid": 593 + }, + "952": { + "aid": 557 + }, + "953": { + "aid": 557 + }, + "954": { + "aid": 557 + }, + "955": { + "aid": 594 + }, + "957": { + "aid": 595 + }, + "958": { + "aid": 596 + }, + "959": { + "aid": 508 + }, + "960": { + "aid": 597 + }, + "961": { + "aid": 598 + }, + "962": { + "aid": 33 + }, + "963": { + "aid": 33 + }, + "964": { + "aid": 33 + }, + "965": { + "aid": 310 + }, + "967": { + "aid": 599 + }, + "968": { + "aid": 533 + }, + "969": { + "aid": 600 + }, + "970": { + "aid": 600 + }, + "971": { + "aid": 600 + }, + "972": { + "aid": 600 + }, + "973": { + "aid": 600 + }, + "974": { + "aid": 600 + }, + "976": { + "aid": 600 + }, + "977": { + "aid": 85 + }, + "978": { + "aid": 100 + }, + "979": { + "aid": 18 + }, + "980": { + "aid": 601 + }, + "981": { + "aid": 36 + }, + "982": { + "aid": 502 + }, + "983": { + "aid": 602 + }, + "984": { + "aid": 37 + }, + "985": { + "aid": 473 + }, + "986": { + "aid": 503 + }, + "988": { + "aid": 603 + }, + "989": { + "aid": 604 + }, + "990": { + "aid": 8 + }, + "991": { + "aid": 605 + }, + "992": { + "aid": 606 + }, + "993": { + "aid": 607 + }, + "994": { + "aid": 608 + }, + "995": { + "aid": 609 + }, + "997": { + "aid": 610 + }, + "998": { + "aid": 610 + }, + "999": { + "aid": 610 + }, + "1002": { + "aid": 37 + }, + "1003": { + "aid": 611 + }, + "1004": { + "aid": 612 + }, + "1005": { + "aid": 613 + }, + "1006": { + "aid": 464 + }, + "1009": { + "aid": 614 + }, + "1010": { + "aid": 615 + }, + "1011": { + "aid": 534 + }, + "1012": { + "aid": 108 + }, + "1013": { + "aid": 617 + }, + "1015": { + "aid": 253 + }, + "1016": { + "aid": 618 + }, + "1017": { + "aid": 619 + }, + "1018": { + "aid": 620 + }, + "1020": { + "aid": 313 + }, + "1021": { + "aid": 621 + }, + "1023": { + "aid": 498 + }, + "1024": { + "aid": 622 + }, + "1025": { + "aid": 462 + }, + "1026": { + "aid": 93 + }, + "1027": { + "aid": 93 + }, + "1028": { + "aid": 93 + }, + "1029": { + "aid": 93 + }, + "1030": { + "aid": 464 + }, + "1031": { + "aid": 455 + }, + "1032": { + "aid": 375 + }, + "1033": { + "aid": 19 + }, + "1034": { + "aid": 19 + }, + "1035": { + "aid": 19 + }, + "1037": { + "aid": 19 + }, + "1038": { + "aid": 19 + }, + "1040": { + "aid": 32 + }, + "1041": { + "aid": 32 + }, + "1043": { + "aid": 33 + }, + "1045": { + "aid": 49 + }, + "1046": { + "aid": 49 + }, + "1048": { + "aid": 50 + }, + "1049": { + "aid": 55 + }, + "1050": { + "aid": 55 + }, + "1051": { + "aid": 56 + }, + "1052": { + "aid": 56 + }, + "1053": { + "aid": 56 + }, + "1055": { + "aid": 67 + }, + "1056": { + "aid": 88 + }, + "1057": { + "aid": 88 + }, + "1058": { + "aid": 88 + }, + "1059": { + "aid": 98 + }, + "1062": { + "aid": 407 + }, + "1063": { + "aid": 2546 + }, + "1064": { + "aid": 1458 + }, + "1065": { + "aid": 428 + }, + "1066": { + "aid": 554 + }, + "1067": { + "aid": 554 + }, + "1068": { + "aid": 623 + }, + "1069": { + "aid": 624 + }, + "1070": { + "aid": 625 + }, + "1071": { + "aid": 626 + }, + "1073": { + "aid": 628 + }, + "1074": { + "aid": 629 + }, + "1075": { + "aid": 629 + }, + "1076": { + "aid": 630 + }, + "1077": { + "aid": 631 + }, + "1078": { + "aid": 186 + }, + "1079": { + "aid": 632 + }, + "1080": { + "aid": 633 + }, + "1081": { + "aid": 634 + }, + "1082": { + "aid": 635 + }, + "1083": { + "aid": 635 + }, + "1084": { + "aid": 636 + }, + "1085": { + "aid": 637 + }, + "1087": { + "aid": 639 + }, + "1088": { + "aid": 640 + }, + "1089": { + "aid": 641 + }, + "1090": { + "aid": 466 + }, + "1091": { + "aid": 1047 + }, + "1092": { + "aid": 642 + }, + "1093": { + "aid": 643 + }, + "1094": { + "aid": 644 + }, + "1095": { + "aid": 644 + }, + "1096": { + "aid": 645 + }, + "1097": { + "aid": 646 + }, + "1098": { + "aid": 257 + }, + "1099": { + "aid": 647 + }, + "1100": { + "aid": 27 + }, + "1101": { + "aid": 27 + }, + "1102": { + "aid": 648 + }, + "1103": { + "aid": 650 + }, + "1104": { + "aid": 650 + }, + "1105": { + "aid": 651 + }, + "1108": { + "aid": 654 + }, + "1109": { + "aid": 655 + }, + "1111": { + "aid": 656 + }, + "1112": { + "aid": 657 + }, + "1114": { + "aid": 659 + }, + "1115": { + "aid": 660 + }, + "1116": { + "aid": 661 + }, + "1117": { + "aid": 582 + }, + "1118": { + "aid": 662 + }, + "1119": { + "aid": 663 + }, + "1120": { + "aid": 664 + }, + "1121": { + "aid": 665 + }, + "1122": { + "aid": 666 + }, + "1123": { + "aid": 667 + }, + "1124": { + "aid": 668 + }, + "1125": { + "aid": 669 + }, + "1126": { + "aid": 37 + }, + "1127": { + "aid": 670 + }, + "1128": { + "aid": 671 + }, + "1129": { + "aid": 672 + }, + "1130": { + "aid": 673 + }, + "1131": { + "aid": 674 + }, + "1132": { + "aid": 675 + }, + "1133": { + "aid": 676 + }, + "1134": { + "aid": 678 + }, + "1135": { + "aid": 679 + }, + "1137": { + "aid": 679 + }, + "1138": { + "aid": 679 + }, + "1140": { + "aid": 600 + }, + "1141": { + "aid": 680 + }, + "1143": { + "aid": 682 + }, + "1145": { + "aid": 408 + }, + "1146": { + "aid": 683 + }, + "1147": { + "aid": 684 + }, + "1148": { + "aid": 684 + }, + "1149": { + "aid": 685 + }, + "1150": { + "aid": 686 + }, + "1151": { + "aid": 687 + }, + "1153": { + "aid": 689 + }, + "1154": { + "aid": 499 + }, + "1155": { + "aid": 691 + }, + "1156": { + "aid": 692 + }, + "1158": { + "aid": 43 + }, + "1159": { + "aid": 694 + }, + "1160": { + "aid": 696 + }, + "1161": { + "aid": 697 + }, + "1162": { + "aid": 698 + }, + "1164": { + "aid": 59 + }, + "1165": { + "aid": 59 + }, + "1166": { + "aid": 699 + }, + "1168": { + "aid": 700 + }, + "1169": { + "aid": 701 + }, + "1170": { + "aid": 701 + }, + "1171": { + "aid": 702 + }, + "1174": { + "aid": 704 + }, + "1175": { + "aid": 705 + }, + "1176": { + "aid": 453 + }, + "1179": { + "aid": 706 + }, + "1180": { + "aid": 707 + }, + "1181": { + "aid": 691 + }, + "1183": { + "aid": 709 + }, + "1184": { + "aid": 710 + }, + "1186": { + "aid": 711 + }, + "1187": { + "aid": 712 + }, + "1188": { + "aid": 713 + }, + "1189": { + "aid": 714 + }, + "1190": { + "aid": 715 + }, + "1191": { + "aid": 716 + }, + "1192": { + "aid": 718 + }, + "1194": { + "aid": 719 + }, + "1195": { + "aid": 720 + }, + "1202": { + "aid": 723 + }, + "1205": { + "aid": 580 + }, + "1211": { + "aid": 727 + }, + "1219": { + "aid": 732 + }, + "1221": { + "aid": 733 + }, + "1230": { + "aid": 485 + }, + "1235": { + "aid": 735 + }, + "1241": { + "aid": 740 + }, + "1244": { + "aid": 675 + }, + "1245": { + "aid": 742 + }, + "1246": { + "aid": 743 + }, + "1248": { + "aid": 744 + }, + "1249": { + "aid": 745 + }, + "1250": { + "aid": 746 + }, + "1251": { + "aid": 728 + }, + "1254": { + "aid": 748 + }, + "1257": { + "aid": 749 + }, + "1261": { + "aid": 753 + }, + "1263": { + "aid": 484 + }, + "1264": { + "aid": 732 + }, + "1265": { + "aid": 215 + }, + "1267": { + "aid": 757 + }, + "1268": { + "aid": 760 + }, + "1269": { + "aid": 760 + }, + "1270": { + "aid": 761 + }, + "1271": { + "aid": 762 + }, + "1272": { + "aid": 763 + }, + "1273": { + "aid": 764 + }, + "1274": { + "aid": 765 + }, + "1277": { + "aid": 768 + }, + "1279": { + "aid": 769 + }, + "1280": { + "aid": 770 + }, + "1281": { + "aid": 772 + }, + "1282": { + "aid": 773 + }, + "1283": { + "aid": 774 + }, + "1284": { + "aid": 775 + }, + "1286": { + "aid": 775 + }, + "1287": { + "aid": 776 + }, + "1288": { + "aid": 777 + }, + "1289": { + "aid": 778 + }, + "1290": { + "aid": 779 + }, + "1291": { + "aid": 780 + }, + "1292": { + "aid": 780 + }, + "1293": { + "aid": 781 + }, + "1294": { + "aid": 782 + }, + "1296": { + "aid": 783 + }, + "1298": { + "aid": 784 + }, + "1299": { + "aid": 785 + }, + "1300": { + "aid": 786 + }, + "1301": { + "aid": 786 + }, + "1302": { + "aid": 49 + }, + "1303": { + "aid": 787 + }, + "1304": { + "aid": 788 + }, + "1307": { + "aid": 790 + }, + "1310": { + "aid": 791 + }, + "1311": { + "aid": 123 + }, + "1313": { + "aid": 162 + }, + "1314": { + "aid": 195 + }, + "1316": { + "aid": 792 + }, + "1317": { + "aid": 793 + }, + "1318": { + "aid": 794 + }, + "1319": { + "aid": 795 + }, + "1320": { + "aid": 796 + }, + "1321": { + "aid": 797 + }, + "1322": { + "aid": 798 + }, + "1323": { + "aid": 799 + }, + "1324": { + "aid": 800 + }, + "1326": { + "aid": 802 + }, + "1327": { + "aid": 803 + }, + "1328": { + "aid": 805 + }, + "1329": { + "aid": 806 + }, + "1330": { + "aid": 806 + }, + "1331": { + "aid": 806 + }, + "1332": { + "aid": 293 + }, + "1333": { + "aid": 307 + }, + "1335": { + "aid": 162 + }, + "1336": { + "aid": 809 + }, + "1337": { + "aid": 810 + }, + "1340": { + "aid": 812 + }, + "1341": { + "aid": 813 + }, + "1342": { + "aid": 814 + }, + "1343": { + "aid": 814 + }, + "1344": { + "aid": 816 + }, + "1345": { + "aid": 817 + }, + "1346": { + "aid": 818 + }, + "1347": { + "aid": 819 + }, + "1348": { + "aid": 820 + }, + "1349": { + "aid": 821 + }, + "1350": { + "aid": 822 + }, + "1351": { + "aid": 823 + }, + "1352": { + "aid": 824 + }, + "1353": { + "aid": 825 + }, + "1354": { + "aid": 826 + }, + "1355": { + "aid": 826 + }, + "1356": { + "aid": 827 + }, + "1357": { + "aid": 828 + }, + "1358": { + "aid": 829 + }, + "1359": { + "aid": 505 + }, + "1360": { + "aid": 358 + }, + "1361": { + "aid": 666 + }, + "1362": { + "aid": 306 + }, + "1363": { + "aid": 830 + }, + "1364": { + "aid": 831 + }, + "1365": { + "aid": 832 + }, + "1367": { + "aid": 833 + }, + "1368": { + "aid": 834 + }, + "1369": { + "aid": 835 + }, + "1370": { + "aid": 836 + }, + "1371": { + "aid": 814 + }, + "1372": { + "aid": 837 + }, + "1373": { + "aid": 838 + }, + "1374": { + "aid": 838 + }, + "1375": { + "aid": 839 + }, + "1378": { + "aid": 842 + }, + "1379": { + "aid": 843 + }, + "1380": { + "aid": 844 + }, + "1381": { + "aid": 845 + }, + "1382": { + "aid": 846 + }, + "1383": { + "aid": 847 + }, + "1385": { + "aid": 849 + }, + "1386": { + "aid": 850 + }, + "1387": { + "aid": 694 + }, + "1388": { + "aid": 33 + }, + "1389": { + "aid": 33 + }, + "1390": { + "aid": 33 + }, + "1391": { + "aid": 33 + }, + "1392": { + "aid": 851 + }, + "1393": { + "aid": 852 + }, + "1394": { + "aid": 853 + }, + "1396": { + "aid": 855 + }, + "1397": { + "aid": 856 + }, + "1398": { + "aid": 857 + }, + "1399": { + "aid": 858 + }, + "1400": { + "aid": 701 + }, + "1401": { + "aid": 253 + }, + "1402": { + "aid": 186 + }, + "1403": { + "aid": 818 + }, + "1407": { + "aid": 859 + }, + "1408": { + "aid": 860 + }, + "1409": { + "aid": 861 + }, + "1410": { + "aid": 862 + }, + "1411": { + "aid": 862 + }, + "1412": { + "aid": 863 + }, + "1413": { + "aid": 864 + }, + "1414": { + "aid": 865 + }, + "1415": { + "aid": 866 + }, + "1416": { + "aid": 867 + }, + "1417": { + "aid": 868 + }, + "1418": { + "aid": 47 + }, + "1420": { + "aid": 869 + }, + "1421": { + "aid": 870 + }, + "1422": { + "aid": 871 + }, + "1423": { + "aid": 872 + }, + "1424": { + "aid": 873 + }, + "1425": { + "aid": 874 + }, + "1426": { + "aid": 875 + }, + "1427": { + "aid": 876 + }, + "1428": { + "aid": 877 + }, + "1430": { + "aid": 878 + }, + "1432": { + "aid": 701 + }, + "1433": { + "aid": 573 + }, + "1434": { + "aid": 47 + }, + "1435": { + "aid": 879 + }, + "1436": { + "aid": 880 + }, + "1437": { + "aid": 872 + }, + "1438": { + "aid": 881 + }, + "1439": { + "aid": 557 + }, + "1446": { + "aid": 883 + }, + "1447": { + "aid": 884 + }, + "1448": { + "aid": 885 + }, + "1449": { + "aid": 886 + }, + "1450": { + "aid": 861 + }, + "1451": { + "aid": 795 + }, + "1452": { + "aid": 887 + }, + "1453": { + "aid": 888 + }, + "1454": { + "aid": 889 + }, + "1455": { + "aid": 729 + }, + "1457": { + "aid": 892 + }, + "1459": { + "aid": 529 + }, + "1460": { + "aid": 893 + }, + "1464": { + "aid": 895 + }, + "1466": { + "aid": 896 + }, + "1467": { + "aid": 897 + }, + "1470": { + "aid": 515 + }, + "1471": { + "aid": 898 + }, + "1473": { + "aid": 900 + }, + "1474": { + "aid": 901 + }, + "1475": { + "aid": 902 + }, + "1476": { + "aid": 903 + }, + "1477": { + "aid": 904 + }, + "1479": { + "aid": 905 + }, + "1480": { + "aid": 730 + }, + "1481": { + "aid": 906 + }, + "1482": { + "aid": 907 + }, + "1483": { + "aid": 908 + }, + "1484": { + "aid": 701 + }, + "1486": { + "aid": 909 + }, + "1487": { + "aid": 910 + }, + "1488": { + "aid": 911 + }, + "1489": { + "aid": 912 + }, + "1492": { + "aid": 914 + }, + "1493": { + "aid": 915 + }, + "1494": { + "aid": 259 + }, + "1495": { + "aid": 751 + }, + "1496": { + "aid": 210 + }, + "1497": { + "aid": 916 + }, + "1498": { + "aid": 917 + }, + "1499": { + "aid": 919 + }, + "1500": { + "aid": 910 + }, + "1501": { + "aid": 921 + }, + "1502": { + "aid": 922 + }, + "1503": { + "aid": 923 + }, + "1504": { + "aid": 924 + }, + "1507": { + "aid": 925 + }, + "1509": { + "aid": 656 + }, + "1512": { + "aid": 926 + }, + "1513": { + "aid": 926 + }, + "1515": { + "aid": 927 + }, + "1516": { + "aid": 924 + }, + "1517": { + "aid": 91 + }, + "1518": { + "aid": 928 + }, + "1519": { + "aid": 929 + }, + "1520": { + "aid": 920 + }, + "1521": { + "aid": 920 + }, + "1522": { + "aid": 930 + }, + "1523": { + "aid": 931 + }, + "1525": { + "aid": 932 + }, + "1526": { + "aid": 933 + }, + "1529": { + "aid": 936 + }, + "1530": { + "aid": 937 + }, + "1531": { + "aid": 546 + }, + "1532": { + "aid": 938 + }, + "1533": { + "aid": 939 + }, + "1534": { + "aid": 66 + }, + "1536": { + "aid": 731 + }, + "1537": { + "aid": 941 + }, + "1540": { + "aid": 943 + }, + "1541": { + "aid": 944 + }, + "1543": { + "aid": 945 + }, + "1545": { + "aid": 537 + }, + "1546": { + "aid": 946 + }, + "1547": { + "aid": 947 + }, + "1548": { + "aid": 948 + }, + "1549": { + "aid": 949 + }, + "1550": { + "aid": 950 + }, + "1551": { + "aid": 951 + }, + "1553": { + "aid": 952 + }, + "1554": { + "aid": 953 + }, + "1555": { + "aid": 954 + }, + "1556": { + "aid": 955 + }, + "1558": { + "aid": 958 + }, + "1562": { + "aid": 960 + }, + "1563": { + "aid": 961 + }, + "1564": { + "aid": 962 + }, + "1566": { + "aid": 963 + }, + "1567": { + "aid": 964 + }, + "1569": { + "aid": 965 + }, + "1570": { + "aid": 966 + }, + "1571": { + "aid": 967 + }, + "1572": { + "aid": 520 + }, + "1573": { + "aid": 968 + }, + "1575": { + "aid": 969 + }, + "1577": { + "aid": 47 + }, + "1578": { + "aid": 970 + }, + "1579": { + "aid": 970 + }, + "1580": { + "aid": 33 + }, + "1583": { + "aid": 503 + }, + "1584": { + "aid": 19 + }, + "1585": { + "aid": 19 + }, + "1586": { + "aid": 971 + }, + "1587": { + "aid": 972 + }, + "1588": { + "aid": 973 + }, + "1589": { + "aid": 974 + }, + "1590": { + "aid": 974 + }, + "1591": { + "aid": 975 + }, + "1593": { + "aid": 976 + }, + "1594": { + "aid": 977 + }, + "1595": { + "aid": 978 + }, + "1599": { + "aid": 979 + }, + "1601": { + "aid": 980 + }, + "1602": { + "aid": 981 + }, + "1603": { + "aid": 982 + }, + "1604": { + "aid": 982 + }, + "1605": { + "aid": 983 + }, + "1606": { + "aid": 984 + }, + "1607": { + "aid": 984 + }, + "1608": { + "aid": 985 + }, + "1610": { + "aid": 986 + }, + "1611": { + "aid": 988 + }, + "1612": { + "aid": 989 + }, + "1617": { + "aid": 990 + }, + "1619": { + "aid": 992 + }, + "1621": { + "aid": 993 + }, + "1622": { + "aid": 613 + }, + "1623": { + "aid": 994 + }, + "1624": { + "aid": 1419 + }, + "1625": { + "aid": 995 + }, + "1626": { + "aid": 996 + }, + "1627": { + "aid": 997 + }, + "1628": { + "aid": 998 + }, + "1629": { + "aid": 999 + }, + "1630": { + "aid": 1000 + }, + "1631": { + "aid": 1001 + }, + "1632": { + "aid": 1002 + }, + "1633": { + "aid": 1003 + }, + "1634": { + "aid": 1004 + }, + "1635": { + "aid": 1005 + }, + "1636": { + "aid": 1006 + }, + "1637": { + "aid": 1007 + }, + "1638": { + "aid": 1008 + }, + "1639": { + "aid": 1009 + }, + "1640": { + "aid": 1010 + }, + "1641": { + "aid": 1011 + }, + "1642": { + "aid": 1012 + }, + "1643": { + "aid": 1013 + }, + "1644": { + "aid": 1014 + }, + "1645": { + "aid": 1015 + }, + "1646": { + "aid": 1016 + }, + "1647": { + "aid": 1017 + }, + "1648": { + "aid": 1018 + }, + "1649": { + "aid": 1019 + }, + "1650": { + "aid": 1020 + }, + "1651": { + "aid": 1021 + }, + "1652": { + "aid": 1022 + }, + "1654": { + "aid": 1024 + }, + "1655": { + "aid": 1025 + }, + "1656": { + "aid": 1026 + }, + "1657": { + "aid": 1027 + }, + "1659": { + "aid": 1028 + }, + "1660": { + "aid": 1029 + }, + "1661": { + "aid": 1029 + }, + "1662": { + "aid": 1030 + }, + "1663": { + "aid": 1031 + }, + "1664": { + "aid": 1033 + }, + "1665": { + "aid": 1034 + }, + "1666": { + "aid": 1035 + }, + "1668": { + "aid": 1036 + }, + "1670": { + "aid": 1037 + }, + "1671": { + "aid": 1038 + }, + "1672": { + "aid": 1039 + }, + "1673": { + "aid": 1040 + }, + "1675": { + "aid": 1041 + }, + "1683": { + "aid": 1044 + }, + "1684": { + "aid": 1045 + }, + "1685": { + "aid": 1046 + }, + "1686": { + "aid": 869 + }, + "1687": { + "aid": 1048 + }, + "1688": { + "aid": 1049 + }, + "1689": { + "aid": 1049 + }, + "1690": { + "aid": 1050 + }, + "1692": { + "aid": 1051 + }, + "1693": { + "aid": 1052 + }, + "1695": { + "aid": 1053 + }, + "1696": { + "aid": 1054 + }, + "1697": { + "aid": 1055 + }, + "1698": { + "aid": 401 + }, + "1699": { + "aid": 1057 + }, + "1700": { + "aid": 1058 + }, + "1701": { + "aid": 1059 + }, + "1702": { + "aid": 1060 + }, + "1703": { + "aid": 1061 + }, + "1704": { + "aid": 1062 + }, + "1705": { + "aid": 1063 + }, + "1706": { + "aid": 1064 + }, + "1707": { + "aid": 1065 + }, + "1708": { + "aid": 1066 + }, + "1709": { + "aid": 1067 + }, + "1710": { + "aid": 1068 + }, + "1711": { + "aid": 1069 + }, + "1715": { + "aid": 1070 + }, + "1717": { + "aid": 1071 + }, + "1719": { + "aid": 1072 + }, + "1722": { + "aid": 1074 + }, + "1724": { + "aid": 1075 + }, + "1727": { + "aid": 1076 + }, + "1728": { + "aid": 1077 + }, + "1732": { + "aid": 1079 + }, + "1734": { + "aid": 170 + }, + "1735": { + "aid": 1080 + }, + "1737": { + "aid": 1081 + }, + "1739": { + "aid": 1083 + }, + "1740": { + "aid": 1084 + }, + "1742": { + "aid": 1086 + }, + "1743": { + "aid": 1087 + }, + "1744": { + "aid": 1088 + }, + "1745": { + "aid": 1089 + }, + "1746": { + "aid": 1090 + }, + "1747": { + "aid": 1091 + }, + "1748": { + "aid": 1092 + }, + "1749": { + "aid": 1093 + }, + "1750": { + "aid": 1094 + }, + "1751": { + "aid": 1095 + }, + "1752": { + "aid": 1096 + }, + "1753": { + "aid": 1096 + }, + "1754": { + "aid": 483 + }, + "1755": { + "aid": 604 + }, + "1757": { + "aid": 1098 + }, + "1758": { + "aid": 1099 + }, + "1759": { + "aid": 1100 + }, + "1760": { + "aid": 1101 + }, + "1761": { + "aid": 1102 + }, + "1766": { + "aid": 78 + }, + "1767": { + "aid": 1103 + }, + "1769": { + "aid": 1104 + }, + "1770": { + "aid": 1105 + }, + "1771": { + "aid": 1105 + }, + "1776": { + "aid": 1108 + }, + "1778": { + "aid": 1109 + }, + "1780": { + "aid": 1110 + }, + "1785": { + "aid": 1112 + }, + "1787": { + "aid": 1113 + }, + "1792": { + "aid": 1114 + }, + "1794": { + "aid": 1115 + }, + "1799": { + "aid": 1116 + }, + "1800": { + "aid": 1117 + }, + "1801": { + "aid": 1118 + }, + "1803": { + "aid": 1119 + }, + "1805": { + "aid": 1120 + }, + "1806": { + "aid": 934 + }, + "1808": { + "aid": 1121 + }, + "1810": { + "aid": 1122 + }, + "1812": { + "aid": 1123 + }, + "1813": { + "aid": 1124 + }, + "1814": { + "aid": 1125 + }, + "1815": { + "aid": 1126 + }, + "1816": { + "aid": 1127 + }, + "1817": { + "aid": 1128 + }, + "1818": { + "aid": 1129 + }, + "1819": { + "aid": 1130 + }, + "1821": { + "aid": 1131 + }, + "1824": { + "aid": 1133 + }, + "1825": { + "aid": 1134 + }, + "1826": { + "aid": 1135 + }, + "1827": { + "aid": 1136 + }, + "1828": { + "aid": 1137 + }, + "1829": { + "aid": 1138 + }, + "1831": { + "aid": 1133 + }, + "1833": { + "aid": 1141 + }, + "1834": { + "aid": 1142 + }, + "1835": { + "aid": 1143 + }, + "1836": { + "aid": 1144 + }, + "1839": { + "aid": 1147 + }, + "1841": { + "aid": 1148 + }, + "1842": { + "aid": 1148 + }, + "1844": { + "aid": 675 + }, + "1845": { + "aid": 1149 + }, + "1847": { + "aid": 1150 + }, + "1848": { + "aid": 722 + }, + "1849": { + "aid": 1151 + }, + "1851": { + "aid": 1152 + }, + "1852": { + "aid": 1153 + }, + "1853": { + "aid": 1154 + }, + "1854": { + "aid": 1155 + }, + "1855": { + "aid": 1156 + }, + "1856": { + "aid": 1158 + }, + "1857": { + "aid": 1159 + }, + "1858": { + "aid": 1160 + }, + "1860": { + "aid": 1161 + }, + "1861": { + "aid": 1162 + }, + "1862": { + "aid": 1163 + }, + "1864": { + "aid": 1165 + }, + "1865": { + "aid": 1166 + }, + "1866": { + "aid": 1167 + }, + "1870": { + "aid": 1168 + }, + "1872": { + "aid": 1169 + }, + "1874": { + "aid": 1170 + }, + "1876": { + "aid": 1171 + }, + "1878": { + "aid": 1172 + }, + "1880": { + "aid": 32 + }, + "1881": { + "aid": 1173 + }, + "1884": { + "aid": 1174 + }, + "1887": { + "aid": 1175 + }, + "1889": { + "aid": 1176 + }, + "1892": { + "aid": 501 + }, + "1894": { + "aid": 1177 + }, + "1895": { + "aid": 1178 + }, + "1896": { + "aid": 1179 + }, + "1897": { + "aid": 1180 + }, + "1898": { + "aid": 1181 + }, + "1899": { + "aid": 1182 + }, + "1900": { + "aid": 1183 + }, + "1901": { + "aid": 1184 + }, + "1902": { + "aid": 1185 + }, + "1903": { + "aid": 1186 + }, + "1904": { + "aid": 1187 + }, + "1906": { + "aid": 557 + }, + "1907": { + "aid": 1188 + }, + "1914": { + "aid": 1189 + }, + "1916": { + "aid": 1190 + }, + "1918": { + "aid": 1191 + }, + "1921": { + "aid": 1192 + }, + "1923": { + "aid": 1193 + }, + "1929": { + "aid": 1194 + }, + "1931": { + "aid": 1195 + }, + "1934": { + "aid": 1196 + }, + "1936": { + "aid": 1197 + }, + "1938": { + "aid": 1198 + }, + "1941": { + "aid": 1199 + }, + "1943": { + "aid": 1200 + }, + "1944": { + "aid": 1201 + }, + "1945": { + "aid": 1202 + }, + "1947": { + "aid": 1203 + }, + "1949": { + "aid": 1204 + }, + "1950": { + "aid": 1205 + }, + "1951": { + "aid": 1032 + }, + "1952": { + "aid": 1206 + }, + "1953": { + "aid": 1207 + }, + "1956": { + "aid": 1209 + }, + "1958": { + "aid": 1210 + }, + "1960": { + "aid": 1211 + }, + "1962": { + "aid": 1212 + }, + "1966": { + "aid": 1214 + }, + "1970": { + "aid": 1215 + }, + "1972": { + "aid": 1216 + }, + "1975": { + "aid": 98 + }, + "1976": { + "aid": 98 + }, + "1977": { + "aid": 315 + }, + "1980": { + "aid": 1217 + }, + "1981": { + "aid": 1218 + }, + "1982": { + "aid": 13 + }, + "1983": { + "aid": 1219 + }, + "1984": { + "aid": 1220 + }, + "1985": { + "aid": 1221 + }, + "1986": { + "aid": 1222 + }, + "1989": { + "aid": 1223 + }, + "1990": { + "aid": 1224 + }, + "1993": { + "aid": 1225 + }, + "1995": { + "aid": 1226 + }, + "1996": { + "aid": 1227 + }, + "1997": { + "aid": 1228 + }, + "1998": { + "aid": 1229 + }, + "2001": { + "aid": 1230 + }, + "2003": { + "aid": 1231 + }, + "2005": { + "aid": 1232 + }, + "2007": { + "aid": 1233 + }, + "2011": { + "aid": 1234 + }, + "2013": { + "aid": 1235 + }, + "2016": { + "aid": 1236 + }, + "2018": { + "aid": 1237 + }, + "2020": { + "aid": 1238 + }, + "2023": { + "aid": 1239 + }, + "2025": { + "aid": 1240 + }, + "2027": { + "aid": 1241 + }, + "2030": { + "aid": 1242 + }, + "2032": { + "aid": 1243 + }, + "2034": { + "aid": 1244 + }, + "2036": { + "aid": 1245 + }, + "2038": { + "aid": 1246 + }, + "2040": { + "aid": 1247 + }, + "2041": { + "aid": 1248 + }, + "2042": { + "aid": 1249 + }, + "2043": { + "aid": 1250 + }, + "2045": { + "aid": 1251 + }, + "2048": { + "aid": 1252 + }, + "2055": { + "aid": 1253 + }, + "2057": { + "aid": 1254 + }, + "2063": { + "aid": 1256 + }, + "2065": { + "aid": 1257 + }, + "2067": { + "aid": 1258 + }, + "2070": { + "aid": 1259 + }, + "2073": { + "aid": 1260 + }, + "2077": { + "aid": 1261 + }, + "2079": { + "aid": 1262 + }, + "2083": { + "aid": 1264 + }, + "2086": { + "aid": 1265 + }, + "2088": { + "aid": 1266 + }, + "2091": { + "aid": 1267 + }, + "2095": { + "aid": 1268 + }, + "2099": { + "aid": 1269 + }, + "2100": { + "aid": 1270 + }, + "2101": { + "aid": 1271 + }, + "2102": { + "aid": 240 + }, + "2103": { + "aid": 1272 + }, + "2104": { + "aid": 1273 + }, + "2106": { + "aid": 1274 + }, + "2108": { + "aid": 1275 + }, + "2113": { + "aid": 1277 + }, + "2115": { + "aid": 1278 + }, + "2117": { + "aid": 1279 + }, + "2119": { + "aid": 1280 + }, + "2120": { + "aid": 1280 + }, + "2122": { + "aid": 1281 + }, + "2125": { + "aid": 1282 + }, + "2127": { + "aid": 1283 + }, + "2130": { + "aid": 1284 + }, + "2131": { + "aid": 1285 + }, + "2135": { + "aid": 1286 + }, + "2136": { + "aid": 1287 + }, + "2138": { + "aid": 532 + }, + "2139": { + "aid": 1288 + }, + "2141": { + "aid": 1289 + }, + "2144": { + "aid": 1290 + }, + "2149": { + "aid": 1291 + }, + "2151": { + "aid": 1292 + }, + "2153": { + "aid": 557 + }, + "2156": { + "aid": 1293 + }, + "2158": { + "aid": 1294 + }, + "2161": { + "aid": 1295 + }, + "2165": { + "aid": 1296 + }, + "2168": { + "aid": 1297 + }, + "2170": { + "aid": 1298 + }, + "2172": { + "aid": 1299 + }, + "2178": { + "aid": 1300 + }, + "2180": { + "aid": 1301 + }, + "2182": { + "aid": 1302 + }, + "2184": { + "aid": 1304 + }, + "2185": { + "aid": 1306 + }, + "2186": { + "aid": 1307 + }, + "2187": { + "aid": 1308 + }, + "2188": { + "aid": 1309 + }, + "2190": { + "aid": 1310 + }, + "2192": { + "aid": 1311 + }, + "2194": { + "aid": 1312 + }, + "2196": { + "aid": 1313 + }, + "2198": { + "aid": 1314 + }, + "2200": { + "aid": 1315 + }, + "2202": { + "aid": 1316 + }, + "2204": { + "aid": 1317 + }, + "2206": { + "aid": 1318 + }, + "2208": { + "aid": 1319 + }, + "2210": { + "aid": 1320 + }, + "2212": { + "aid": 1321 + }, + "2217": { + "aid": 1322 + }, + "2219": { + "aid": 1323 + }, + "2221": { + "aid": 1324 + }, + "2223": { + "aid": 1325 + }, + "2225": { + "aid": 1326 + }, + "2227": { + "aid": 1327 + }, + "2229": { + "aid": 1328 + }, + "2230": { + "aid": 47 + }, + "2232": { + "aid": 1329 + }, + "2235": { + "aid": 1330 + }, + "2237": { + "aid": 1331 + }, + "2239": { + "aid": 1332 + }, + "2241": { + "aid": 1333 + }, + "2244": { + "aid": 1334 + }, + "2246": { + "aid": 1335 + }, + "2248": { + "aid": 1336 + }, + "2250": { + "aid": 1337 + }, + "2252": { + "aid": 1338 + }, + "2255": { + "aid": 1339 + }, + "2257": { + "aid": 954 + }, + "2258": { + "aid": 1340 + }, + "2259": { + "aid": 1341 + }, + "2260": { + "aid": 1342 + }, + "2261": { + "aid": 1029 + }, + "2262": { + "aid": 1343 + }, + "2263": { + "aid": 1344 + }, + "2264": { + "aid": 1345 + }, + "2265": { + "aid": 1346 + }, + "2266": { + "aid": 1347 + }, + "2268": { + "aid": 1348 + }, + "2270": { + "aid": 1349 + }, + "2273": { + "aid": 1350 + }, + "2275": { + "aid": 1351 + }, + "2276": { + "aid": 1352 + }, + "2278": { + "aid": 1373 + }, + "2281": { + "aid": 1354 + }, + "2286": { + "aid": 1355 + }, + "2288": { + "aid": 1356 + }, + "2290": { + "aid": 1357 + }, + "2292": { + "aid": 1358 + }, + "2299": { + "aid": 1359 + }, + "2301": { + "aid": 1360 + }, + "2304": { + "aid": 1361 + }, + "2306": { + "aid": 1362 + }, + "2308": { + "aid": 1363 + }, + "2310": { + "aid": 1364 + }, + "2321": { + "aid": 1366 + }, + "2322": { + "aid": 1367 + }, + "2324": { + "aid": 1368 + }, + "2325": { + "aid": 1369 + }, + "2326": { + "aid": 1370 + }, + "2327": { + "aid": 1371 + }, + "2331": { + "aid": 1375 + }, + "2332": { + "aid": 1376 + }, + "2333": { + "aid": 1373 + }, + "2334": { + "aid": 1377 + }, + "2335": { + "aid": 1343 + }, + "2336": { + "aid": 1378 + }, + "2337": { + "aid": 1157 + }, + "2338": { + "aid": 1380 + }, + "2340": { + "aid": 1384 + }, + "2341": { + "aid": 1385 + }, + "2342": { + "aid": 1386 + }, + "2343": { + "aid": 1390 + }, + "2344": { + "aid": 1391 + }, + "2346": { + "aid": 1392 + }, + "2348": { + "aid": 1393 + }, + "2351": { + "aid": 1394 + }, + "2352": { + "aid": 1395 + }, + "2353": { + "aid": 1396 + }, + "2355": { + "aid": 1397 + }, + "2356": { + "aid": 1397 + }, + "2357": { + "aid": 1398 + }, + "2358": { + "aid": 1399 + }, + "2359": { + "aid": 1400 + }, + "2360": { + "aid": 868 + }, + "2361": { + "aid": 1401 + }, + "2362": { + "aid": 1402 + }, + "2363": { + "aid": 1403 + }, + "2364": { + "aid": 1404 + }, + "2365": { + "aid": 1406 + }, + "2366": { + "aid": 212 + }, + "2367": { + "aid": 1407 + }, + "2368": { + "aid": 1408 + }, + "2369": { + "aid": 675 + }, + "2370": { + "aid": 1409 + }, + "2371": { + "aid": 1410 + }, + "2372": { + "aid": 1410 + }, + "2373": { + "aid": 557 + }, + "2374": { + "aid": 1411 + }, + "2375": { + "aid": 1412 + }, + "2376": { + "aid": 1413 + }, + "2377": { + "aid": 1414 + }, + "2379": { + "aid": 357 + }, + "2380": { + "aid": 397 + }, + "2381": { + "aid": 1416 + }, + "2382": { + "aid": 810 + }, + "2383": { + "aid": 1417 + }, + "2384": { + "aid": 1418 + }, + "2385": { + "aid": 1343 + }, + "2386": { + "aid": 1420 + }, + "2387": { + "aid": 1421 + }, + "2388": { + "aid": 1422 + }, + "2389": { + "aid": 1423 + }, + "2390": { + "aid": 1424 + }, + "2391": { + "aid": 1425 + }, + "2392": { + "aid": 1426 + }, + "2393": { + "aid": 1427 + }, + "2394": { + "aid": 1428 + }, + "2395": { + "aid": 1429 + }, + "2396": { + "aid": 1431 + }, + "2397": { + "aid": 1430 + }, + "2398": { + "aid": 1432 + }, + "2399": { + "aid": 1433 + }, + "2400": { + "aid": 1433 + }, + "2401": { + "aid": 1434 + }, + "2402": { + "aid": 1357 + }, + "2403": { + "aid": 1435 + }, + "2404": { + "aid": 1436 + }, + "2405": { + "aid": 1437 + }, + "2406": { + "aid": 1439 + }, + "2407": { + "aid": 1440 + }, + "2408": { + "aid": 1441 + }, + "2410": { + "aid": 1443 + }, + "2411": { + "aid": 1444 + }, + "2412": { + "aid": 1445 + }, + "2413": { + "aid": 1446 + }, + "2414": { + "aid": 1330 + }, + "2415": { + "aid": 1447 + }, + "2416": { + "aid": 1448 + }, + "2417": { + "aid": 1449 + }, + "2418": { + "aid": 1450 + }, + "2419": { + "aid": 1421 + }, + "2420": { + "aid": 1451 + }, + "2421": { + "aid": 1452 + }, + "2422": { + "aid": 60 + }, + "2423": { + "aid": 88 + }, + "2424": { + "aid": 1453 + }, + "2425": { + "aid": 1454 + }, + "2427": { + "aid": 502 + }, + "2428": { + "aid": 1455 + }, + "2429": { + "aid": 1456 + }, + "2430": { + "aid": 1457 + }, + "2431": { + "aid": 8 + }, + "2432": { + "aid": 1459 + }, + "2433": { + "aid": 1460 + }, + "2434": { + "aid": 1461 + }, + "2435": { + "aid": 1462 + }, + "2436": { + "aid": 1463 + }, + "2437": { + "aid": 1465 + }, + "2439": { + "aid": 691 + }, + "2440": { + "aid": 1405 + }, + "2441": { + "aid": 1466 + }, + "2442": { + "aid": 1467 + }, + "2443": { + "aid": 1468 + }, + "2444": { + "aid": 1469 + }, + "2445": { + "aid": 1470 + }, + "2446": { + "aid": 715 + }, + "2447": { + "aid": 1471 + }, + "2448": { + "aid": 1472 + }, + "2449": { + "aid": 1473 + }, + "2450": { + "aid": 1474 + }, + "2451": { + "aid": 1476 + }, + "2452": { + "aid": 1477 + }, + "2453": { + "aid": 1478 + }, + "2454": { + "aid": 1479 + }, + "2455": { + "aid": 1480 + }, + "2457": { + "aid": 1475 + }, + "2458": { + "aid": 1481 + }, + "2459": { + "aid": 1482 + }, + "2460": { + "aid": 1483 + }, + "2462": { + "aid": 1485 + }, + "2463": { + "aid": 1486 + }, + "2464": { + "aid": 1487 + }, + "2465": { + "aid": 1488 + }, + "2466": { + "aid": 1489 + }, + "2467": { + "aid": 1490 + }, + "2468": { + "aid": 790 + }, + "2469": { + "aid": 1491 + }, + "2470": { + "aid": 1492 + }, + "2471": { + "aid": 1493 + }, + "2472": { + "aid": 1495 + }, + "2475": { + "aid": 922 + }, + "2476": { + "aid": 1496 + }, + "2477": { + "aid": 1497 + }, + "2478": { + "aid": 497 + }, + "2479": { + "aid": 1498 + }, + "2480": { + "aid": 1499 + }, + "2481": { + "aid": 1500 + }, + "2482": { + "aid": 318 + }, + "2483": { + "aid": 1501 + }, + "2484": { + "aid": 1502 + }, + "2485": { + "aid": 1377 + }, + "2486": { + "aid": 1504 + }, + "2487": { + "aid": 1305 + }, + "2488": { + "aid": 1505 + }, + "2489": { + "aid": 1506 + }, + "2490": { + "aid": 1507 + }, + "2491": { + "aid": 1509 + }, + "2492": { + "aid": 466 + }, + "2493": { + "aid": 1510 + }, + "2494": { + "aid": 1511 + }, + "2495": { + "aid": 1512 + }, + "2496": { + "aid": 1513 + }, + "2497": { + "aid": 1514 + }, + "2498": { + "aid": 1515 + }, + "2499": { + "aid": 1516 + }, + "2500": { + "aid": 1517 + }, + "2501": { + "aid": 736 + }, + "2502": { + "aid": 1518 + }, + "2503": { + "aid": 1519 + }, + "2504": { + "aid": 1520 + }, + "2507": { + "aid": 1522 + }, + "2508": { + "aid": 1523 + }, + "2510": { + "aid": 1526 + }, + "2511": { + "aid": 1527 + }, + "2512": { + "aid": 1528 + }, + "2513": { + "aid": 1529 + }, + "2514": { + "aid": 1530 + }, + "2515": { + "aid": 724 + }, + "2516": { + "aid": 204 + }, + "2517": { + "aid": 1531 + }, + "2518": { + "aid": 1532 + }, + "2519": { + "aid": 1533 + }, + "2520": { + "aid": 1534 + }, + "2521": { + "aid": 1535 + }, + "2522": { + "aid": 1536 + }, + "2523": { + "aid": 1537 + }, + "2525": { + "aid": 1538 + }, + "2526": { + "aid": 1539 + }, + "2527": { + "aid": 1540 + }, + "2528": { + "aid": 1541 + }, + "2529": { + "aid": 319 + }, + "2530": { + "aid": 1542 + }, + "2531": { + "aid": 88 + }, + "2532": { + "aid": 1545 + }, + "2533": { + "aid": 1543 + }, + "2534": { + "aid": 918 + }, + "2535": { + "aid": 1544 + }, + "2536": { + "aid": 868 + }, + "2537": { + "aid": 1545 + }, + "2538": { + "aid": 1546 + }, + "2539": { + "aid": 1547 + }, + "2540": { + "aid": 1548 + }, + "2541": { + "aid": 1549 + }, + "2542": { + "aid": 1551 + }, + "2543": { + "aid": 1550 + }, + "2544": { + "aid": 1552 + }, + "2546": { + "aid": 1553 + }, + "2547": { + "aid": 1554 + }, + "2548": { + "aid": 1555 + }, + "2549": { + "aid": 1556 + }, + "2550": { + "aid": 1557 + }, + "2551": { + "aid": 1558 + }, + "2552": { + "aid": 1559 + }, + "2553": { + "aid": 1560 + }, + "2554": { + "aid": 1561 + }, + "2555": { + "aid": 1562 + }, + "2556": { + "aid": 1563 + }, + "2557": { + "aid": 1564 + }, + "2558": { + "aid": 1565 + }, + "2559": { + "aid": 1566 + }, + "2560": { + "aid": 1567 + }, + "2561": { + "aid": 1568 + }, + "2562": { + "aid": 1569 + }, + "2563": { + "aid": 1570 + }, + "2564": { + "aid": 1571 + }, + "2565": { + "aid": 1572 + }, + "2566": { + "aid": 1574 + }, + "2567": { + "aid": 269 + }, + "2568": { + "aid": 1575 + }, + "2569": { + "aid": 1576 + }, + "2570": { + "aid": 1577 + }, + "2571": { + "aid": 357 + }, + "2572": { + "aid": 1578 + }, + "2573": { + "aid": 1580 + }, + "2574": { + "aid": 1433 + }, + "2575": { + "aid": 1581 + }, + "2576": { + "aid": 1582 + }, + "2578": { + "aid": 1382 + }, + "2579": { + "aid": 1584 + }, + "2580": { + "aid": 1585 + }, + "2581": { + "aid": 1586 + }, + "2582": { + "aid": 1587 + }, + "2583": { + "aid": 1588 + }, + "2584": { + "aid": 1589 + }, + "2585": { + "aid": 1590 + }, + "2586": { + "aid": 1591 + }, + "2587": { + "aid": 1592 + }, + "2588": { + "aid": 1593 + }, + "2589": { + "aid": 1594 + }, + "2590": { + "aid": 1595 + }, + "2591": { + "aid": 1596 + }, + "2592": { + "aid": 1597 + }, + "2593": { + "aid": 1598 + }, + "2594": { + "aid": 1599 + }, + "2595": { + "aid": 88 + }, + "2596": { + "aid": 1600 + }, + "2597": { + "aid": 1601 + }, + "2598": { + "aid": 1602 + }, + "2599": { + "aid": 1603 + }, + "2600": { + "aid": 1604 + }, + "2601": { + "aid": 1605 + }, + "2602": { + "aid": 1606 + }, + "2603": { + "aid": 1607 + }, + "2604": { + "aid": 1608 + }, + "2605": { + "aid": 1609 + }, + "2606": { + "aid": 1610 + }, + "2607": { + "aid": 1611 + }, + "2608": { + "aid": 1612 + }, + "2610": { + "aid": 1614 + }, + "2611": { + "aid": 1615 + }, + "2613": { + "aid": 1617 + }, + "2614": { + "aid": 1618 + }, + "2615": { + "aid": 1619 + }, + "2616": { + "aid": 1620 + }, + "2617": { + "aid": 1621 + }, + "2618": { + "aid": 1622 + }, + "2619": { + "aid": 1623 + }, + "2620": { + "aid": 1624 + }, + "2621": { + "aid": 1625 + }, + "2622": { + "aid": 1626 + }, + "2623": { + "aid": 1627 + }, + "2624": { + "aid": 1627 + }, + "2625": { + "aid": 1628 + }, + "2626": { + "aid": 1629 + }, + "2627": { + "aid": 1630 + }, + "2628": { + "aid": 1631 + }, + "2629": { + "aid": 1632 + }, + "2630": { + "aid": 1633 + }, + "2631": { + "aid": 1634 + }, + "2632": { + "aid": 1635 + }, + "2633": { + "aid": 1636 + }, + "2634": { + "aid": 1637 + }, + "2635": { + "aid": 1638 + }, + "2636": { + "aid": 1639 + }, + "2637": { + "aid": 753 + }, + "2638": { + "aid": 2813 + }, + "2639": { + "aid": 1640 + }, + "2640": { + "aid": 1642 + }, + "2641": { + "aid": 1641 + }, + "2642": { + "aid": 1643 + }, + "2643": { + "aid": 1644 + }, + "2644": { + "aid": 1645 + }, + "2645": { + "aid": 1646 + }, + "2646": { + "aid": 1647 + }, + "2647": { + "aid": 1648 + }, + "2648": { + "aid": 1649 + }, + "2649": { + "aid": 1650 + }, + "2650": { + "aid": 1651 + }, + "2651": { + "aid": 1652 + }, + "2652": { + "aid": 1653 + }, + "2653": { + "aid": 1654 + }, + "2654": { + "aid": 1655 + }, + "2655": { + "aid": 1656 + }, + "2656": { + "aid": 1657 + }, + "2657": { + "aid": 1658 + }, + "2658": { + "aid": 1659 + }, + "2660": { + "aid": 1661 + }, + "2661": { + "aid": 1663 + }, + "2662": { + "aid": 1664 + }, + "2663": { + "aid": 1665 + }, + "2664": { + "aid": 1666 + }, + "2665": { + "aid": 1667 + }, + "2666": { + "aid": 1668 + }, + "2667": { + "aid": 1669 + }, + "2668": { + "aid": 1670 + }, + "2670": { + "aid": 1671 + }, + "2671": { + "aid": 1672 + }, + "2672": { + "aid": 1673 + }, + "2673": { + "aid": 1674 + }, + "2674": { + "aid": 1675 + }, + "2675": { + "aid": 1676 + }, + "2676": { + "aid": 1677 + }, + "2677": { + "aid": 1679 + }, + "2678": { + "aid": 1680 + }, + "2679": { + "aid": 1681 + }, + "2681": { + "aid": 1682 + }, + "2682": { + "aid": 1683 + }, + "2683": { + "aid": 1684 + }, + "2684": { + "aid": 1685 + }, + "2685": { + "aid": 1686 + }, + "2686": { + "aid": 1687 + }, + "2687": { + "aid": 1688 + }, + "2688": { + "aid": 1157 + }, + "2689": { + "aid": 1157 + }, + "2690": { + "aid": 1157 + }, + "2691": { + "aid": 1689 + }, + "2692": { + "aid": 1690 + }, + "2693": { + "aid": 1691 + }, + "2694": { + "aid": 1692 + }, + "2695": { + "aid": 1693 + }, + "2696": { + "aid": 557 + }, + "2697": { + "aid": 557 + }, + "2698": { + "aid": 1694 + }, + "2699": { + "aid": 1572 + }, + "2700": { + "aid": 1695 + }, + "2701": { + "aid": 1696 + }, + "2702": { + "aid": 1697 + }, + "2703": { + "aid": 1698 + }, + "2704": { + "aid": 1699 + }, + "2705": { + "aid": 1700 + }, + "2706": { + "aid": 1701 + }, + "2707": { + "aid": 1702 + }, + "2708": { + "aid": 1703 + }, + "2709": { + "aid": 1704 + }, + "2710": { + "aid": 1705 + }, + "2711": { + "aid": 1706 + }, + "2712": { + "aid": 1707 + }, + "2713": { + "aid": 1708 + }, + "2714": { + "aid": 1709 + }, + "2715": { + "aid": 1710 + }, + "2716": { + "aid": 1711 + }, + "2717": { + "aid": 1712 + }, + "2718": { + "aid": 1713 + }, + "2719": { + "aid": 224 + }, + "2720": { + "aid": 1714 + }, + "2721": { + "aid": 1715 + }, + "2722": { + "aid": 1716 + }, + "2723": { + "aid": 1717 + }, + "2724": { + "aid": 1718 + }, + "2726": { + "aid": 1720 + }, + "2727": { + "aid": 1721 + }, + "2728": { + "aid": 1722 + }, + "2729": { + "aid": 1723 + }, + "2730": { + "aid": 1724 + }, + "2731": { + "aid": 1724 + }, + "2732": { + "aid": 1725 + }, + "2733": { + "aid": 1726 + }, + "2734": { + "aid": 514 + }, + "2735": { + "aid": 1727 + }, + "2736": { + "aid": 1728 + }, + "2738": { + "aid": 1730 + }, + "2739": { + "aid": 1731 + }, + "2740": { + "aid": 1732 + }, + "2741": { + "aid": 1733 + }, + "2742": { + "aid": 1734 + }, + "2743": { + "aid": 1735 + }, + "2744": { + "aid": 1736 + }, + "2745": { + "aid": 1737 + }, + "2746": { + "aid": 1255 + }, + "2747": { + "aid": 1738 + }, + "2748": { + "aid": 1739 + }, + "2749": { + "aid": 1740 + }, + "2750": { + "aid": 1741 + }, + "2751": { + "aid": 1742 + }, + "2752": { + "aid": 1743 + }, + "2753": { + "aid": 1744 + }, + "2754": { + "aid": 583 + }, + "2755": { + "aid": 935 + }, + "2756": { + "aid": 1379 + }, + "2757": { + "aid": 41 + }, + "2758": { + "aid": 1746 + }, + "2759": { + "aid": 1747 + }, + "2760": { + "aid": 1748 + }, + "2761": { + "aid": 1749 + }, + "2762": { + "aid": 1750 + }, + "2763": { + "aid": 1751 + }, + "2764": { + "aid": 1752 + }, + "2765": { + "aid": 1753 + }, + "2766": { + "aid": 1754 + }, + "2767": { + "aid": 1755 + }, + "2768": { + "aid": 1756 + }, + "2769": { + "aid": 1757 + }, + "2770": { + "aid": 113 + }, + "2771": { + "aid": 2765 + }, + "2772": { + "aid": 348 + }, + "2773": { + "aid": 409 + }, + "2775": { + "aid": 1465 + }, + "2776": { + "aid": 179 + }, + "2777": { + "aid": 1529 + }, + "2778": { + "aid": 423 + }, + "2779": { + "aid": 58 + }, + "2780": { + "aid": 3 + }, + "2781": { + "aid": 255 + }, + "2782": { + "aid": 424 + }, + "2783": { + "aid": 624 + }, + "2784": { + "aid": 1584 + }, + "2785": { + "aid": 26 + }, + "2786": { + "aid": 1731 + }, + "2787": { + "aid": 117 + }, + "2788": { + "aid": 111 + }, + "2789": { + "aid": 153 + }, + "2791": { + "aid": 869 + }, + "2792": { + "aid": 2072 + }, + "2793": { + "aid": 458 + }, + "2794": { + "aid": 370 + }, + "2795": { + "aid": 1114 + }, + "2796": { + "aid": 454 + }, + "2797": { + "aid": 1450 + }, + "2798": { + "aid": 47 + }, + "2799": { + "aid": 47 + }, + "2800": { + "aid": 840 + }, + "2801": { + "aid": 52 + }, + "2802": { + "aid": 46 + }, + "2803": { + "aid": 339 + }, + "2804": { + "aid": 383 + }, + "2805": { + "aid": 84 + }, + "2806": { + "aid": 246 + }, + "2807": { + "aid": 1676 + }, + "2808": { + "aid": 257 + }, + "2809": { + "aid": 441 + }, + "2810": { + "aid": 27 + }, + "2811": { + "aid": 27 + }, + "2812": { + "aid": 1722 + }, + "2813": { + "aid": 16 + }, + "2814": { + "aid": 166 + }, + "2815": { + "aid": 163 + }, + "2817": { + "aid": 116 + }, + "2818": { + "aid": 207 + }, + "2820": { + "aid": 285 + }, + "2821": { + "aid": 1758 + }, + "2822": { + "aid": 1759 + }, + "2823": { + "aid": 1760 + }, + "2824": { + "aid": 382 + }, + "2825": { + "aid": 1761 + }, + "2826": { + "aid": 908 + }, + "2827": { + "aid": 1762 + }, + "2828": { + "aid": 1763 + }, + "2829": { + "aid": 1764 + }, + "2830": { + "aid": 1765 + }, + "2831": { + "aid": 1766 + }, + "2832": { + "aid": 1767 + }, + "2833": { + "aid": 113 + }, + "2834": { + "aid": 484 + }, + "2835": { + "aid": 1768 + }, + "2836": { + "aid": 1769 + }, + "2837": { + "aid": 1770 + }, + "2838": { + "aid": 1157 + }, + "2839": { + "aid": 1771 + }, + "2840": { + "aid": 1772 + }, + "2841": { + "aid": 1773 + }, + "2842": { + "aid": 1774 + }, + "2843": { + "aid": 1775 + }, + "2844": { + "aid": 1776 + }, + "2845": { + "aid": 1777 + }, + "2846": { + "aid": 1778 + }, + "2847": { + "aid": 1779 + }, + "2848": { + "aid": 1780 + }, + "2849": { + "aid": 1781 + }, + "2850": { + "aid": 1782 + }, + "2851": { + "aid": 1783 + }, + "2852": { + "aid": 1784 + }, + "2853": { + "aid": 1785 + }, + "2854": { + "aid": 1786 + }, + "2855": { + "aid": 1787 + }, + "2856": { + "aid": 1788 + }, + "2857": { + "aid": 1089 + }, + "2858": { + "aid": 434 + }, + "2859": { + "aid": 1789 + }, + "2861": { + "aid": 1791 + }, + "2862": { + "aid": 1792 + }, + "2863": { + "aid": 1793 + }, + "2864": { + "aid": 1794 + }, + "2865": { + "aid": 1795 + }, + "2866": { + "aid": 1796 + }, + "2867": { + "aid": 1797 + }, + "2868": { + "aid": 1798 + }, + "2869": { + "aid": 1799 + }, + "2870": { + "aid": 1800 + }, + "2871": { + "aid": 1801 + }, + "2872": { + "aid": 405 + }, + "2873": { + "aid": 1802 + }, + "2874": { + "aid": 1803 + }, + "2875": { + "aid": 1804 + }, + "2876": { + "aid": 1804 + }, + "2877": { + "aid": 37 + }, + "2878": { + "aid": 1805 + }, + "2879": { + "aid": 1806 + }, + "2880": { + "aid": 26 + }, + "2881": { + "aid": 1807 + }, + "2882": { + "aid": 1808 + }, + "2883": { + "aid": 1809 + }, + "2884": { + "aid": 1810 + }, + "2885": { + "aid": 1811 + }, + "2886": { + "aid": 1812 + }, + "2887": { + "aid": 1813 + }, + "2888": { + "aid": 1814 + }, + "2889": { + "aid": 1815 + }, + "2890": { + "aid": 1816 + }, + "2891": { + "aid": 1817 + }, + "2892": { + "aid": 1818 + }, + "2893": { + "aid": 1819 + }, + "2894": { + "aid": 1820 + }, + "2895": { + "aid": 1821 + }, + "2896": { + "aid": 1822 + }, + "2897": { + "aid": 1823 + }, + "2898": { + "aid": 1824 + }, + "2899": { + "aid": 1825 + }, + "2900": { + "aid": 1826 + }, + "2902": { + "aid": 1828 + }, + "2903": { + "aid": 1829 + }, + "2904": { + "aid": 1830 + }, + "2905": { + "aid": 1831 + }, + "2906": { + "aid": 1832 + }, + "2907": { + "aid": 1283 + }, + "2908": { + "aid": 1833 + }, + "2909": { + "aid": 1834 + }, + "2910": { + "aid": 1835 + }, + "2911": { + "aid": 1836 + }, + "2912": { + "aid": 1837 + }, + "2913": { + "aid": 1838 + }, + "2914": { + "aid": 1839 + }, + "2915": { + "aid": 1840 + }, + "2916": { + "aid": 1841 + }, + "2917": { + "aid": 531 + }, + "2918": { + "aid": 1842 + }, + "2920": { + "aid": 1843 + }, + "2921": { + "aid": 1844 + }, + "2922": { + "aid": 1845 + }, + "2923": { + "aid": 1846 + }, + "2924": { + "aid": 1847 + }, + "2925": { + "aid": 1848 + }, + "2926": { + "aid": 1849 + }, + "2927": { + "aid": 1850 + }, + "2928": { + "aid": 1851 + }, + "2929": { + "aid": 1852 + }, + "2930": { + "aid": 1853 + }, + "2931": { + "aid": 283 + }, + "2932": { + "aid": 283 + }, + "2933": { + "aid": 284 + }, + "2934": { + "aid": 1101 + }, + "2935": { + "aid": 1856 + }, + "2936": { + "aid": 1857 + }, + "2937": { + "aid": 1858 + }, + "2938": { + "aid": 1859 + }, + "2939": { + "aid": 1860 + }, + "2940": { + "aid": 1861 + }, + "2941": { + "aid": 1862 + }, + "2942": { + "aid": 1863 + }, + "2943": { + "aid": 1864 + }, + "2944": { + "aid": 1865 + }, + "2945": { + "aid": 1865 + }, + "2946": { + "aid": 1866 + }, + "2947": { + "aid": 675 + }, + "2948": { + "aid": 1867 + }, + "2949": { + "aid": 1868 + }, + "2950": { + "aid": 1343 + }, + "2951": { + "aid": 1869 + }, + "2952": { + "aid": 1869 + }, + "2953": { + "aid": 104 + }, + "2954": { + "aid": 1870 + }, + "2955": { + "aid": 1871 + }, + "2956": { + "aid": 1872 + }, + "2957": { + "aid": 1873 + }, + "2959": { + "aid": 637 + }, + "2960": { + "aid": 1874 + }, + "2961": { + "aid": 1875 + }, + "2962": { + "aid": 1876 + }, + "2964": { + "aid": 1877 + }, + "2965": { + "aid": 1878 + }, + "2966": { + "aid": 1879 + }, + "2967": { + "aid": 1880 + }, + "2968": { + "aid": 1881 + }, + "2969": { + "aid": 1882 + }, + "2970": { + "aid": 1883 + }, + "2971": { + "aid": 1884 + }, + "2972": { + "aid": 1885 + }, + "2973": { + "aid": 1886 + }, + "2974": { + "aid": 1887 + }, + "2975": { + "aid": 1888 + }, + "2976": { + "aid": 1889 + }, + "2977": { + "aid": 1890 + }, + "2978": { + "aid": 1891 + }, + "2979": { + "aid": 1892 + }, + "2980": { + "aid": 1892 + }, + "2981": { + "aid": 1893 + }, + "2982": { + "aid": 1894 + }, + "2983": { + "aid": 1895 + }, + "2984": { + "aid": 1896 + }, + "2985": { + "aid": 1897 + }, + "2986": { + "aid": 1898 + }, + "2987": { + "aid": 1899 + }, + "2988": { + "aid": 1900 + }, + "2989": { + "aid": 1901 + }, + "2990": { + "aid": 1902 + }, + "2991": { + "aid": 1903 + }, + "2992": { + "aid": 1904 + }, + "2993": { + "aid": 1905 + }, + "2994": { + "aid": 1906 + }, + "2995": { + "aid": 1907 + }, + "2996": { + "aid": 1908 + }, + "2997": { + "aid": 1909 + }, + "2998": { + "aid": 1910 + }, + "2999": { + "aid": 187 + }, + "3000": { + "aid": 1912 + }, + "3001": { + "aid": 1913 + }, + "3002": { + "aid": 1914 + }, + "3003": { + "aid": 1915 + }, + "3004": { + "aid": 1916 + }, + "3005": { + "aid": 1917 + }, + "3006": { + "aid": 1918 + }, + "3007": { + "aid": 1919 + }, + "3008": { + "aid": 1920 + }, + "3009": { + "aid": 311 + }, + "3010": { + "aid": 1921 + }, + "3011": { + "aid": 1921 + }, + "3012": { + "aid": 140 + }, + "3013": { + "aid": 600 + }, + "3014": { + "aid": 1922 + }, + "3015": { + "aid": 1923 + }, + "3016": { + "aid": 1924 + }, + "3017": { + "aid": 1820 + }, + "3018": { + "aid": 1925 + }, + "3019": { + "aid": 1926 + }, + "3020": { + "aid": 1927 + }, + "3021": { + "aid": 1928 + }, + "3022": { + "aid": 1929 + }, + "3023": { + "aid": 1930 + }, + "3024": { + "aid": 1931 + }, + "3025": { + "aid": 1934 + }, + "3026": { + "aid": 1935 + }, + "3027": { + "aid": 1936 + }, + "3028": { + "aid": 1937 + }, + "3029": { + "aid": 1938 + }, + "3030": { + "aid": 37 + }, + "3031": { + "aid": 1939 + }, + "3032": { + "aid": 1940 + }, + "3033": { + "aid": 1941 + }, + "3034": { + "aid": 1942 + }, + "3035": { + "aid": 1943 + }, + "3036": { + "aid": 1944 + }, + "3037": { + "aid": 1945 + }, + "3038": { + "aid": 1946 + }, + "3039": { + "aid": 1947 + }, + "3040": { + "aid": 1948 + }, + "3041": { + "aid": 1949 + }, + "3042": { + "aid": 1950 + }, + "3043": { + "aid": 1951 + }, + "3044": { + "aid": 1952 + }, + "3045": { + "aid": 1953 + }, + "3046": { + "aid": 1954 + }, + "3047": { + "aid": 1955 + }, + "3048": { + "aid": 1956 + }, + "3049": { + "aid": 1957 + }, + "3050": { + "aid": 1958 + }, + "3051": { + "aid": 958 + }, + "3052": { + "aid": 1959 + }, + "3053": { + "aid": 1960 + }, + "3055": { + "aid": 1962 + }, + "3056": { + "aid": 995 + }, + "3057": { + "aid": 1963 + }, + "3058": { + "aid": 1964 + }, + "3059": { + "aid": 1965 + }, + "3060": { + "aid": 1724 + }, + "3061": { + "aid": 1966 + }, + "3062": { + "aid": 1967 + }, + "3063": { + "aid": 1968 + }, + "3064": { + "aid": 1969 + }, + "3065": { + "aid": 1970 + }, + "3066": { + "aid": 557 + }, + "3067": { + "aid": 1971 + }, + "3068": { + "aid": 1972 + }, + "3069": { + "aid": 1973 + }, + "3070": { + "aid": 1974 + }, + "3071": { + "aid": 1975 + }, + "3072": { + "aid": 1976 + }, + "3073": { + "aid": 1977 + }, + "3074": { + "aid": 587 + }, + "3075": { + "aid": 1978 + }, + "3076": { + "aid": 1979 + }, + "3077": { + "aid": 1980 + }, + "3078": { + "aid": 1981 + }, + "3079": { + "aid": 1982 + }, + "3080": { + "aid": 1983 + }, + "3081": { + "aid": 1984 + }, + "3082": { + "aid": 674 + }, + "3083": { + "aid": 1985 + }, + "3084": { + "aid": 1986 + }, + "3085": { + "aid": 1957 + }, + "3086": { + "aid": 1987 + }, + "3087": { + "aid": 1988 + }, + "3088": { + "aid": 1628 + }, + "3089": { + "aid": 20 + }, + "3090": { + "aid": 1989 + }, + "3091": { + "aid": 1433 + }, + "3092": { + "aid": 1990 + }, + "3093": { + "aid": 1991 + }, + "3094": { + "aid": 1991 + }, + "3095": { + "aid": 145 + }, + "3096": { + "aid": 1992 + }, + "3097": { + "aid": 1521 + }, + "3098": { + "aid": 1993 + }, + "3099": { + "aid": 1994 + }, + "3100": { + "aid": 1494 + }, + "3101": { + "aid": 426 + }, + "3102": { + "aid": 1995 + }, + "3103": { + "aid": 1996 + }, + "3104": { + "aid": 1997 + }, + "3105": { + "aid": 1998 + }, + "3106": { + "aid": 1999 + }, + "3107": { + "aid": 1648 + }, + "3108": { + "aid": 2000 + }, + "3109": { + "aid": 2001 + }, + "3110": { + "aid": 2002 + }, + "3111": { + "aid": 2003 + }, + "3112": { + "aid": 2004 + }, + "3113": { + "aid": 2005 + }, + "3114": { + "aid": 2006 + }, + "3115": { + "aid": 2007 + }, + "3116": { + "aid": 2008 + }, + "3117": { + "aid": 2009 + }, + "3118": { + "aid": 2010 + }, + "3119": { + "aid": 2011 + }, + "3120": { + "aid": 2012 + }, + "3121": { + "aid": 40 + }, + "3122": { + "aid": 2013 + }, + "3123": { + "aid": 2014 + }, + "3124": { + "aid": 2015 + }, + "3125": { + "aid": 2016 + }, + "3126": { + "aid": 2017 + }, + "3127": { + "aid": 2018 + }, + "3128": { + "aid": 2019 + }, + "3129": { + "aid": 2020 + }, + "3130": { + "aid": 2021 + }, + "3131": { + "aid": 2022 + }, + "3132": { + "aid": 2023 + }, + "3133": { + "aid": 2024 + }, + "3134": { + "aid": 2025 + }, + "3135": { + "aid": 2026 + }, + "3136": { + "aid": 2027 + }, + "3137": { + "aid": 2028 + }, + "3138": { + "aid": 2029 + }, + "3139": { + "aid": 2030 + }, + "3140": { + "aid": 2031 + }, + "3141": { + "aid": 2032 + }, + "3142": { + "aid": 2033 + }, + "3143": { + "aid": 2034 + }, + "3144": { + "aid": 2035 + }, + "3145": { + "aid": 2036 + }, + "3146": { + "aid": 2037 + }, + "3147": { + "aid": 2038 + }, + "3148": { + "aid": 2039 + }, + "3149": { + "aid": 2040 + }, + "3150": { + "aid": 2041 + }, + "3151": { + "aid": 2042 + }, + "3152": { + "aid": 2042 + }, + "3153": { + "aid": 2042 + }, + "3154": { + "aid": 2043 + }, + "3155": { + "aid": 2044 + }, + "3156": { + "aid": 19 + }, + "3157": { + "aid": 2046 + }, + "3158": { + "aid": 2047 + }, + "3159": { + "aid": 2048 + }, + "3160": { + "aid": 47 + }, + "3161": { + "aid": 2049 + }, + "3162": { + "aid": 2050 + }, + "3163": { + "aid": 2051 + }, + "3164": { + "aid": 2052 + }, + "3165": { + "aid": 2053 + }, + "3166": { + "aid": 2054 + }, + "3167": { + "aid": 2055 + }, + "3168": { + "aid": 2056 + }, + "3169": { + "aid": 2057 + }, + "3170": { + "aid": 2057 + }, + "3171": { + "aid": 2055 + }, + "3172": { + "aid": 2058 + }, + "3173": { + "aid": 2059 + }, + "3174": { + "aid": 675 + }, + "3175": { + "aid": 2060 + }, + "3176": { + "aid": 2061 + }, + "3177": { + "aid": 2062 + }, + "3178": { + "aid": 2063 + }, + "3179": { + "aid": 2064 + }, + "3180": { + "aid": 2065 + }, + "3181": { + "aid": 2066 + }, + "3182": { + "aid": 1421 + }, + "3183": { + "aid": 1816 + }, + "3184": { + "aid": 2067 + }, + "3185": { + "aid": 2068 + }, + "3186": { + "aid": 2069 + }, + "3187": { + "aid": 2070 + }, + "3188": { + "aid": 2071 + }, + "3189": { + "aid": 67 + }, + "3190": { + "aid": 2073 + }, + "3191": { + "aid": 2074 + }, + "3192": { + "aid": 2075 + }, + "3193": { + "aid": 2076 + }, + "3194": { + "aid": 2077 + }, + "3195": { + "aid": 2078 + }, + "3196": { + "aid": 2079 + }, + "3197": { + "aid": 2080 + }, + "3198": { + "aid": 2081 + }, + "3199": { + "aid": 2082 + }, + "3200": { + "aid": 2083 + }, + "3201": { + "aid": 2084 + }, + "3202": { + "aid": 2085 + }, + "3203": { + "aid": 2086 + }, + "3204": { + "aid": 2087 + }, + "3205": { + "aid": 2088 + }, + "3206": { + "aid": 2089 + }, + "3207": { + "aid": 2090 + }, + "3208": { + "aid": 2091 + }, + "3209": { + "aid": 2092 + }, + "3210": { + "aid": 2093 + }, + "3211": { + "aid": 2094 + }, + "3212": { + "aid": 2095 + }, + "3213": { + "aid": 2096 + }, + "3214": { + "aid": 2097 + }, + "3215": { + "aid": 2098 + }, + "3216": { + "aid": 2099 + }, + "3217": { + "aid": 2100 + }, + "3218": { + "aid": 2101 + }, + "3219": { + "aid": 2102 + }, + "3220": { + "aid": 2103 + }, + "3222": { + "aid": 2104 + }, + "3224": { + "aid": 2105 + }, + "3225": { + "aid": 2106 + }, + "3226": { + "aid": 2107 + }, + "3227": { + "aid": 2108 + }, + "3228": { + "aid": 2109 + }, + "3229": { + "aid": 2110 + }, + "3230": { + "aid": 2111 + }, + "3231": { + "aid": 2112 + }, + "3232": { + "aid": 2113 + }, + "3233": { + "aid": 2114 + }, + "3234": { + "aid": 2115 + }, + "3235": { + "aid": 2116 + }, + "3236": { + "aid": 2117 + }, + "3237": { + "aid": 2118 + }, + "3238": { + "aid": 2111 + }, + "3239": { + "aid": 2119 + }, + "3240": { + "aid": 2120 + }, + "3241": { + "aid": 2121 + }, + "3242": { + "aid": 2122 + }, + "3243": { + "aid": 2123 + }, + "3244": { + "aid": 2124 + }, + "3245": { + "aid": 2125 + }, + "3246": { + "aid": 2126 + }, + "3247": { + "aid": 2126 + }, + "3248": { + "aid": 2127 + }, + "3249": { + "aid": 2128 + }, + "3250": { + "aid": 2129 + }, + "3251": { + "aid": 2130 + }, + "3252": { + "aid": 208 + }, + "3253": { + "aid": 2132 + }, + "3254": { + "aid": 2134 + }, + "3255": { + "aid": 2135 + }, + "3256": { + "aid": 2136 + }, + "3257": { + "aid": 2137 + }, + "3258": { + "aid": 2138 + }, + "3259": { + "aid": 2139 + }, + "3260": { + "aid": 2140 + }, + "3261": { + "aid": 2141 + }, + "3262": { + "aid": 2142 + }, + "3263": { + "aid": 2144 + }, + "3264": { + "aid": 2145 + }, + "3265": { + "aid": 2146 + }, + "3266": { + "aid": 2147 + }, + "3267": { + "aid": 2148 + }, + "3268": { + "aid": 2149 + }, + "3269": { + "aid": 2150 + }, + "3270": { + "aid": 2151 + }, + "3271": { + "aid": 2152 + }, + "3272": { + "aid": 2153 + }, + "3273": { + "aid": 2154 + }, + "3274": { + "aid": 2155 + }, + "3275": { + "aid": 2156 + }, + "3276": { + "aid": 2157 + }, + "3277": { + "aid": 2158 + }, + "3278": { + "aid": 434 + }, + "3279": { + "aid": 2159 + }, + "3280": { + "aid": 2160 + }, + "3281": { + "aid": 2161 + }, + "3282": { + "aid": 2162 + }, + "3283": { + "aid": 1343 + }, + "3284": { + "aid": 2163 + }, + "3285": { + "aid": 2164 + }, + "3286": { + "aid": 2165 + }, + "3287": { + "aid": 2166 + }, + "3288": { + "aid": 2167 + }, + "3289": { + "aid": 2168 + }, + "3290": { + "aid": 2169 + }, + "3291": { + "aid": 2170 + }, + "3292": { + "aid": 2171 + }, + "3293": { + "aid": 2172 + }, + "3294": { + "aid": 2173 + }, + "3295": { + "aid": 2174 + }, + "3296": { + "aid": 95 + }, + "3297": { + "aid": 2175 + }, + "3298": { + "aid": 2176 + }, + "3299": { + "aid": 2177 + }, + "3300": { + "aid": 2178 + }, + "3301": { + "aid": 2179 + }, + "3302": { + "aid": 2180 + }, + "3303": { + "aid": 2181 + }, + "3304": { + "aid": 2182 + }, + "3305": { + "aid": 2183 + }, + "3306": { + "aid": 2184 + }, + "3307": { + "aid": 910 + }, + "3308": { + "aid": 2185 + }, + "3309": { + "aid": 2186 + }, + "3310": { + "aid": 2187 + }, + "3311": { + "aid": 2188 + }, + "3312": { + "aid": 2189 + }, + "3313": { + "aid": 2190 + }, + "3314": { + "aid": 2190 + }, + "3315": { + "aid": 2191 + }, + "3316": { + "aid": 502 + }, + "3317": { + "aid": 2192 + }, + "3318": { + "aid": 2193 + }, + "3319": { + "aid": 2194 + }, + "3320": { + "aid": 2195 + }, + "3321": { + "aid": 2196 + }, + "3322": { + "aid": 2197 + }, + "3323": { + "aid": 778 + }, + "3324": { + "aid": 24 + }, + "3325": { + "aid": 2198 + }, + "3326": { + "aid": 2199 + }, + "3327": { + "aid": 2200 + }, + "3328": { + "aid": 2201 + }, + "3329": { + "aid": 20 + }, + "3330": { + "aid": 32 + }, + "3331": { + "aid": 2173 + }, + "3332": { + "aid": 2202 + }, + "3333": { + "aid": 2203 + }, + "3334": { + "aid": 2204 + }, + "3335": { + "aid": 2205 + }, + "3336": { + "aid": 2206 + }, + "3337": { + "aid": 2207 + }, + "3338": { + "aid": 1930 + }, + "3339": { + "aid": 1930 + }, + "3340": { + "aid": 67 + }, + "3341": { + "aid": 2208 + }, + "3342": { + "aid": 2209 + }, + "3343": { + "aid": 2210 + }, + "3344": { + "aid": 2211 + }, + "3345": { + "aid": 2212 + }, + "3346": { + "aid": 2208 + }, + "3347": { + "aid": 2213 + }, + "3348": { + "aid": 2214 + }, + "3349": { + "aid": 2215 + }, + "3350": { + "aid": 2216 + }, + "3351": { + "aid": 2217 + }, + "3352": { + "aid": 2218 + }, + "3353": { + "aid": 2219 + }, + "3354": { + "aid": 2220 + }, + "3355": { + "aid": 2221 + }, + "3356": { + "aid": 2222 + }, + "3358": { + "aid": 2224 + }, + "3359": { + "aid": 2225 + }, + "3360": { + "aid": 2226 + }, + "3361": { + "aid": 2227 + }, + "3362": { + "aid": 2228 + }, + "3363": { + "aid": 968 + }, + "3364": { + "aid": 1944 + }, + "3365": { + "aid": 1760 + }, + "3366": { + "aid": 2229 + }, + "3367": { + "aid": 2230 + }, + "3368": { + "aid": 2232 + }, + "3369": { + "aid": 2232 + }, + "3372": { + "aid": 120 + }, + "3373": { + "aid": 2162 + }, + "3374": { + "aid": 2162 + }, + "3375": { + "aid": 2162 + }, + "3376": { + "aid": 2162 + }, + "3377": { + "aid": 2233 + }, + "3378": { + "aid": 920 + }, + "3379": { + "aid": 526 + }, + "3380": { + "aid": 2234 + }, + "3381": { + "aid": 780 + }, + "3382": { + "aid": 2235 + }, + "3383": { + "aid": 2236 + }, + "3384": { + "aid": 2237 + }, + "3385": { + "aid": 2238 + }, + "3386": { + "aid": 2239 + }, + "3388": { + "aid": 2241 + }, + "3390": { + "aid": 2243 + }, + "3391": { + "aid": 2244 + }, + "3392": { + "aid": 951 + }, + "3394": { + "aid": 951 + }, + "3398": { + "aid": 2246 + }, + "3399": { + "aid": 2247 + }, + "3400": { + "aid": 2248 + }, + "3401": { + "aid": 2249 + }, + "3403": { + "aid": 2250 + }, + "3404": { + "aid": 2251 + }, + "3405": { + "aid": 2251 + }, + "3406": { + "aid": 2252 + }, + "3407": { + "aid": 2252 + }, + "3408": { + "aid": 2252 + }, + "3409": { + "aid": 2253 + }, + "3410": { + "aid": 2254 + }, + "3411": { + "aid": 2255 + }, + "3413": { + "aid": 675 + }, + "3414": { + "aid": 2256 + }, + "3415": { + "aid": 2256 + }, + "3416": { + "aid": 2257 + }, + "3417": { + "aid": 2258 + }, + "3418": { + "aid": 71 + }, + "3419": { + "aid": 2259 + }, + "3420": { + "aid": 2260 + }, + "3421": { + "aid": 2261 + }, + "3422": { + "aid": 2261 + }, + "3423": { + "aid": 2261 + }, + "3424": { + "aid": 2262 + }, + "3425": { + "aid": 2262 + }, + "3426": { + "aid": 2262 + }, + "3427": { + "aid": 2263 + }, + "3428": { + "aid": 2263 + }, + "3430": { + "aid": 2264 + }, + "3431": { + "aid": 2264 + }, + "3433": { + "aid": 2265 + }, + "3435": { + "aid": 2267 + }, + "3436": { + "aid": 2268 + }, + "3437": { + "aid": 2268 + }, + "3438": { + "aid": 2268 + }, + "3439": { + "aid": 2268 + }, + "3444": { + "aid": 2270 + }, + "3445": { + "aid": 2271 + }, + "3446": { + "aid": 2272 + }, + "3447": { + "aid": 868 + }, + "3450": { + "aid": 2215 + }, + "3451": { + "aid": 2216 + }, + "3460": { + "aid": 2275 + }, + "3461": { + "aid": 2276 + }, + "3463": { + "aid": 2278 + }, + "3464": { + "aid": 2279 + }, + "3465": { + "aid": 2280 + }, + "3466": { + "aid": 2281 + }, + "3467": { + "aid": 1343 + }, + "3468": { + "aid": 1343 + }, + "3469": { + "aid": 2259 + }, + "3470": { + "aid": 2259 + }, + "3471": { + "aid": 2234 + }, + "3472": { + "aid": 2283 + }, + "3474": { + "aid": 2284 + }, + "3475": { + "aid": 2285 + }, + "3476": { + "aid": 2286 + }, + "3477": { + "aid": 2287 + }, + "3478": { + "aid": 2288 + }, + "3480": { + "aid": 1343 + }, + "3481": { + "aid": 1157 + }, + "3483": { + "aid": 2289 + }, + "3485": { + "aid": 50 + }, + "3486": { + "aid": 50 + }, + "3487": { + "aid": 2290 + }, + "3488": { + "aid": 2290 + }, + "3489": { + "aid": 2291 + }, + "3490": { + "aid": 1065 + }, + "3491": { + "aid": 1065 + }, + "3492": { + "aid": 1065 + }, + "3493": { + "aid": 1065 + }, + "3495": { + "aid": 1065 + }, + "3496": { + "aid": 2292 + }, + "3497": { + "aid": 2293 + }, + "3498": { + "aid": 2294 + }, + "3499": { + "aid": 2294 + }, + "3500": { + "aid": 2295 + }, + "3501": { + "aid": 2296 + }, + "3503": { + "aid": 2297 + }, + "3505": { + "aid": 1985 + }, + "3506": { + "aid": 23 + }, + "3507": { + "aid": 2288 + }, + "3508": { + "aid": 2298 + }, + "3509": { + "aid": 2299 + }, + "3510": { + "aid": 2300 + }, + "3511": { + "aid": 2300 + }, + "3512": { + "aid": 2266 + }, + "3513": { + "aid": 2301 + }, + "3514": { + "aid": 2301 + }, + "3515": { + "aid": 2302 + }, + "3516": { + "aid": 868 + }, + "3517": { + "aid": 2259 + }, + "3518": { + "aid": 1453 + }, + "3519": { + "aid": 1476 + }, + "3520": { + "aid": 16 + }, + "3521": { + "aid": 27 + }, + "3523": { + "aid": 974 + }, + "3524": { + "aid": 974 + }, + "3526": { + "aid": 469 + }, + "3527": { + "aid": 2304 + }, + "3528": { + "aid": 439 + }, + "3529": { + "aid": 507 + }, + "3530": { + "aid": 2305 + }, + "3531": { + "aid": 425 + }, + "3532": { + "aid": 2306 + }, + "3533": { + "aid": 2307 + }, + "3534": { + "aid": 2308 + }, + "3535": { + "aid": 2308 + }, + "3536": { + "aid": 2309 + }, + "3537": { + "aid": 2310 + }, + "3538": { + "aid": 2311 + }, + "3541": { + "aid": 2314 + }, + "3542": { + "aid": 557 + }, + "3543": { + "aid": 2315 + }, + "3544": { + "aid": 2316 + }, + "3545": { + "aid": 2317 + }, + "3546": { + "aid": 2317 + }, + "3547": { + "aid": 2318 + }, + "3548": { + "aid": 120 + }, + "3549": { + "aid": 2319 + }, + "3550": { + "aid": 208 + }, + "3551": { + "aid": 2320 + }, + "3552": { + "aid": 2321 + }, + "3553": { + "aid": 2322 + }, + "3554": { + "aid": 2323 + }, + "3555": { + "aid": 2324 + }, + "3556": { + "aid": 265 + }, + "3557": { + "aid": 265 + }, + "3558": { + "aid": 265 + }, + "3559": { + "aid": 60 + }, + "3560": { + "aid": 2325 + }, + "3561": { + "aid": 19 + }, + "3562": { + "aid": 1522 + }, + "3563": { + "aid": 2326 + }, + "3564": { + "aid": 2326 + }, + "3565": { + "aid": 2327 + }, + "3566": { + "aid": 2328 + }, + "3567": { + "aid": 868 + }, + "3568": { + "aid": 93 + }, + "3570": { + "aid": 2329 + }, + "3572": { + "aid": 2330 + }, + "3573": { + "aid": 2330 + }, + "3574": { + "aid": 1283 + }, + "3575": { + "aid": 2331 + }, + "3576": { + "aid": 2331 + }, + "3577": { + "aid": 2453 + }, + "3578": { + "aid": 13 + }, + "3579": { + "aid": 13 + }, + "3582": { + "aid": 2333 + }, + "3584": { + "aid": 2277 + }, + "3586": { + "aid": 2334 + }, + "3587": { + "aid": 2335 + }, + "3588": { + "aid": 41 + }, + "3589": { + "aid": 2336 + }, + "3590": { + "aid": 2336 + }, + "3591": { + "aid": 2336 + }, + "3592": { + "aid": 2337 + }, + "3595": { + "aid": 2339 + }, + "3599": { + "aid": 2334 + }, + "3600": { + "aid": 2345 + }, + "3601": { + "aid": 2300 + }, + "3602": { + "aid": 2259 + }, + "3603": { + "aid": 2346 + }, + "3604": { + "aid": 2346 + }, + "3605": { + "aid": 2347 + }, + "3606": { + "aid": 2348 + }, + "3607": { + "aid": 642 + }, + "3609": { + "aid": 974 + }, + "3610": { + "aid": 151 + }, + "3611": { + "aid": 2349 + }, + "3612": { + "aid": 2261 + }, + "3613": { + "aid": 27 + }, + "3614": { + "aid": 378 + }, + "3615": { + "aid": 378 + }, + "3616": { + "aid": 500 + }, + "3619": { + "aid": 1157 + }, + "3620": { + "aid": 1157 + }, + "3621": { + "aid": 1157 + }, + "3627": { + "aid": 2355 + }, + "3628": { + "aid": 2356 + }, + "3629": { + "aid": 2357 + }, + "3630": { + "aid": 2358 + }, + "3631": { + "aid": 2305 + }, + "3632": { + "aid": 2305 + }, + "3633": { + "aid": 2359 + }, + "3634": { + "aid": 2360 + }, + "3635": { + "aid": 2361 + }, + "3636": { + "aid": 2361 + }, + "3637": { + "aid": 497 + }, + "3638": { + "aid": 2362 + }, + "3639": { + "aid": 2363 + }, + "3640": { + "aid": 2364 + }, + "3642": { + "aid": 2365 + }, + "3643": { + "aid": 2366 + }, + "3644": { + "aid": 2366 + }, + "3645": { + "aid": 2367 + }, + "3646": { + "aid": 2368 + }, + "3647": { + "aid": 2369 + }, + "3648": { + "aid": 2370 + }, + "3649": { + "aid": 2371 + }, + "3650": { + "aid": 2371 + }, + "3651": { + "aid": 1157 + }, + "3652": { + "aid": 2372 + }, + "3653": { + "aid": 2373 + }, + "3654": { + "aid": 2374 + }, + "3655": { + "aid": 2375 + }, + "3656": { + "aid": 2376 + }, + "3657": { + "aid": 2377 + }, + "3661": { + "aid": 314 + }, + "3662": { + "aid": 2380 + }, + "3663": { + "aid": 2381 + }, + "3664": { + "aid": 2382 + }, + "3731": { + "aid": 2383 + }, + "3732": { + "aid": 2384 + }, + "3733": { + "aid": 2385 + }, + "3734": { + "aid": 2385 + }, + "3735": { + "aid": 2264 + }, + "3736": { + "aid": 2264 + }, + "3737": { + "aid": 2264 + }, + "3738": { + "aid": 2386 + }, + "3739": { + "aid": 224 + }, + "3740": { + "aid": 2387 + }, + "3741": { + "aid": 2388 + }, + "3742": { + "aid": 2389 + }, + "3743": { + "aid": 2392 + }, + "3744": { + "aid": 2393 + }, + "3745": { + "aid": 1697 + }, + "3746": { + "aid": 2394 + }, + "3747": { + "aid": 2396 + }, + "3748": { + "aid": 2397 + }, + "3749": { + "aid": 2398 + }, + "3750": { + "aid": 2399 + }, + "3751": { + "aid": 2379 + }, + "3752": { + "aid": 2378 + }, + "3753": { + "aid": 1060 + }, + "3754": { + "aid": 2390 + }, + "3755": { + "aid": 2391 + }, + "3756": { + "aid": 2391 + }, + "3757": { + "aid": 1948 + }, + "3758": { + "aid": 2395 + }, + "3759": { + "aid": 1157 + }, + "3760": { + "aid": 2400 + }, + "3761": { + "aid": 2401 + }, + "3762": { + "aid": 2402 + }, + "3763": { + "aid": 2402 + }, + "3764": { + "aid": 2403 + }, + "3765": { + "aid": 1754 + }, + "3766": { + "aid": 1754 + }, + "3767": { + "aid": 2404 + }, + "3768": { + "aid": 2397 + }, + "3769": { + "aid": 1545 + }, + "3770": { + "aid": 1545 + }, + "3771": { + "aid": 2076 + }, + "3772": { + "aid": 2405 + }, + "3773": { + "aid": 2405 + }, + "3774": { + "aid": 1437 + }, + "3775": { + "aid": 1907 + }, + "3776": { + "aid": 381 + }, + "3777": { + "aid": 1157 + }, + "3778": { + "aid": 1157 + }, + "3779": { + "aid": 70 + }, + "3780": { + "aid": 1575 + }, + "3781": { + "aid": 1575 + }, + "3782": { + "aid": 1934 + }, + "3783": { + "aid": 2406 + }, + "3784": { + "aid": 2406 + }, + "3786": { + "aid": 2408 + }, + "3787": { + "aid": 2409 + }, + "3788": { + "aid": 2410 + }, + "3789": { + "aid": 2411 + }, + "3790": { + "aid": 2412 + }, + "3791": { + "aid": 2413 + }, + "3793": { + "aid": 2415 + }, + "3794": { + "aid": 2416 + }, + "3795": { + "aid": 2417 + }, + "3796": { + "aid": 2418 + }, + "3797": { + "aid": 2419 + }, + "3798": { + "aid": 2420 + }, + "3799": { + "aid": 2421 + }, + "3800": { + "aid": 2421 + }, + "3801": { + "aid": 2422 + }, + "3802": { + "aid": 1047 + }, + "3803": { + "aid": 2423 + }, + "3804": { + "aid": 2424 + }, + "3806": { + "aid": 990 + }, + "3807": { + "aid": 2426 + }, + "3808": { + "aid": 2427 + }, + "3809": { + "aid": 2428 + }, + "3810": { + "aid": 2429 + }, + "3811": { + "aid": 2430 + }, + "3812": { + "aid": 2431 + }, + "3813": { + "aid": 2432 + }, + "3814": { + "aid": 2433 + }, + "3815": { + "aid": 2434 + }, + "3816": { + "aid": 2435 + }, + "3817": { + "aid": 2436 + }, + "3818": { + "aid": 2437 + }, + "3819": { + "aid": 2438 + }, + "3820": { + "aid": 2439 + }, + "3821": { + "aid": 2440 + }, + "3822": { + "aid": 2441 + }, + "3823": { + "aid": 2442 + }, + "3824": { + "aid": 2443 + }, + "3825": { + "aid": 2444 + }, + "3826": { + "aid": 2445 + }, + "3827": { + "aid": 2446 + }, + "3828": { + "aid": 2447 + }, + "3829": { + "aid": 2448 + }, + "3830": { + "aid": 2448 + }, + "3831": { + "aid": 2449 + }, + "3833": { + "aid": 675 + }, + "3834": { + "aid": 2244 + }, + "3835": { + "aid": 2440 + }, + "3836": { + "aid": 1407 + }, + "3837": { + "aid": 2450 + }, + "3838": { + "aid": 2451 + }, + "3839": { + "aid": 607 + }, + "3840": { + "aid": 503 + }, + "3841": { + "aid": 2452 + }, + "3842": { + "aid": 2433 + }, + "3843": { + "aid": 18 + }, + "3844": { + "aid": 2454 + }, + "3845": { + "aid": 2455 + }, + "3846": { + "aid": 2456 + }, + "3847": { + "aid": 2457 + }, + "3848": { + "aid": 2459 + }, + "3849": { + "aid": 2460 + }, + "3850": { + "aid": 2461 + }, + "3851": { + "aid": 2462 + }, + "3852": { + "aid": 2463 + }, + "3853": { + "aid": 2464 + }, + "3854": { + "aid": 2464 + }, + "3855": { + "aid": 2465 + }, + "3856": { + "aid": 2466 + }, + "3857": { + "aid": 2467 + }, + "3858": { + "aid": 2469 + }, + "3859": { + "aid": 2470 + }, + "3860": { + "aid": 2470 + }, + "3861": { + "aid": 2470 + }, + "3862": { + "aid": 2470 + }, + "3864": { + "aid": 2472 + }, + "3865": { + "aid": 2473 + }, + "3866": { + "aid": 2474 + }, + "3867": { + "aid": 2475 + }, + "3869": { + "aid": 2516 + }, + "3870": { + "aid": 2516 + }, + "3871": { + "aid": 2516 + }, + "3872": { + "aid": 950 + }, + "3873": { + "aid": 950 + }, + "3874": { + "aid": 950 + }, + "3875": { + "aid": 2517 + }, + "3876": { + "aid": 950 + }, + "3877": { + "aid": 2518 + }, + "3878": { + "aid": 2519 + }, + "3879": { + "aid": 2518 + }, + "3880": { + "aid": 2519 + }, + "3881": { + "aid": 2518 + }, + "3882": { + "aid": 2519 + }, + "3883": { + "aid": 2518 + }, + "3884": { + "aid": 2520 + }, + "3885": { + "aid": 2521 + }, + "3886": { + "aid": 2522 + }, + "3887": { + "aid": 2522 + }, + "3888": { + "aid": 2523 + }, + "3889": { + "aid": 432 + }, + "3890": { + "aid": 2136 + }, + "3891": { + "aid": 2524 + }, + "3892": { + "aid": 2524 + }, + "3893": { + "aid": 2525 + }, + "3894": { + "aid": 2526 + }, + "3895": { + "aid": 2527 + }, + "3896": { + "aid": 2528 + }, + "3897": { + "aid": 2529 + }, + "3898": { + "aid": 2530 + }, + "3899": { + "aid": 265 + }, + "3900": { + "aid": 2531 + }, + "3901": { + "aid": 2532 + }, + "3902": { + "aid": 2532 + }, + "3903": { + "aid": 2533 + }, + "3904": { + "aid": 2534 + }, + "3905": { + "aid": 2534 + }, + "3906": { + "aid": 2176 + }, + "3907": { + "aid": 2176 + }, + "3908": { + "aid": 1837 + }, + "3909": { + "aid": 2535 + }, + "3910": { + "aid": 2536 + }, + "3911": { + "aid": 19 + }, + "3912": { + "aid": 2537 + }, + "3913": { + "aid": 2537 + }, + "3914": { + "aid": 2537 + }, + "3915": { + "aid": 1945 + }, + "3916": { + "aid": 2538 + }, + "3917": { + "aid": 2538 + }, + "3918": { + "aid": 2539 + }, + "3919": { + "aid": 2540 + }, + "3920": { + "aid": 2540 + }, + "3921": { + "aid": 2541 + }, + "3922": { + "aid": 2540 + }, + "3923": { + "aid": 502 + }, + "3924": { + "aid": 2542 + }, + "3925": { + "aid": 2543 + }, + "3926": { + "aid": 889 + }, + "3927": { + "aid": 2544 + }, + "3928": { + "aid": 1065 + }, + "3929": { + "aid": 2545 + }, + "3930": { + "aid": 1065 + }, + "3931": { + "aid": 2547 + }, + "3932": { + "aid": 2548 + }, + "3933": { + "aid": 2549 + }, + "3934": { + "aid": 2550 + }, + "3935": { + "aid": 2244 + }, + "3936": { + "aid": 2244 + }, + "3937": { + "aid": 2551 + }, + "3938": { + "aid": 2552 + }, + "3939": { + "aid": 2553 + }, + "3940": { + "aid": 2554 + }, + "3941": { + "aid": 2556 + }, + "3942": { + "aid": 2557 + }, + "3943": { + "aid": 2558 + }, + "3944": { + "aid": 2559 + }, + "3945": { + "aid": 2560 + }, + "3946": { + "aid": 2561 + }, + "3947": { + "aid": 2561 + }, + "3948": { + "aid": 2561 + }, + "3949": { + "aid": 2562 + }, + "3950": { + "aid": 2562 + }, + "3951": { + "aid": 2562 + }, + "3952": { + "aid": 1124 + }, + "3953": { + "aid": 1343 + }, + "3954": { + "aid": 2564 + }, + "3955": { + "aid": 2565 + }, + "3956": { + "aid": 2566 + }, + "3957": { + "aid": 2567 + }, + "3958": { + "aid": 2568 + }, + "3959": { + "aid": 2566 + }, + "3960": { + "aid": 2567 + }, + "3962": { + "aid": 26 + }, + "3963": { + "aid": 2570 + }, + "3964": { + "aid": 918 + }, + "3965": { + "aid": 2571 + }, + "3966": { + "aid": 2572 + }, + "3967": { + "aid": 2573 + }, + "3968": { + "aid": 2573 + }, + "3970": { + "aid": 2575 + }, + "3971": { + "aid": 2576 + }, + "3972": { + "aid": 2576 + }, + "3973": { + "aid": 2576 + }, + "3974": { + "aid": 1157 + }, + "3975": { + "aid": 1157 + }, + "3976": { + "aid": 2577 + }, + "3977": { + "aid": 2578 + }, + "3978": { + "aid": 2578 + }, + "3979": { + "aid": 2578 + }, + "3980": { + "aid": 2578 + }, + "3981": { + "aid": 2579 + }, + "3982": { + "aid": 2580 + }, + "3984": { + "aid": 2582 + }, + "3985": { + "aid": 2582 + }, + "3986": { + "aid": 2583 + }, + "3987": { + "aid": 2577 + }, + "3988": { + "aid": 2584 + }, + "3989": { + "aid": 2585 + }, + "3990": { + "aid": 2586 + }, + "3991": { + "aid": 2587 + }, + "3992": { + "aid": 2588 + }, + "3993": { + "aid": 2589 + }, + "3994": { + "aid": 2590 + }, + "3995": { + "aid": 869 + }, + "3996": { + "aid": 2591 + }, + "3997": { + "aid": 1740 + }, + "3998": { + "aid": 2592 + }, + "3999": { + "aid": 2593 + }, + "4000": { + "aid": 1092 + }, + "4001": { + "aid": 2594 + }, + "4002": { + "aid": 2595 + }, + "4003": { + "aid": 2596 + }, + "4004": { + "aid": 2597 + }, + "4005": { + "aid": 2598 + }, + "4006": { + "aid": 2453 + }, + "4007": { + "aid": 2599 + }, + "4008": { + "aid": 2407 + }, + "4009": { + "aid": 2600 + }, + "4010": { + "aid": 1245 + }, + "4011": { + "aid": 2601 + }, + "4012": { + "aid": 2295 + }, + "4013": { + "aid": 2602 + }, + "4014": { + "aid": 2603 + }, + "4015": { + "aid": 2603 + }, + "4016": { + "aid": 2604 + }, + "4017": { + "aid": 2604 + }, + "4018": { + "aid": 2605 + }, + "4019": { + "aid": 2606 + }, + "4020": { + "aid": 2607 + }, + "4021": { + "aid": 2608 + }, + "4022": { + "aid": 240 + }, + "4023": { + "aid": 2433 + }, + "4024": { + "aid": 355 + }, + "4025": { + "aid": 2609 + }, + "4026": { + "aid": 2610 + }, + "4027": { + "aid": 2597 + }, + "4028": { + "aid": 2611 + }, + "4029": { + "aid": 2612 + }, + "4030": { + "aid": 1129 + }, + "4031": { + "aid": 690 + }, + "4032": { + "aid": 2613 + }, + "4033": { + "aid": 2613 + }, + "4034": { + "aid": 2614 + }, + "4035": { + "aid": 2615 + }, + "4036": { + "aid": 2616 + }, + "4037": { + "aid": 2617 + }, + "4038": { + "aid": 2618 + }, + "4039": { + "aid": 869 + }, + "4040": { + "aid": 2619 + }, + "4041": { + "aid": 2620 + }, + "4042": { + "aid": 2621 + }, + "4043": { + "aid": 2622 + }, + "4044": { + "aid": 2623 + }, + "4045": { + "aid": 2624 + }, + "4046": { + "aid": 2625 + }, + "4047": { + "aid": 2626 + }, + "4048": { + "aid": 2627 + }, + "4049": { + "aid": 2628 + }, + "4050": { + "aid": 2628 + }, + "4051": { + "aid": 2629 + }, + "4052": { + "aid": 2630 + }, + "4053": { + "aid": 1124 + }, + "4054": { + "aid": 2631 + }, + "4055": { + "aid": 2632 + }, + "4056": { + "aid": 2633 + }, + "4057": { + "aid": 2634 + }, + "4058": { + "aid": 2581 + }, + "4060": { + "aid": 2636 + }, + "4061": { + "aid": 2637 + }, + "4062": { + "aid": 2638 + }, + "4063": { + "aid": 2639 + }, + "4064": { + "aid": 2640 + }, + "4065": { + "aid": 2587 + }, + "4066": { + "aid": 2641 + }, + "4067": { + "aid": 2642 + }, + "4068": { + "aid": 2643 + }, + "4069": { + "aid": 2644 + }, + "4070": { + "aid": 2645 + }, + "4071": { + "aid": 2646 + }, + "4072": { + "aid": 2647 + }, + "4073": { + "aid": 502 + }, + "4074": { + "aid": 2648 + }, + "4075": { + "aid": 2648 + }, + "4076": { + "aid": 2649 + }, + "4077": { + "aid": 2650 + }, + "4078": { + "aid": 2629 + }, + "4079": { + "aid": 2651 + }, + "4080": { + "aid": 2652 + }, + "4081": { + "aid": 2653 + }, + "4082": { + "aid": 2654 + }, + "4083": { + "aid": 2655 + }, + "4084": { + "aid": 2656 + }, + "4085": { + "aid": 2657 + }, + "4086": { + "aid": 2658 + }, + "4087": { + "aid": 2659 + }, + "4088": { + "aid": 2659 + }, + "4089": { + "aid": 2517 + }, + "4090": { + "aid": 950 + }, + "4091": { + "aid": 2660 + }, + "4092": { + "aid": 531 + }, + "4093": { + "aid": 2661 + }, + "4095": { + "aid": 2662 + }, + "4096": { + "aid": 2663 + }, + "4097": { + "aid": 2664 + }, + "4098": { + "aid": 1457 + }, + "4099": { + "aid": 2665 + }, + "4100": { + "aid": 2666 + }, + "4101": { + "aid": 2667 + }, + "4102": { + "aid": 862 + }, + "4103": { + "aid": 2668 + }, + "4104": { + "aid": 2670 + }, + "4105": { + "aid": 2671 + }, + "4106": { + "aid": 2672 + }, + "4108": { + "aid": 2674 + }, + "4109": { + "aid": 2675 + }, + "4110": { + "aid": 2675 + }, + "4111": { + "aid": 2676 + }, + "4112": { + "aid": 55 + }, + "4113": { + "aid": 2677 + }, + "4114": { + "aid": 2678 + }, + "4115": { + "aid": 2679 + }, + "4116": { + "aid": 2680 + }, + "4117": { + "aid": 889 + }, + "4118": { + "aid": 2682 + }, + "4119": { + "aid": 1165 + }, + "4120": { + "aid": 2486 + }, + "4121": { + "aid": 2683 + }, + "4122": { + "aid": 2684 + }, + "4123": { + "aid": 2685 + }, + "4124": { + "aid": 2678 + }, + "4125": { + "aid": 2686 + }, + "4126": { + "aid": 609 + }, + "4127": { + "aid": 505 + }, + "4128": { + "aid": 2687 + }, + "4129": { + "aid": 2681 + }, + "4130": { + "aid": 2688 + }, + "4131": { + "aid": 2689 + }, + "4132": { + "aid": 41 + }, + "4133": { + "aid": 41 + }, + "4134": { + "aid": 41 + }, + "4135": { + "aid": 41 + }, + "4136": { + "aid": 41 + }, + "4137": { + "aid": 2579 + }, + "4138": { + "aid": 2690 + }, + "4139": { + "aid": 2638 + }, + "4140": { + "aid": 2691 + }, + "4141": { + "aid": 2692 + }, + "4142": { + "aid": 2478 + }, + "4143": { + "aid": 2693 + }, + "4145": { + "aid": 3215 + }, + "4146": { + "aid": 2189 + }, + "4147": { + "aid": 41 + }, + "4148": { + "aid": 41 + }, + "4149": { + "aid": 41 + }, + "4150": { + "aid": 2696 + }, + "4151": { + "aid": 2697 + }, + "4152": { + "aid": 1434 + }, + "4153": { + "aid": 2491 + }, + "4154": { + "aid": 2698 + }, + "4155": { + "aid": 2699 + }, + "4156": { + "aid": 2700 + }, + "4157": { + "aid": 1306 + }, + "4158": { + "aid": 2701 + }, + "4159": { + "aid": 2702 + }, + "4160": { + "aid": 2703 + }, + "4161": { + "aid": 2704 + }, + "4162": { + "aid": 2705 + }, + "4163": { + "aid": 2706 + }, + "4164": { + "aid": 423 + }, + "4165": { + "aid": 1702 + }, + "4166": { + "aid": 2707 + }, + "4167": { + "aid": 222 + }, + "4168": { + "aid": 222 + }, + "4169": { + "aid": 2708 + }, + "4170": { + "aid": 2709 + }, + "4171": { + "aid": 2710 + }, + "4172": { + "aid": 2711 + }, + "4173": { + "aid": 1485 + }, + "4174": { + "aid": 2712 + }, + "4175": { + "aid": 2713 + }, + "4176": { + "aid": 2714 + }, + "4177": { + "aid": 2715 + }, + "4178": { + "aid": 1521 + }, + "4179": { + "aid": 1521 + }, + "4180": { + "aid": 2716 + }, + "4181": { + "aid": 2717 + }, + "4184": { + "aid": 2678 + }, + "4185": { + "aid": 2718 + }, + "4186": { + "aid": 2718 + }, + "4188": { + "aid": 2720 + }, + "4189": { + "aid": 2721 + }, + "4190": { + "aid": 2722 + }, + "4191": { + "aid": 2723 + }, + "4192": { + "aid": 2724 + }, + "4193": { + "aid": 2725 + }, + "4194": { + "aid": 2636 + }, + "4195": { + "aid": 109 + }, + "4196": { + "aid": 2024 + }, + "4197": { + "aid": 2726 + }, + "4198": { + "aid": 2727 + }, + "4199": { + "aid": 2671 + }, + "4200": { + "aid": 2728 + }, + "4201": { + "aid": 1241 + }, + "4202": { + "aid": 1284 + }, + "4203": { + "aid": 2729 + }, + "4204": { + "aid": 2730 + }, + "4205": { + "aid": 2731 + }, + "4206": { + "aid": 2732 + }, + "4207": { + "aid": 2733 + }, + "4208": { + "aid": 2734 + }, + "4209": { + "aid": 2735 + }, + "4210": { + "aid": 2736 + }, + "4211": { + "aid": 2737 + }, + "4212": { + "aid": 2738 + }, + "4213": { + "aid": 2739 + }, + "4214": { + "aid": 2740 + }, + "4215": { + "aid": 2394 + }, + "4216": { + "aid": 2741 + }, + "4217": { + "aid": 2742 + }, + "4218": { + "aid": 2743 + }, + "4219": { + "aid": 2744 + }, + "4220": { + "aid": 2745 + }, + "4221": { + "aid": 2746 + }, + "4222": { + "aid": 2746 + }, + "4223": { + "aid": 2747 + }, + "4224": { + "aid": 2748 + }, + "4225": { + "aid": 2749 + }, + "4226": { + "aid": 1779 + }, + "4227": { + "aid": 2284 + }, + "4228": { + "aid": 13 + }, + "4229": { + "aid": 2751 + }, + "4230": { + "aid": 2752 + }, + "4231": { + "aid": 2753 + }, + "4232": { + "aid": 573 + }, + "4233": { + "aid": 2754 + }, + "4234": { + "aid": 2755 + }, + "4235": { + "aid": 2756 + }, + "4236": { + "aid": 2757 + }, + "4237": { + "aid": 2758 + }, + "4238": { + "aid": 2633 + }, + "4239": { + "aid": 2759 + }, + "4240": { + "aid": 918 + }, + "4241": { + "aid": 2760 + }, + "4242": { + "aid": 1269 + }, + "4243": { + "aid": 2761 + }, + "4244": { + "aid": 2762 + }, + "4245": { + "aid": 2763 + }, + "4246": { + "aid": 2764 + }, + "4247": { + "aid": 2766 + }, + "4248": { + "aid": 2767 + }, + "4249": { + "aid": 2768 + }, + "4250": { + "aid": 2425 + }, + "4251": { + "aid": 2769 + }, + "4252": { + "aid": 2770 + }, + "4253": { + "aid": 2530 + }, + "4254": { + "aid": 2771 + }, + "4256": { + "aid": 2280 + }, + "4257": { + "aid": 2772 + }, + "4258": { + "aid": 2773 + }, + "4259": { + "aid": 1241 + }, + "4260": { + "aid": 2774 + }, + "4261": { + "aid": 2775 + }, + "4262": { + "aid": 2776 + }, + "4263": { + "aid": 2777 + }, + "4264": { + "aid": 2778 + }, + "4265": { + "aid": 2779 + }, + "4266": { + "aid": 2780 + }, + "4267": { + "aid": 2781 + }, + "4268": { + "aid": 2782 + }, + "4269": { + "aid": 2783 + }, + "4270": { + "aid": 2784 + }, + "4271": { + "aid": 2785 + }, + "4272": { + "aid": 2787 + }, + "4273": { + "aid": 3 + }, + "4274": { + "aid": 2788 + }, + "4275": { + "aid": 2789 + }, + "4276": { + "aid": 2790 + }, + "4280": { + "aid": 2791 + }, + "4281": { + "aid": 2792 + }, + "4282": { + "aid": 2671 + }, + "4283": { + "aid": 2663 + }, + "4284": { + "aid": 614 + }, + "4285": { + "aid": 2793 + }, + "4286": { + "aid": 2793 + }, + "4287": { + "aid": 2795 + }, + "4288": { + "aid": 2796 + }, + "4289": { + "aid": 2797 + }, + "4290": { + "aid": 2798 + }, + "4291": { + "aid": 2582 + }, + "4292": { + "aid": 2792 + }, + "4293": { + "aid": 2726 + }, + "4294": { + "aid": 2799 + }, + "4295": { + "aid": 44 + }, + "4296": { + "aid": 2800 + }, + "4297": { + "aid": 2801 + }, + "4298": { + "aid": 2802 + }, + "4299": { + "aid": 2803 + }, + "4300": { + "aid": 2804 + }, + "4301": { + "aid": 2805 + }, + "4302": { + "aid": 2806 + }, + "4303": { + "aid": 2807 + }, + "4304": { + "aid": 2808 + }, + "4305": { + "aid": 2809 + }, + "4306": { + "aid": 2810 + }, + "4307": { + "aid": 568 + }, + "4308": { + "aid": 2131 + }, + "4309": { + "aid": 2429 + }, + "4310": { + "aid": 2812 + }, + "4311": { + "aid": 2811 + }, + "4312": { + "aid": 2814 + }, + "4313": { + "aid": 2758 + }, + "4314": { + "aid": 2815 + }, + "4315": { + "aid": 2816 + }, + "4316": { + "aid": 2817 + }, + "4317": { + "aid": 2818 + }, + "4318": { + "aid": 2819 + }, + "4319": { + "aid": 2777 + }, + "4320": { + "aid": 2820 + }, + "4321": { + "aid": 2821 + }, + "4322": { + "aid": 2671 + }, + "4323": { + "aid": 2436 + }, + "4324": { + "aid": 2436 + }, + "4325": { + "aid": 2822 + }, + "4326": { + "aid": 2823 + }, + "4327": { + "aid": 2824 + }, + "4328": { + "aid": 2825 + }, + "4329": { + "aid": 2826 + }, + "4330": { + "aid": 2827 + }, + "4331": { + "aid": 2828 + }, + "4332": { + "aid": 378 + }, + "4333": { + "aid": 68 + }, + "4334": { + "aid": 1667 + }, + "4335": { + "aid": 1667 + }, + "4336": { + "aid": 2829 + }, + "4337": { + "aid": 2830 + }, + "4338": { + "aid": 2877 + }, + "4339": { + "aid": 2877 + }, + "4340": { + "aid": 2831 + }, + "4341": { + "aid": 2832 + }, + "4342": { + "aid": 2600 + }, + "4343": { + "aid": 2833 + }, + "4344": { + "aid": 2811 + }, + "4345": { + "aid": 2811 + }, + "4346": { + "aid": 2811 + }, + "4347": { + "aid": 2834 + }, + "4348": { + "aid": 479 + }, + "4349": { + "aid": 2835 + }, + "4350": { + "aid": 2836 + }, + "4351": { + "aid": 2837 + }, + "4352": { + "aid": 2838 + }, + "4353": { + "aid": 974 + }, + "4354": { + "aid": 2839 + }, + "4355": { + "aid": 2403 + }, + "4356": { + "aid": 2840 + }, + "4357": { + "aid": 2336 + }, + "4358": { + "aid": 242 + }, + "4359": { + "aid": 2841 + }, + "4361": { + "aid": 2843 + }, + "4362": { + "aid": 2844 + }, + "4363": { + "aid": 2844 + }, + "4364": { + "aid": 2844 + }, + "4365": { + "aid": 2844 + }, + "4366": { + "aid": 2844 + }, + "4367": { + "aid": 2844 + }, + "4370": { + "aid": 2845 + }, + "4371": { + "aid": 2847 + }, + "4372": { + "aid": 2848 + }, + "4373": { + "aid": 2849 + }, + "4374": { + "aid": 2850 + }, + "4375": { + "aid": 2851 + }, + "4377": { + "aid": 2819 + }, + "4378": { + "aid": 2821 + }, + "4379": { + "aid": 2686 + }, + "4380": { + "aid": 2852 + }, + "4381": { + "aid": 2853 + }, + "4382": { + "aid": 2854 + }, + "4383": { + "aid": 918 + }, + "4384": { + "aid": 466 + }, + "4385": { + "aid": 2773 + }, + "4386": { + "aid": 2855 + }, + "4387": { + "aid": 2848 + }, + "4388": { + "aid": 2856 + }, + "4389": { + "aid": 2770 + }, + "4390": { + "aid": 2857 + }, + "4391": { + "aid": 2498 + }, + "4392": { + "aid": 357 + }, + "4393": { + "aid": 2858 + }, + "4394": { + "aid": 2770 + }, + "4395": { + "aid": 1499 + }, + "4396": { + "aid": 2859 + }, + "4397": { + "aid": 223 + }, + "4398": { + "aid": 37 + }, + "4399": { + "aid": 37 + }, + "4400": { + "aid": 37 + }, + "4401": { + "aid": 37 + }, + "4402": { + "aid": 219 + }, + "4403": { + "aid": 34 + }, + "4404": { + "aid": 186 + }, + "4405": { + "aid": 2860 + }, + "4406": { + "aid": 2530 + }, + "4407": { + "aid": 2861 + }, + "4408": { + "aid": 2862 + }, + "4409": { + "aid": 37 + }, + "4410": { + "aid": 2863 + }, + "4411": { + "aid": 2864 + }, + "4412": { + "aid": 2833 + }, + "4413": { + "aid": 2865 + }, + "4414": { + "aid": 2866 + }, + "4415": { + "aid": 2867 + }, + "4416": { + "aid": 697 + }, + "4417": { + "aid": 2868 + }, + "4418": { + "aid": 2869 + }, + "4419": { + "aid": 2870 + }, + "4420": { + "aid": 2871 + }, + "4421": { + "aid": 2872 + }, + "4422": { + "aid": 2873 + }, + "4423": { + "aid": 2874 + }, + "4424": { + "aid": 2875 + }, + "4425": { + "aid": 2876 + }, + "4426": { + "aid": 2878 + }, + "4427": { + "aid": 2686 + }, + "4428": { + "aid": 2879 + }, + "4429": { + "aid": 2880 + }, + "4430": { + "aid": 2470 + }, + "4431": { + "aid": 2881 + }, + "4432": { + "aid": 2882 + }, + "4434": { + "aid": 2883 + }, + "4435": { + "aid": 2884 + }, + "4436": { + "aid": 2885 + }, + "4437": { + "aid": 2886 + }, + "4438": { + "aid": 2886 + }, + "4439": { + "aid": 568 + }, + "4440": { + "aid": 2887 + }, + "4441": { + "aid": 2888 + }, + "4442": { + "aid": 2470 + }, + "4443": { + "aid": 2889 + }, + "4444": { + "aid": 2890 + }, + "4445": { + "aid": 2891 + }, + "4446": { + "aid": 2892 + }, + "4447": { + "aid": 2893 + }, + "4448": { + "aid": 2893 + }, + "4449": { + "aid": 2893 + }, + "4450": { + "aid": 68 + }, + "4451": { + "aid": 2894 + }, + "4452": { + "aid": 68 + }, + "4453": { + "aid": 2895 + }, + "4454": { + "aid": 2752 + }, + "4455": { + "aid": 2896 + }, + "4456": { + "aid": 2897 + }, + "4457": { + "aid": 2897 + }, + "4458": { + "aid": 2898 + }, + "4459": { + "aid": 2425 + }, + "4460": { + "aid": 2425 + }, + "4461": { + "aid": 2899 + }, + "4462": { + "aid": 2900 + }, + "4463": { + "aid": 2901 + }, + "4464": { + "aid": 2902 + }, + "4465": { + "aid": 2903 + }, + "4466": { + "aid": 2903 + }, + "4467": { + "aid": 2746 + }, + "4468": { + "aid": 532 + }, + "4469": { + "aid": 41 + }, + "4470": { + "aid": 2904 + }, + "4471": { + "aid": 2905 + }, + "4472": { + "aid": 2905 + }, + "4473": { + "aid": 2906 + }, + "4474": { + "aid": 459 + }, + "4475": { + "aid": 2907 + }, + "4476": { + "aid": 2884 + }, + "4477": { + "aid": 2908 + }, + "4478": { + "aid": 2909 + }, + "4479": { + "aid": 2910 + }, + "4480": { + "aid": 2911 + }, + "4482": { + "aid": 2912 + }, + "4483": { + "aid": 2618 + }, + "4484": { + "aid": 2913 + }, + "4485": { + "aid": 614 + }, + "4486": { + "aid": 2914 + }, + "4487": { + "aid": 2686 + }, + "4488": { + "aid": 2915 + }, + "4490": { + "aid": 1984 + }, + "4491": { + "aid": 1245 + }, + "4492": { + "aid": 2917 + }, + "4493": { + "aid": 2918 + }, + "4494": { + "aid": 2919 + }, + "4495": { + "aid": 2920 + }, + "4496": { + "aid": 520 + }, + "4497": { + "aid": 2890 + }, + "4498": { + "aid": 2921 + }, + "4499": { + "aid": 2890 + }, + "4500": { + "aid": 2307 + }, + "4501": { + "aid": 340 + }, + "4502": { + "aid": 2715 + }, + "4503": { + "aid": 690 + }, + "4504": { + "aid": 2922 + }, + "4505": { + "aid": 2923 + }, + "4506": { + "aid": 1528 + }, + "4507": { + "aid": 503 + }, + "4508": { + "aid": 2746 + }, + "4509": { + "aid": 2746 + }, + "4510": { + "aid": 2924 + }, + "4511": { + "aid": 2925 + }, + "4512": { + "aid": 459 + }, + "4513": { + "aid": 2926 + }, + "4514": { + "aid": 2927 + }, + "4515": { + "aid": 2928 + }, + "4516": { + "aid": 2929 + }, + "4517": { + "aid": 2929 + }, + "4518": { + "aid": 2930 + }, + "4519": { + "aid": 426 + }, + "4520": { + "aid": 2931 + }, + "4521": { + "aid": 2932 + }, + "4522": { + "aid": 2933 + }, + "4523": { + "aid": 2933 + }, + "4524": { + "aid": 2934 + }, + "4525": { + "aid": 2935 + }, + "4526": { + "aid": 2936 + }, + "4527": { + "aid": 2937 + }, + "4528": { + "aid": 2938 + }, + "4529": { + "aid": 2939 + }, + "4530": { + "aid": 2940 + }, + "4531": { + "aid": 2941 + }, + "4532": { + "aid": 2942 + }, + "4533": { + "aid": 2942 + }, + "4535": { + "aid": 2944 + }, + "4536": { + "aid": 2945 + }, + "4537": { + "aid": 1157 + }, + "4538": { + "aid": 983 + }, + "4539": { + "aid": 2946 + }, + "4540": { + "aid": 2946 + }, + "4541": { + "aid": 2947 + }, + "4542": { + "aid": 2948 + }, + "4543": { + "aid": 1124 + }, + "4544": { + "aid": 2949 + }, + "4545": { + "aid": 2950 + }, + "4546": { + "aid": 2951 + }, + "4547": { + "aid": 2952 + }, + "4548": { + "aid": 2953 + }, + "4549": { + "aid": 2954 + }, + "4550": { + "aid": 2955 + }, + "4551": { + "aid": 2956 + }, + "4552": { + "aid": 2957 + }, + "4553": { + "aid": 2470 + }, + "4554": { + "aid": 2958 + }, + "4555": { + "aid": 2959 + }, + "4556": { + "aid": 2247 + }, + "4557": { + "aid": 1314 + }, + "4558": { + "aid": 2960 + }, + "4559": { + "aid": 2961 + }, + "4560": { + "aid": 2132 + }, + "4561": { + "aid": 2822 + }, + "4562": { + "aid": 2962 + }, + "4563": { + "aid": 2963 + }, + "4564": { + "aid": 2964 + }, + "4565": { + "aid": 2965 + }, + "4566": { + "aid": 2966 + }, + "4567": { + "aid": 364 + }, + "4568": { + "aid": 2967 + }, + "4569": { + "aid": 605 + }, + "4570": { + "aid": 2968 + }, + "4571": { + "aid": 2969 + }, + "4572": { + "aid": 2970 + }, + "4573": { + "aid": 2470 + }, + "4574": { + "aid": 2971 + }, + "4575": { + "aid": 269 + }, + "4576": { + "aid": 2972 + }, + "4577": { + "aid": 2973 + }, + "4578": { + "aid": 2852 + }, + "4579": { + "aid": 2814 + }, + "4580": { + "aid": 2975 + }, + "4581": { + "aid": 2976 + }, + "4582": { + "aid": 2977 + }, + "4583": { + "aid": 2978 + }, + "4584": { + "aid": 2979 + }, + "4585": { + "aid": 2979 + }, + "4586": { + "aid": 2980 + }, + "4587": { + "aid": 2980 + }, + "4588": { + "aid": 2981 + }, + "4589": { + "aid": 2300 + }, + "4590": { + "aid": 2982 + }, + "4591": { + "aid": 2690 + }, + "4592": { + "aid": 2690 + }, + "4593": { + "aid": 2983 + }, + "4594": { + "aid": 2984 + }, + "4595": { + "aid": 2984 + }, + "4596": { + "aid": 459 + }, + "4597": { + "aid": 459 + }, + "4598": { + "aid": 2910 + }, + "4599": { + "aid": 568 + }, + "4600": { + "aid": 2985 + }, + "4602": { + "aid": 2987 + }, + "4604": { + "aid": 2989 + }, + "4605": { + "aid": 2989 + }, + "4606": { + "aid": 2177 + }, + "4607": { + "aid": 1508 + }, + "4608": { + "aid": 1508 + }, + "4609": { + "aid": 2990 + }, + "4610": { + "aid": 2990 + }, + "4611": { + "aid": 13 + }, + "4612": { + "aid": 2991 + }, + "4613": { + "aid": 2992 + }, + "4614": { + "aid": 160 + }, + "4615": { + "aid": 333 + }, + "4616": { + "aid": 357 + }, + "4617": { + "aid": 2993 + }, + "4618": { + "aid": 37 + }, + "4619": { + "aid": 2994 + }, + "4620": { + "aid": 2994 + }, + "4621": { + "aid": 2995 + }, + "4622": { + "aid": 2994 + }, + "4623": { + "aid": 2996 + }, + "4624": { + "aid": 2997 + }, + "4625": { + "aid": 2998 + }, + "4626": { + "aid": 2999 + }, + "4627": { + "aid": 3000 + }, + "4628": { + "aid": 2270 + }, + "4629": { + "aid": 3001 + }, + "4630": { + "aid": 3002 + }, + "4631": { + "aid": 790 + }, + "4632": { + "aid": 790 + }, + "4633": { + "aid": 3003 + }, + "4634": { + "aid": 3004 + }, + "4635": { + "aid": 3005 + }, + "4636": { + "aid": 3006 + }, + "4638": { + "aid": 459 + }, + "4639": { + "aid": 459 + }, + "4640": { + "aid": 2974 + }, + "4641": { + "aid": 3009 + }, + "4642": { + "aid": 3010 + }, + "4643": { + "aid": 3009 + }, + "4644": { + "aid": 3011 + }, + "4645": { + "aid": 3012 + }, + "4646": { + "aid": 1406 + }, + "4647": { + "aid": 2638 + }, + "4648": { + "aid": 2638 + }, + "4649": { + "aid": 2638 + }, + "4650": { + "aid": 3013 + }, + "4651": { + "aid": 3014 + }, + "4652": { + "aid": 2994 + }, + "4653": { + "aid": 3015 + }, + "4654": { + "aid": 3016 + }, + "4655": { + "aid": 459 + }, + "4656": { + "aid": 1565 + }, + "4657": { + "aid": 2903 + }, + "4658": { + "aid": 24 + }, + "4659": { + "aid": 2400 + }, + "4660": { + "aid": 3017 + }, + "4661": { + "aid": 2943 + }, + "4662": { + "aid": 2943 + }, + "4663": { + "aid": 2943 + }, + "4664": { + "aid": 3018 + }, + "4665": { + "aid": 3019 + }, + "4666": { + "aid": 3020 + }, + "4667": { + "aid": 3021 + }, + "4668": { + "aid": 2825 + }, + "4669": { + "aid": 2825 + }, + "4670": { + "aid": 3022 + }, + "4671": { + "aid": 3023 + }, + "4672": { + "aid": 3024 + }, + "4673": { + "aid": 3025 + }, + "4674": { + "aid": 3025 + }, + "4675": { + "aid": 1167 + }, + "4676": { + "aid": 3027 + }, + "4677": { + "aid": 3028 + }, + "4678": { + "aid": 3029 + }, + "4679": { + "aid": 3029 + }, + "4680": { + "aid": 2726 + }, + "4681": { + "aid": 3030 + }, + "4682": { + "aid": 3030 + }, + "4683": { + "aid": 3031 + }, + "4684": { + "aid": 3032 + }, + "4685": { + "aid": 2657 + }, + "4686": { + "aid": 2770 + }, + "4687": { + "aid": 2770 + }, + "4688": { + "aid": 2307 + }, + "4689": { + "aid": 2657 + }, + "4690": { + "aid": 3033 + }, + "4691": { + "aid": 364 + }, + "4693": { + "aid": 860 + }, + "4694": { + "aid": 3035 + }, + "4695": { + "aid": 2754 + }, + "4696": { + "aid": 3036 + }, + "4697": { + "aid": 3037 + }, + "4698": { + "aid": 2833 + }, + "4699": { + "aid": 2498 + }, + "4700": { + "aid": 3038 + }, + "4701": { + "aid": 3039 + }, + "4702": { + "aid": 1576 + }, + "4703": { + "aid": 3040 + }, + "4704": { + "aid": 3041 + }, + "4705": { + "aid": 3042 + }, + "4706": { + "aid": 3043 + }, + "4707": { + "aid": 3044 + }, + "4708": { + "aid": 3045 + }, + "4709": { + "aid": 2257 + }, + "4710": { + "aid": 3046 + }, + "4711": { + "aid": 3046 + }, + "4712": { + "aid": 3046 + }, + "4713": { + "aid": 3047 + }, + "4714": { + "aid": 3047 + }, + "4715": { + "aid": 3034 + }, + "4716": { + "aid": 3048 + }, + "4717": { + "aid": 3049 + }, + "4718": { + "aid": 3050 + }, + "4719": { + "aid": 1105 + }, + "4720": { + "aid": 3051 + }, + "4721": { + "aid": 3051 + }, + "4722": { + "aid": 3052 + }, + "4723": { + "aid": 3053 + }, + "4724": { + "aid": 3054 + }, + "4725": { + "aid": 1511 + }, + "4726": { + "aid": 2395 + }, + "4727": { + "aid": 1322 + }, + "4728": { + "aid": 3055 + }, + "4729": { + "aid": 3056 + }, + "4730": { + "aid": 3057 + }, + "4731": { + "aid": 3058 + }, + "4732": { + "aid": 2770 + }, + "4733": { + "aid": 1407 + }, + "4734": { + "aid": 3059 + }, + "4735": { + "aid": 3059 + }, + "4736": { + "aid": 2297 + }, + "4737": { + "aid": 3060 + }, + "4738": { + "aid": 68 + }, + "4739": { + "aid": 2972 + }, + "4740": { + "aid": 3061 + }, + "4741": { + "aid": 3061 + }, + "4742": { + "aid": 3062 + }, + "4743": { + "aid": 614 + }, + "4744": { + "aid": 3063 + }, + "4749": { + "aid": 2395 + }, + "4750": { + "aid": 2395 + }, + "4751": { + "aid": 2395 + }, + "4752": { + "aid": 2395 + }, + "4753": { + "aid": 3065 + }, + "4754": { + "aid": 3066 + }, + "4755": { + "aid": 3067 + }, + "4756": { + "aid": 3068 + }, + "4757": { + "aid": 3068 + }, + "4758": { + "aid": 3068 + }, + "4759": { + "aid": 3069 + }, + "4760": { + "aid": 3070 + }, + "4761": { + "aid": 3070 + }, + "4762": { + "aid": 3070 + }, + "4763": { + "aid": 3071 + }, + "4764": { + "aid": 3071 + }, + "4765": { + "aid": 3072 + }, + "4766": { + "aid": 3073 + }, + "4767": { + "aid": 3073 + }, + "4768": { + "aid": 3073 + }, + "4769": { + "aid": 3074 + }, + "4770": { + "aid": 3075 + }, + "4771": { + "aid": 3076 + }, + "4772": { + "aid": 3077 + }, + "4773": { + "aid": 3078 + }, + "4774": { + "aid": 3078 + }, + "4775": { + "aid": 3079 + }, + "4776": { + "aid": 3079 + }, + "4777": { + "aid": 210 + }, + "4778": { + "aid": 2985 + }, + "4779": { + "aid": 2985 + }, + "4780": { + "aid": 3080 + }, + "4781": { + "aid": 3081 + }, + "4782": { + "aid": 3082 + }, + "4783": { + "aid": 3081 + }, + "4784": { + "aid": 3083 + }, + "4785": { + "aid": 3084 + }, + "4786": { + "aid": 3085 + }, + "4787": { + "aid": 3086 + }, + "4788": { + "aid": 3086 + }, + "4789": { + "aid": 2600 + }, + "4790": { + "aid": 2600 + }, + "4791": { + "aid": 2600 + }, + "4792": { + "aid": 269 + }, + "4793": { + "aid": 3087 + }, + "4794": { + "aid": 76 + }, + "4795": { + "aid": 76 + }, + "4796": { + "aid": 1485 + }, + "4797": { + "aid": 683 + }, + "4798": { + "aid": 3088 + }, + "4799": { + "aid": 55 + }, + "4800": { + "aid": 1744 + }, + "4801": { + "aid": 3089 + }, + "4802": { + "aid": 2942 + }, + "4803": { + "aid": 3090 + }, + "4804": { + "aid": 925 + }, + "4805": { + "aid": 3090 + }, + "4806": { + "aid": 3091 + }, + "4807": { + "aid": 466 + }, + "4808": { + "aid": 2517 + }, + "4809": { + "aid": 950 + }, + "4810": { + "aid": 1192 + }, + "4811": { + "aid": 3092 + }, + "4812": { + "aid": 13 + }, + "4814": { + "aid": 2462 + }, + "4815": { + "aid": 3093 + }, + "4816": { + "aid": 2822 + }, + "4817": { + "aid": 3094 + }, + "4818": { + "aid": 2462 + }, + "4819": { + "aid": 3095 + }, + "4820": { + "aid": 3096 + }, + "4821": { + "aid": 3097 + }, + "4822": { + "aid": 599 + }, + "4823": { + "aid": 3097 + }, + "4824": { + "aid": 588 + }, + "4825": { + "aid": 68 + }, + "4826": { + "aid": 3098 + }, + "4827": { + "aid": 2895 + }, + "4828": { + "aid": 3099 + }, + "4829": { + "aid": 2894 + }, + "4830": { + "aid": 3100 + }, + "4831": { + "aid": 3101 + }, + "4832": { + "aid": 3102 + }, + "4833": { + "aid": 3103 + }, + "4834": { + "aid": 3104 + }, + "4835": { + "aid": 3105 + }, + "4836": { + "aid": 3106 + }, + "4837": { + "aid": 3107 + }, + "4838": { + "aid": 3108 + }, + "4839": { + "aid": 3109 + }, + "4840": { + "aid": 3110 + }, + "4841": { + "aid": 3111 + }, + "4842": { + "aid": 3112 + }, + "4843": { + "aid": 3113 + }, + "4844": { + "aid": 3114 + }, + "4845": { + "aid": 3115 + }, + "4846": { + "aid": 3115 + }, + "4847": { + "aid": 3116 + }, + "4848": { + "aid": 3117 + }, + "4849": { + "aid": 3118 + }, + "4850": { + "aid": 3119 + }, + "4851": { + "aid": 3120 + }, + "4852": { + "aid": 3121 + }, + "4853": { + "aid": 3122 + }, + "4854": { + "aid": 3122 + }, + "4855": { + "aid": 3123 + }, + "4856": { + "aid": 3124 + }, + "4857": { + "aid": 2414 + }, + "4858": { + "aid": 615 + }, + "4859": { + "aid": 615 + }, + "4860": { + "aid": 3125 + }, + "4861": { + "aid": 3054 + }, + "4862": { + "aid": 3126 + }, + "4863": { + "aid": 2832 + }, + "4864": { + "aid": 3127 + }, + "4865": { + "aid": 2181 + }, + "4866": { + "aid": 3129 + }, + "4867": { + "aid": 3129 + }, + "4868": { + "aid": 1988 + }, + "4869": { + "aid": 1988 + }, + "4870": { + "aid": 3130 + }, + "4871": { + "aid": 3130 + }, + "4872": { + "aid": 2726 + }, + "4873": { + "aid": 3131 + }, + "4874": { + "aid": 3132 + }, + "4875": { + "aid": 3126 + }, + "4876": { + "aid": 3133 + }, + "4877": { + "aid": 3134 + }, + "4878": { + "aid": 3135 + }, + "4879": { + "aid": 3135 + }, + "4880": { + "aid": 3135 + }, + "4881": { + "aid": 2866 + }, + "4882": { + "aid": 2866 + }, + "4883": { + "aid": 3136 + }, + "4884": { + "aid": 313 + }, + "4885": { + "aid": 3137 + }, + "4886": { + "aid": 1678 + }, + "4887": { + "aid": 3138 + }, + "4888": { + "aid": 1678 + }, + "4889": { + "aid": 1678 + }, + "4890": { + "aid": 1678 + }, + "4891": { + "aid": 3139 + }, + "4892": { + "aid": 3139 + }, + "4893": { + "aid": 2781 + }, + "4894": { + "aid": 3140 + }, + "4895": { + "aid": 3141 + }, + "4896": { + "aid": 3142 + }, + "4897": { + "aid": 3142 + }, + "4898": { + "aid": 3143 + }, + "4899": { + "aid": 3144 + }, + "4900": { + "aid": 2686 + }, + "4901": { + "aid": 3145 + }, + "4902": { + "aid": 3146 + }, + "4903": { + "aid": 2981 + }, + "4904": { + "aid": 3147 + }, + "4905": { + "aid": 3147 + }, + "4906": { + "aid": 2374 + }, + "4907": { + "aid": 3148 + }, + "4908": { + "aid": 3149 + }, + "4909": { + "aid": 3150 + }, + "4910": { + "aid": 3151 + }, + "4911": { + "aid": 3152 + }, + "4912": { + "aid": 2686 + }, + "4913": { + "aid": 2686 + }, + "4914": { + "aid": 3153 + }, + "4915": { + "aid": 3154 + }, + "4916": { + "aid": 3154 + }, + "4917": { + "aid": 3154 + }, + "4918": { + "aid": 3154 + }, + "4919": { + "aid": 3155 + }, + "4920": { + "aid": 3155 + }, + "4921": { + "aid": 3156 + }, + "4922": { + "aid": 3157 + }, + "4923": { + "aid": 2973 + }, + "4924": { + "aid": 3158 + }, + "4925": { + "aid": 3159 + }, + "4926": { + "aid": 3144 + }, + "4927": { + "aid": 3160 + }, + "4928": { + "aid": 3161 + }, + "4929": { + "aid": 3162 + }, + "4930": { + "aid": 3163 + }, + "4932": { + "aid": 3102 + }, + "4933": { + "aid": 3165 + }, + "4934": { + "aid": 3166 + }, + "4935": { + "aid": 2334 + }, + "4936": { + "aid": 3167 + }, + "4937": { + "aid": 3167 + }, + "4938": { + "aid": 3167 + }, + "4939": { + "aid": 113 + }, + "4940": { + "aid": 2472 + }, + "4941": { + "aid": 3168 + }, + "4942": { + "aid": 3169 + }, + "4943": { + "aid": 88 + }, + "4944": { + "aid": 3170 + }, + "4945": { + "aid": 3171 + }, + "4946": { + "aid": 3172 + }, + "4947": { + "aid": 3172 + }, + "4948": { + "aid": 3173 + }, + "4949": { + "aid": 2467 + }, + "4950": { + "aid": 2467 + }, + "4951": { + "aid": 3174 + }, + "4952": { + "aid": 3174 + }, + "4953": { + "aid": 3175 + }, + "4954": { + "aid": 3176 + }, + "4955": { + "aid": 510 + }, + "4956": { + "aid": 2955 + }, + "4957": { + "aid": 3102 + }, + "4958": { + "aid": 3168 + }, + "4959": { + "aid": 208 + }, + "4960": { + "aid": 2686 + }, + "4961": { + "aid": 3177 + }, + "4962": { + "aid": 2781 + }, + "4963": { + "aid": 364 + }, + "4964": { + "aid": 3178 + }, + "4965": { + "aid": 3179 + }, + "4966": { + "aid": 3180 + }, + "4967": { + "aid": 2530 + }, + "4968": { + "aid": 2885 + }, + "4969": { + "aid": 3181 + }, + "4970": { + "aid": 3182 + }, + "4971": { + "aid": 3183 + }, + "4972": { + "aid": 3184 + }, + "4973": { + "aid": 1597 + }, + "4974": { + "aid": 2734 + }, + "4975": { + "aid": 3185 + }, + "4976": { + "aid": 3187 + }, + "4977": { + "aid": 3188 + }, + "4978": { + "aid": 3189 + }, + "4979": { + "aid": 3189 + }, + "4980": { + "aid": 3189 + }, + "4981": { + "aid": 3190 + }, + "4982": { + "aid": 3191 + }, + "4983": { + "aid": 1186 + }, + "4984": { + "aid": 2930 + }, + "4985": { + "aid": 3192 + }, + "4986": { + "aid": 3193 + }, + "4987": { + "aid": 3194 + }, + "4988": { + "aid": 3194 + }, + "4989": { + "aid": 3194 + }, + "4990": { + "aid": 3194 + }, + "4991": { + "aid": 3195 + }, + "4992": { + "aid": 3196 + }, + "4993": { + "aid": 3215 + }, + "4994": { + "aid": 426 + }, + "4995": { + "aid": 3197 + }, + "4996": { + "aid": 2536 + }, + "4997": { + "aid": 3198 + }, + "4998": { + "aid": 3199 + }, + "4999": { + "aid": 3200 + }, + "5000": { + "aid": 3201 + }, + "5001": { + "aid": 3202 + }, + "5002": { + "aid": 3202 + }, + "5003": { + "aid": 3203 + }, + "5004": { + "aid": 3203 + }, + "5005": { + "aid": 3204 + }, + "5006": { + "aid": 3204 + }, + "5007": { + "aid": 3204 + }, + "5008": { + "aid": 3206 + }, + "5009": { + "aid": 3207 + }, + "5010": { + "aid": 3207 + }, + "5011": { + "aid": 3207 + }, + "5012": { + "aid": 3208 + }, + "5013": { + "aid": 3209 + }, + "5014": { + "aid": 3210 + }, + "5015": { + "aid": 3112 + }, + "5016": { + "aid": 2992 + }, + "5017": { + "aid": 2472 + }, + "5018": { + "aid": 26 + }, + "5019": { + "aid": 3212 + }, + "5020": { + "aid": 3213 + }, + "5021": { + "aid": 3214 + }, + "5022": { + "aid": 364 + }, + "5023": { + "aid": 3216 + }, + "5024": { + "aid": 3190 + }, + "5025": { + "aid": 702 + }, + "5026": { + "aid": 44 + }, + "5027": { + "aid": 3217 + }, + "5028": { + "aid": 1702 + }, + "5029": { + "aid": 3218 + }, + "5030": { + "aid": 3221 + }, + "5031": { + "aid": 3221 + }, + "5032": { + "aid": 3221 + }, + "5033": { + "aid": 3223 + }, + "5034": { + "aid": 3224 + }, + "5035": { + "aid": 3225 + }, + "5036": { + "aid": 3226 + }, + "5037": { + "aid": 3227 + }, + "5038": { + "aid": 3228 + }, + "5039": { + "aid": 3229 + }, + "5040": { + "aid": 3230 + }, + "5041": { + "aid": 3231 + }, + "5042": { + "aid": 3050 + }, + "5043": { + "aid": 3232 + }, + "5044": { + "aid": 3233 + }, + "5045": { + "aid": 3234 + }, + "5046": { + "aid": 3235 + }, + "5047": { + "aid": 3236 + }, + "5048": { + "aid": 3237 + }, + "5049": { + "aid": 3238 + }, + "5050": { + "aid": 3240 + }, + "5051": { + "aid": 3241 + }, + "5052": { + "aid": 3242 + }, + "5053": { + "aid": 3244 + }, + "5054": { + "aid": 3245 + }, + "5055": { + "aid": 3239 + }, + "5056": { + "aid": 3243 + }, + "5057": { + "aid": 3246 + }, + "5058": { + "aid": 3247 + }, + "5059": { + "aid": 3248 + }, + "5060": { + "aid": 3249 + }, + "5061": { + "aid": 3250 + }, + "5062": { + "aid": 3251 + }, + "5063": { + "aid": 3251 + }, + "5064": { + "aid": 3252 + }, + "5065": { + "aid": 3253 + }, + "5066": { + "aid": 2868 + }, + "5067": { + "aid": 2416 + }, + "5068": { + "aid": 2416 + }, + "5069": { + "aid": 3254 + }, + "5070": { + "aid": 3255 + }, + "5071": { + "aid": 3256 + }, + "5072": { + "aid": 3258 + }, + "5073": { + "aid": 3259 + }, + "5074": { + "aid": 3260 + }, + "5075": { + "aid": 3261 + }, + "5076": { + "aid": 3261 + }, + "5077": { + "aid": 3150 + }, + "5078": { + "aid": 3262 + }, + "5079": { + "aid": 3262 + }, + "5080": { + "aid": 3262 + }, + "5081": { + "aid": 3263 + }, + "5082": { + "aid": 3263 + }, + "5083": { + "aid": 3263 + }, + "5084": { + "aid": 3020 + }, + "5085": { + "aid": 2573 + }, + "5086": { + "aid": 2573 + }, + "5087": { + "aid": 3265 + }, + "5088": { + "aid": 3266 + }, + "5089": { + "aid": 3267 + }, + "5090": { + "aid": 3268 + }, + "5091": { + "aid": 3269 + }, + "5092": { + "aid": 3264 + }, + "5093": { + "aid": 3270 + }, + "5094": { + "aid": 3271 + }, + "5095": { + "aid": 3272 + }, + "5096": { + "aid": 3227 + }, + "5097": { + "aid": 3269 + } + }, + "firstPartyExceptions": { + "3": [ + "mybloglog.com" + ], + "4": [ + "widget.quantcast.com", + "quantserve.com" + ], + "9": [ + "blog.crazyegg.com", + "crazyegg.com" + ], + "11": [ + "statcounter.com" + ], + "16": [ + "stats.wordpress.com" + ], + "17": [ + "app.hubspot.com" + ], + "18": [ + "analytics.yahoo.com", + "s.yjtag.jp" + ], + "21": [ + "nuggad.net" + ], + "22": [ + "static.crowdscience.com" + ], + "23": [ + "fmpub.net" + ], + "24": [ + "openx.org", + "openx.net" + ], + "25": [ + "assoc-amazon.com", + "assoc-amazon.ca", + "assoc-amazon.co.uk", + "assoc-amazon.de", + "assoc-amazon.fr", + "assoc-amazon.jp" + ], + "34": [ + "imrworldwide.com" + ], + "35": [ + "doubleclick.net", + "g.doubleclick.net" + ], + "36": [ + "tacoda.net" + ], + "37": [ + "rm.yieldmanager.com", + "ad.yieldmanager.com", + "rmxads.com" + ], + "38": [ + "content.dl-rms.com", + "dlqm.net", + "questionmarket.com" + ], + "40": [ + "xiti.com", + "ati-host.net" + ], + "41": [ + "sharethis.com" + ], + "45": [ + "revsci.net" + ], + "46": [ + "pointroll.com" + ], + "47": [ + "chartbeat.com", + "chartbeat.net" + ], + "48": [ + "in.getclicky.com", + "static.getclicky.com", + "hello.staticstuff.net" + ], + "49": [ + "uservoice.com" + ], + "50": [ + "rubiconproject.com" + ], + "54": [ + "criteo.com", + "criteo.net" + ], + "59": [ + "widgets.outbrain.com" + ], + "61": [ + "specificclick.net" + ], + "62": [ + "atdmt.com", + "adbureau.net" + ], + "65": [ + "chrome.google.com/webstore*" + ], + "67": [ + "adbrite.com" + ], + "68": [ + "adultadworld.com", + "adworldmedia.com" + ], + "69": [ + "gunggo.com" + ], + "70": [ + "zerezas.com", + "xeontopa.com", + "doublepimp.com", + "redcourtside.com" + ], + "71": [ + "ads.sexinyourcity.com" + ], + "72": [ + "lzjl.com", + "clicksor.com", + "hatid.com" + ], + "74": [ + "adsonar.com" + ], + "76": [ + "technorati.com" + ], + "78": [ + "tribalfusion.com" + ], + "79": [ + "blog.disqus.com", + "disqus.com" + ], + "80": [ + "ads.sixapart.com" + ], + "81": [ + "ads.blogherads.com" + ], + "86": [ + "overture.com" + ], + "94": [ + "triggit.com" + ], + "97": [ + "zedo.com" + ], + "98": [ + "intellitxt.com" + ], + "100": [ + "afy11.net" + ], + "101": [ + "google.com/ig" + ], + "102": [ + "liveperson.net", + "lpsnmedia.net" + ], + "104": [ + "clicktale.net" + ], + "105": [ + "crwdcntrl.net" + ], + "106": [ + "cpxinteractive.com", + "bigfineads.com", + "brealtime.com", + "cpxadroit.com" + ], + "107": [ + "lypn.net" + ], + "110": [ + "insightexpressai.com" + ], + "111": [ + "kanoodle.com" + ], + "112": [ + "stags.bluekai.com", + "tags.bluekai.com" + ], + "115": [ + "twittercounter.com" + ], + "117": [ + "dtmpub.com", + "dotomi.com" + ], + "118": [ + "chitika.net" + ], + "120": [ + "hitslink.com" + ], + "121": [ + "w3counter.com" + ], + "123": [ + "stat.onestat.com" + ], + "126": [ + "bmmetrix.com", + "japanmetrix.jp" + ], + "127": [ + "reinvigorate.net" + ], + "129": [ + "service.collarity.com" + ], + "130": [ + "smrtlnks.com" + ], + "133": [ + "casalemedia.com" + ], + "134": [ + "track.blogcounter.de" + ], + "137": [ + "mediaplex.com", + "mplxtms.com" + ], + "140": [ + "trackalyzer.com", + "formalyzer.com" + ], + "141": [ + "burstbeacon.com", + "burstnet.com" + ], + "143": [ + "blogads.com", + "cubics.com", + "bidsystem.com", + "adkengage.com", + "adknowledge.com" + ], + "145": [ + "media6degrees.com" + ], + "148": [ + "adrevolver.com", + "bluelithium.com" + ], + "151": [ + "clicktracks.com" + ], + "153": [ + "extreme-dm.com" + ], + "154": [ + "analytics.live.com" + ], + "156": [ + "socialtwist.com" + ], + "157": [ + "tracking.percentmobile.com" + ], + "159": [ + "developers.marketo.com" + ], + "160": [ + "api.demandbase.com", + "leads.demandbase.com" + ], + "161": [ + "pixel.fetchback.com" + ], + "162": [ + "gw-services.vtrenz.net" + ], + "163": [ + "data.cmcore.com", + "coremetrics.com", + "coremetrics.eu" + ], + "164": [ + "magnify360.com" + ], + "166": [ + "en25.com", + "eloqua.com" + ], + "167": [ + "imiclk.com", + "abmr.net" + ], + "168": [ + "mmismm.com" + ], + "169": [ + "trafficfacts.com" + ], + "170": [ + "adnxs.com", + "adnxs.net" + ], + "171": [ + "pro-market.net" + ], + "172": [ + "collective-media.net" + ], + "173": [ + "exelator.com" + ], + "174": [ + "fimserve.com" + ], + "175": [ + "interclick.com" + ], + "176": [ + "nexac.com" + ], + "177": [ + "trafficmp.com" + ], + "178": [ + "turn.com" + ], + "179": [ + "oaserve.com", + "realmediadigital.com", + "realmedia.com", + "247realmedia.com" + ], + "180": [ + "code.etracker.com" + ], + "181": [ + "scoreresearch.com", + "securestudies.com", + "scorecardresearch.com", + "scrsrch.com" + ], + "182": [ + "bizographics.com" + ], + "183": [ + "snoobi.com" + ], + "184": [ + "rfihub.com", + "rfihub.net" + ], + "185": [ + "shinystat.com", + "shinystat.it" + ], + "186": [ + "sniff.visistat.com", + "stats.visistat.com" + ], + "187": [ + "sitestat.com", + "nedstat.com" + ], + "192": [ + "adriver.ru" + ], + "193": [ + "spylog.com", + "spylog.ru" + ], + "195": [ + "spruce.rapleaf.com", + "rlcdn.com" + ], + "196": [ + "zemanta.com" + ], + "200": [ + "doubleverify.com" + ], + "203": [ + "widgets.backtype.com" + ], + "204": [ + "iperceptions.com" + ], + "205": [ + "searchforce.net" + ], + "209": [ + "ivwbox.de", + "ioam.de" + ], + "210": [ + "media.richrelevance.com", + "recs.richrelevance.com" + ], + "211": [ + "counter.yadro.ru" + ], + "219": [ + "navdmp.com" + ], + "220": [ + "rsvpgenius.com" + ], + "221": [ + "tracker.wordstream.com" + ], + "222": [ + "blog.kissmetrics.com" + ], + "223": [ + "mixpanel.com" + ], + "224": [ + "adtegrity.net", + "adtpix.com" + ], + "225": [ + "unica.com", + "roitesting.com" + ], + "226": [ + "rover.ebay.com" + ], + "227": [ + "inq.com" + ], + "228": [ + "clixmetrix.com" + ], + "230": [ + "marinsm.com" + ], + "231": [ + "pardot.com" + ], + "238": [ + "2o7.net", + "omtrdc.net" + ], + "315": [ + "gumgum.com" + ], + "339": [ + "dtmpub.com", + "dotomi.com" + ], + "398": [ + "scoreresearch.com", + "securestudies.com", + "scorecardresearch.com" + ], + "447": [ + "h4k5.com", + "stormiq.com", + "dc-storm.com", + "stormcontainertag.com" + ], + "448": [ + "histats.com" + ], + "449": [ + "widgets.amung.us", + "whos.amung.us" + ], + "450": [ + "data.gosquared.com" + ], + "453": [ + "c-col.com" + ], + "455": [ + "dev.visualwebsiteoptimizer.com" + ], + "458": [ + "buysellads.com" + ], + "461": [ + "peer39.net" + ], + "462": [ + "eproof.com" + ], + "463": [ + "begun.ru" + ], + "465": [ + "quintelligence.com" + ], + "468": [ + "webtrekk.de", + "webtrekk.net", + "webtrekk-asia.net" + ], + "470": [ + "channelintelligence.com" + ], + "472": [ + "bdv.bidvertiser.com", + "srv.bidvertiser.com" + ], + "474": [ + "get.mirando.de" + ], + "475": [ + "ads.adtiger.de" + ], + "476": [ + "adscale.de" + ], + "477": [ + "dsa.csdata1.com" + ], + "478": [ + "js.admeld.com", + "tag.admeld.com" + ], + "485": [ + "link.mercent.com" + ], + "487": [ + "ru4.com", + "ad.xplusone.com" + ], + "492": [ + "retargeter.com" + ], + "494": [ + "mediaforge.com" + ], + "496": [ + "visualdna.com" + ], + "498": [ + "33across.com" + ], + "499": [ + "searchmarketing.com", + "t.channeladvisor.com" + ], + "504": [ + "optimost.com" + ], + "506": [ + "t.p.mybuys.com" + ], + "508": [ + "contextweb.com" + ], + "509": [ + "dmtracker.com", + "dmd53.com" + ], + "518": [ + "estat.com" + ], + "519": [ + "adstat.4u.pl", + "stat.4u.pl" + ], + "520": [ + "hit.gemius.pl" + ], + "521": [ + "voicestar.com" + ], + "523": [ + "serving-sys.com" + ], + "525": [ + "invitemedia.com" + ], + "528": [ + "netshelter.net" + ], + "529": [ + "iesnare.com" + ], + "531": [ + "brcdn.com", + "brsrvr.com", + "brtstats.com" + ], + "532": [ + "beacon.clickequations.net", + "js.clickequations.net" + ], + "535": [ + "web-stat.com" + ], + "538": [ + "a.giantrealm.com" + ], + "540": [ + "tags.dashboardad.net" + ], + "541": [ + "oewabox.at" + ], + "542": [ + "amgdgt.com", + "adrdgt.com" + ], + "543": [ + "pulsemgr.com" + ], + "544": [ + "pubmatic.com" + ], + "552": [ + "spring-tns.net", + "tns-counter.ru", + "tns-cs.net", + "statistik-gallup.net", + "sesamestats.com", + "tns-gallup.dk", + "research-int.se" + ], + "556": [ + "xtendmedia.com" + ], + "558": [ + "newstogram.com" + ], + "559": [ + "ad.adlegend.com" + ], + "560": [ + "mouseflow.com" + ], + "561": [ + "rotator.adjuggler.com" + ], + "563": [ + "m.viglink.com", + "js.viglink.com", + "api.viglink.com", + "cdn.viglink.com" + ], + "565": [ + "sageanalyst.net" + ], + "566": [ + "svlu.net" + ], + "567": [ + "w55c.net" + ], + "569": [ + "demdex.net" + ], + "570": [ + "adtechus.com", + "adtech.de" + ], + "572": [ + "dw.com.com", + "adlog.com.com" + ], + "573": [ + "netmng.com" + ], + "574": [ + "px.owneriq.net" + ], + "576": [ + "ads.bridgetrack.com" + ], + "578": [ + "hits.convergetrack.com" + ], + "580": [ + "dt07.net", + "dt00.net", + "jsc.mgid.com" + ], + "581": [ + "publishers.halogennetwork.com", + "hat.halogennetwork.com" + ], + "584": [ + "bluestreak.com" + ], + "586": [ + "optorb.com", + "go.cpmadvisors.com" + ], + "587": [ + "intermundomedia.com" + ], + "591": [ + "impression.clickinc.com", + "ca.clickinc.com" + ], + "592": [ + "skimresources.com", + "redirectingat.com" + ], + "593": [ + "ad.metanetwork.com" + ], + "595": [ + "rt.legolas-media.com" + ], + "597": [ + "cdn.krxd.net", + "beacon.krxd.net" + ], + "602": [ + "ibpxl.com" + ], + "604": [ + "tracking.conversionlab.it" + ], + "605": [ + "trackset.it" + ], + "606": [ + "adblade.com" + ], + "608": [ + "ads.undertone.com" + ], + "609": [ + "undertone.com" + ], + "610": [ + "lucidmedia.com" + ], + "612": [ + "track.did-it.com" + ], + "614": [ + "content.pulse360.com", + "track.pulse360.com" + ], + "615": [ + "adgear.com", + "adgrx.com" + ], + "619": [ + "ads.affbuzzads.com" + ], + "621": [ + "linksynergy.com" + ], + "624": [ + "monetate.net" + ], + "625": [ + "adserver.teracent.net", + "int.teracent.net" + ], + "627": [ + "agkn.com" + ], + "632": [ + "projectwonderful.com" + ], + "633": [ + "voicefive.com" + ], + "639": [ + "ic-live.com" + ], + "640": [ + "adready.com" + ], + "643": [ + "adcode.adengage.com", + "conv.adengage.com" + ], + "645": [ + "cpmstar.com" + ], + "647": [ + "tracker.financialcontent.com" + ], + "649": [ + "sitecompass.com" + ], + "652": [ + "upsellit.com" + ], + "655": [ + "vizu.com" + ], + "657": [ + "adfox.ru", + "adwolf.ru" + ], + "658": [ + "goku.brightcove.com", + "metrics.brightcove.com" + ], + "662": [ + "mathtag.com", + "mathads.com" + ], + "664": [ + "ad.rambler.ru", + "ad2.rambler.ru", + "counter.rambler.ru", + "top100-images.rambler.ru" + ], + "665": [ + "bluecava.com" + ], + "668": [ + "service.optify.net" + ], + "670": [ + "reduxmediagroup.com", + "reduxmedia.com" + ], + "672": [ + "servedby.precisionclick.com", + "geo.precisionclick.com" + ], + "675": [ + "counters.gigya.com", + "c.gigcount.com" + ], + "676": [ + "webiq-warp.appspot.com", + "webiq-cdn.appspot.com", + "webiqonline.com" + ], + "677": [ + "cedexis.com", + "cedexis.net" + ], + "680": [ + "mookie1.com" + ], + "682": [ + "stats.businessol.com" + ], + "683": [ + "webtraxs.com" + ], + "684": [ + "pixel.adbuyer.com" + ], + "686": [ + "adadvisor.net" + ], + "690": [ + "z5x.net" + ], + "692": [ + "data.resultlinks.com" + ], + "693": [ + "eyewonder.com" + ], + "694": [ + "wsod.com" + ], + "698": [ + "ats.tumri.net" + ], + "699": [ + "visiblemeasures.com", + "viewablemedia.net" + ], + "702": [ + "adsfac.eu", + "adsfac.us", + "adsfac.sg", + "adsfac.net" + ], + "704": [ + "pixazza.com" + ], + "705": [ + "qnsr.com", + "quinstreet.com" + ], + "706": [ + "qnsr.com", + "quinstreet.com" + ], + "707": [ + "smp.specificmedia.com", + "leads.specificmedia.com" + ], + "708": [ + "adviva.net", + "specificmedia.com", + "specificclick.net" + ], + "709": [ + "gmads.net", + "grmtech.net" + ], + "711": [ + "levexis.com" + ], + "713": [ + "cg-global.maxymiser.com" + ], + "717": [ + "crm-metrix.com" + ], + "719": [ + "facebook.com" + ], + "720": [ + "chango.ca", + "chango.com" + ], + "722": [ + "cdna.tremormedia.com" + ], + "724": [ + "p-td.com" + ], + "726": [ + "yieldoptimizer.com" + ], + "727": [ + "yieldoptimizer.com" + ], + "728": [ + "displaymarketplace.com" + ], + "734": [ + "connextra.com" + ], + "736": [ + "api.conduit.com", + "apps.conduit.com" + ], + "738": [ + "udmserve.net" + ], + "739": [ + "udmserve.net" + ], + "742": [ + "px.steelhousemedia.com" + ], + "743": [ + "steelhousemedia.com" + ], + "744": [ + "tracking.godatafeed.com" + ], + "746": [ + "adspaces.ero-advertising.com" + ], + "747": [ + "adxpansion.com" + ], + "750": [ + "snapabug.appspot.com" + ], + "751": [ + "c3metrics.com" + ], + "752": [ + "simpli.fi" + ], + "754": [ + "admission.net" + ], + "763": [ + "hs.interpolls.com", + "sw.interpolls.com" + ], + "766": [ + "gwallet.com" + ], + "768": [ + "wtp101.com" + ], + "769": [ + "adshuffle.com" + ], + "771": [ + "servedby.flashtalking.com", + "stat.flashtalking.com", + "cdn.flashtalking.com", + "a.flashtalking.com", + "fdz.flashtalking.com" + ], + "773": [ + "servedby.adxpose.com", + "ads.adxpose.com", + "event.adxpose.com" + ], + "778": [ + "hitbox.com" + ], + "786": [ + "demdex.net", + "everesttech.net" + ], + "790": [ + "owneriq.net" + ], + "807": [ + "btrll.com" + ], + "813": [ + "tealium.com" + ], + "814": [ + "e-planning.net" + ], + "817": [ + "btstatic.com" + ], + "833": [ + "everestjs.net", + "everesttech.net" + ], + "836": [ + "ctasnet.com" + ], + "839": [ + "raasnet.com" + ], + "841": [ + "eyereturn.com" + ], + "843": [ + "mythings.com" + ], + "845": [ + "d9lq0o81skkdj.cloudfront.net", + "esm1.net" + ], + "848": [ + "adconnexa.com", + "adsbwm.com" + ], + "850": [ + "spongecell.com" + ], + "864": [ + "5min.com" + ], + "867": [ + "backbeatmedia.com" + ], + "870": [ + "ad.adserverplus.com" + ], + "874": [ + "zanox.com" + ], + "878": [ + "rts.sparkstudios.com" + ], + "879": [ + "juicyads.com" + ], + "880": [ + "ads.pheedo.com" + ], + "883": [ + "ads.ad4game.com" + ], + "884": [ + "a.ucoz.net" + ], + "885": [ + "c.bigmir.net" + ], + "886": [ + "tradetracker.net" + ], + "890": [ + "ads.brand.net", + "vdrn.redplum.com" + ], + "891": [ + "js.geoads.com" + ], + "894": [ + "hits.e.cl" + ], + "898": [ + "livepass.conviva.com", + "livepassdl.conviva.com" + ], + "903": [ + "a.akncdn.com" + ], + "906": [ + "ads.dedicatedmedia.com" + ], + "908": [ + "veruta.com" + ], + "912": [ + "roia.biz" + ], + "913": [ + "u-ads.adap.tv", + "ads.adap.tv", + "sync.adap.tv", + "set.adap.tv", + "log.adap.tv", + "qlog.adap.tv", + "redir.adap.tv" + ], + "917": [ + "rt.liftdna.com" + ], + "919": [ + "777seo.com", + "ptp22.com", + "ptp33.com" + ], + "922": [ + "optimize.webtrends.com", + "m.webtrends.com" + ], + "923": [ + "adsrvr.org" + ], + "926": [ + "sp1.convertro.com" + ], + "927": [ + "domdex.net", + "domdex.com" + ], + "931": [ + "adperium.com" + ], + "937": [ + "dmtry.com" + ], + "940": [ + "j.kissinsights.com" + ], + "941": [ + "blog.kissmetrics.com" + ], + "942": [ + "blog.crazyegg.com", + "crazyegg.com" + ], + "943": [ + "learn.optimizely.com" + ], + "946": [ + "r.i.ua" + ], + "948": [ + "qksz.net" + ], + "949": [ + "d1qpxk1wfeh8v1.cloudfront.net", + "d1cerpgff739r9.cloudfront.net" + ], + "950": [ + "cn01.dwstat.cn" + ], + "951": [ + "gopjn.com", + "pjatr.com", + "pjtra.com", + "pntra.com", + "pntrac.com", + "pntrs.com" + ], + "952": [ + "ftjcfx.com" + ], + "953": [ + "tqlkg.com" + ], + "954": [ + "yceml.net" + ], + "955": [ + "analytics.matchbin.com" + ], + "957": [ + "shareasale.com" + ], + "958": [ + "pages.etology.com" + ], + "959": [ + "s.thebrighttag.com", + "tags.sitetagger.co.uk" + ], + "960": [ + "smowtion.com" + ], + "965": [ + "fls.doubleclick.net" + ], + "967": [ + "adsafeprotected.com" + ], + "968": [ + "tradedoubler.com" + ], + "969": [ + "streamray.com" + ], + "970": [ + "pop6.com" + ], + "971": [ + "cams.com" + ], + "972": [ + "nostringsattached.com" + ], + "973": [ + "getiton.com" + ], + "974": [ + "adultfriendfinder.com" + ], + "976": [ + "facebookofsex.com" + ], + "977": [ + "blog.disqus.com", + "disqus.com" + ], + "978": [ + "widgets.digg.com" + ], + "979": [ + "lijit.com" + ], + "980": [ + "technoratimedia.com" + ], + "981": [ + "log.feedjit.com" + ], + "982": [ + "smartadserver.com" + ], + "983": [ + "sponsorads.de" + ], + "985": [ + "conduit-banners.com", + "conduit-data.com" + ], + "988": [ + "advertisespace.com" + ], + "989": [ + "dinclinx.com" + ], + "991": [ + "twitter.com" + ], + "994": [ + "netseer.com" + ], + "995": [ + "adform.net", + "adformdsp.net" + ], + "997": [ + "ads.newtention.net", + "ads.newtentionassets.net" + ], + "998": [ + "trk.newtention.net" + ], + "999": [ + "newtention.net" + ], + "1003": [ + "eplayer.clipsyndicate.com" + ], + "1004": [ + "adition.com" + ], + "1005": [ + "ad.clickotmedia.com" + ], + "1006": [ + "facebook.com" + ], + "1009": [ + "docs.newrelic.com", + " newrelic.com" + ], + "1010": [ + "plus.google.com", + "chrome.google.com/webstore*" + ], + "1011": [ + "effectivemeasure.net" + ], + "1012": [ + "clicktale.pantherssl.com", + "clicktalecdn.sslcs.cdngc.net" + ], + "1013": [ + "srv.clickfuse.com" + ], + "1015": [ + "d1l6p2sc9645hc.cloudfront.net" + ], + "1016": [ + "opentracker.net" + ], + "1017": [ + "img.footprintlive.com", + "script.footprintlive.com" + ], + "1018": [ + "adreactor.com" + ], + "1021": [ + "adocean.pl" + ], + "1023": [ + "adcentriconline.com" + ], + "1024": [ + "waterfrontmedia.com" + ], + "1025": [ + "customerconversio.com" + ], + "1026": [ + "apps.facebook.com" + ], + "1027": [ + "apps.facebook.com" + ], + "1028": [ + "apps.facebook.com" + ], + "1029": [ + "apps.facebook.com" + ], + "1030": [ + "facebook.com" + ], + "1031": [ + "adviva.net" + ], + "1034": [ + "hitbox.com" + ], + "1035": [ + "omtrdc.net" + ], + "1046": [ + "webtrendslive.com" + ], + "1049": [ + "addthis.com" + ], + "1050": [ + "l.addthiscdn.com" + ], + "1051": [ + "wunderloop.net" + ], + "1052": [ + "ad.targetingmarketplace.com" + ], + "1057": [ + "advertising.com" + ], + "1058": [ + "atwola.com" + ], + "1059": [ + "baynote.net" + ], + "1065": [ + "monitus.net" + ], + "1068": [ + "meteorsolutions.com" + ], + "1069": [ + "freeonlineusers.com" + ], + "1070": [ + "statistics.ro" + ], + "1071": [ + "keymetric.net" + ], + "1074": [ + "d3pkntwtp2ukl5.cloudfront.net" + ], + "1075": [ + "t.unbounce.com" + ], + "1076": [ + "zopim.com" + ], + "1077": [ + "brainient.com" + ], + "1078": [ + "etracker.de" + ], + "1079": [ + "ad.103092804.com", + "kmdisplay.com" + ], + "1080": [ + "trafficrevenue.net" + ], + "1081": [ + "adbull.com" + ], + "1082": [ + "complexmedianetwork.com" + ], + "1083": [ + "complex.com" + ], + "1084": [ + "pocketcents.com" + ], + "1087": [ + "expo-max.com" + ], + "1088": [ + "hitsniffer.com" + ], + "1089": [ + "impressiondesk.com", + "impdesk.com" + ], + "1092": [ + "atemda.com" + ], + "1094": [ + "springmetrics.com" + ], + "1095": [ + "d3rmnwi2tssrfx.cloudfront.net" + ], + "1096": [ + "activeconversion.com" + ], + "1097": [ + "linkconnector.com" + ], + "1098": [ + "d5phz18u4wuww.cloudfront.net" + ], + "1099": [ + "admedia.com" + ], + "1101": [ + "visit.webhosting.yahoo.com" + ], + "1102": [ + "prosperent.com" + ], + "1103": [ + "exitjunction.com" + ], + "1104": [ + "dynamicoxygen.com" + ], + "1105": [ + "wwa.wipe.de" + ], + "1108": [ + "radarurl.com" + ], + "1109": [ + "olark.com" + ], + "1111": [ + "blog.parsely.com" + ], + "1112": [ + "persianstat.com" + ], + "1114": [ + "nuffnang.com" + ], + "1116": [ + "tailsweep.com" + ], + "1117": [ + "d1ivexoxmp59q7.cloudfront.net" + ], + "1118": [ + "scribol.com" + ], + "1119": [ + "indieclick.com" + ], + "1120": [ + "cdn.topsy.com", + "otter.topsy.com" + ], + "1121": [ + "investingchannel.com" + ], + "1122": [ + "wahoha.com" + ], + "1123": [ + "theblogfrog.com" + ], + "1124": [ + "peerius.com" + ], + "1125": [ + "w3roi.com" + ], + "1128": [ + "2leep.com" + ], + "1129": [ + "nwidget.networkedblogs.com" + ], + "1130": [ + "adonion.com" + ], + "1133": [ + "durasite.net" + ], + "1134": [ + "carbonads.com" + ], + "1135": [ + "advg.jp" + ], + "1137": [ + "adplan-ds.com" + ], + "1138": [ + "c.p-advg.com" + ], + "1140": [ + "amigos.com" + ], + "1141": [ + "unanimis.co.uk" + ], + "1143": [ + "adjug.com" + ], + "1145": [ + "sptag3.com" + ], + "1146": [ + "microad.jp", + "microadinc.com", + "unthem.com", + "ot.ca-mpr.jp" + ], + "1147": [ + "adlantis.jp" + ], + "1148": [ + "adimg.net" + ], + "1149": [ + "fout.jp" + ], + "1150": [ + "advertise.com" + ], + "1151": [ + "netscope.data.marktest.pt" + ], + "1153": [ + "visualrevenue.com" + ], + "1154": [ + "nspmotion.com", + "dmmotion.com" + ], + "1158": [ + "dz.glanceguide.com" + ], + "1159": [ + "hotwords.com" + ], + "1160": [ + "adtotal.pl" + ], + "1161": [ + "platform.linkedin.com" + ], + "1162": [ + "cognitivematch.com", + "cmmeglobal.com" + ], + "1164": [ + "uservoice.com" + ], + "1165": [ + "uservoice.com" + ], + "1166": [ + "spectate.com" + ], + "1171": [ + "exoclick.com" + ], + "1174": [ + "cnzz.com" + ], + "1175": [ + "nakanohito.jp" + ], + "1176": [ + "luminate.com" + ], + "1179": [ + "nxtck.com" + ], + "1180": [ + "adserver.com.br", + "predicta.net" + ], + "1184": [ + "plista.com" + ], + "1186": [ + "met.vgwort.de" + ], + "1187": [ + "shinobi.jp", + "donburako.com", + "cho-chin.com", + "hishaku.com" + ], + "1188": [ + "brandaffinity.net" + ], + "1189": [ + "sophus3.com" + ], + "1190": [ + "comclick.com" + ], + "1191": [ + "clicmanager.fr" + ], + "1192": [ + "clickintext.net" + ], + "1195": [ + "veoxa.com" + ], + "1202": [ + "optmd.com" + ], + "1205": [ + "hurra.com" + ], + "1211": [ + "ib-ibi.com" + ], + "1219": [ + "crosspixel.net" + ], + "1221": [ + "intentmedia.net" + ], + "1230": [ + "c3tag.com" + ], + "1235": [ + "emediate.dk", + "emediate.se", + "emediate.eu" + ], + "1241": [ + "auditude.com" + ], + "1245": [ + "adversalservers.com", + "go.adversal.com", + "adversaldisplay.com" + ], + "1246": [ + "adfusion.com" + ], + "1249": [ + "grapeshot.co.uk", + "gscontxt.net" + ], + "1250": [ + "tidaltv.com" + ], + "1251": [ + "korrelate.net", + "cleanrm.net" + ], + "1254": [ + "rovion.com" + ], + "1257": [ + "traffiliate.com" + ], + "1261": [ + "sensic.net" + ], + "1264": [ + "crsspxl.com" + ], + "1267": [ + "app.ubertags.com" + ], + "1268": [ + "listrakbi.com" + ], + "1269": [ + "st.listrak.com" + ], + "1270": [ + "a2dfp.net" + ], + "1272": [ + "600z.com" + ], + "1274": [ + "ltassrv.com" + ], + "1277": [ + "ad.adfunky.com" + ], + "1279": [ + "punchtab.com" + ], + "1281": [ + "gestionpub.com" + ], + "1284": [ + "iprom.net" + ], + "1286": [ + "centraliprom.com" + ], + "1287": [ + "httpool.com", + "toboads.com" + ], + "1288": [ + "tongji.linezing.com" + ], + "1291": [ + "reachlocal.com", + "reachlocallivechat.com" + ], + "1292": [ + "rlcdn.net" + ], + "1294": [ + "gravity.com", + "grvcdn.com" + ], + "1296": [ + "go.activengage.com" + ], + "1298": [ + "in.bubblestat.com" + ], + "1299": [ + "advertstream.com", + "sspcash.com" + ], + "1300": [ + "free-pagerank.com" + ], + "1301": [ + "atoomic.com" + ], + "1304": [ + "adclickmedia.com" + ], + "1307": [ + "eulerian.net" + ], + "1310": [ + "vdopia.com" + ], + "1311": [ + "hitsprocessor.com" + ], + "1313": [ + "mkt912.com", + "mkt922.com", + "mkt51.net", + "mkt941.com" + ], + "1314": [ + "sa-as.com" + ], + "1316": [ + "store.intercom.io", + "app.intercom.com", + "app.intercom.io", + "blog.intercom.io", + "docs.intercom.io", + "intercom.com\n" + ], + "1317": [ + "ad.adnetwork.net" + ], + "1318": [ + "cxense.com" + ], + "1320": [ + "mongoosemetrics.com" + ], + "1321": [ + "tracking.feedperfect.com" + ], + "1323": [ + "avantlink.com" + ], + "1324": [ + "adfeedstrk.com", + "adcde.com", + "addlvr.com", + "adtrgt.com", + "bannertgt.com", + "cptgt.com", + "cpvfeed.com", + "cpvtgt.com", + "mygeek.com", + "popcde.com", + "sdfje.com", + "urtbk.com" + ], + "1326": [ + "appmetrx.com" + ], + "1327": [ + "analytics.clickdimensions.com" + ], + "1328": [ + "merchantadvantage.com" + ], + "1329": [ + "instantservice.com" + ], + "1331": [ + "ts.istrack.com" + ], + "1332": [ + "vdna-assets.com" + ], + "1335": [ + "pages05.net", + "pages02.net", + "pages01.net" + ], + "1340": [ + "collserve.com" + ], + "1342": [ + "convertglobal.com" + ], + "1343": [ + "convertglobal.s3.amazonaws.com" + ], + "1344": [ + "reporting.singlefeed.com" + ], + "1345": [ + "coremotives.com" + ], + "1346": [ + "webstats.motigo.com" + ], + "1347": [ + "ad.yieldlab.net" + ], + "1348": [ + "adserve.shopzilla.com" + ], + "1349": [ + "ads.adverline.com", + "ads2.adverline.com", + "surinter.net", + "adnext.fr" + ], + "1351": [ + "engineseeker.com" + ], + "1352": [ + "ratevoice.com" + ], + "1353": [ + "etrigue.com" + ], + "1354": [ + "dn3y71tq7jf07.cloudfront.net" + ], + "1356": [ + "ads.intergi.com" + ], + "1357": [ + "clickmanage.com" + ], + "1358": [ + "nextstat.com" + ], + "1359": [ + "tealium.hs.llnwd.net", + "tiqcdn.com", + "tealiumiq.com" + ], + "1360": [ + "netmining.com" + ], + "1361": [ + "contentwidgets.net" + ], + "1362": [ + "evolvemediametrics.com" + ], + "1365": [ + "clickwinks.com" + ], + "1367": [ + "turnto.com" + ], + "1368": [ + "cbproads.com" + ], + "1369": [ + "activemeter.com" + ], + "1370": [ + "wowanalytics.co.uk" + ], + "1371": [ + "dnhgz729v27ca.cloudfront.net" + ], + "1372": [ + "afdads.com", + "addelive.com", + "delivery47.com" + ], + "1373": [ + "popads.net" + ], + "1374": [ + "popadscdn.net" + ], + "1375": [ + "run.admost.com" + ], + "1378": [ + "branica.com" + ], + "1380": [ + "buzzparadise.com" + ], + "1381": [ + "builder.extensionfactory.com" + ], + "1382": [ + "contactatonce.com" + ], + "1383": [ + "simply.com" + ], + "1385": [ + "sociomantic.com" + ], + "1386": [ + "ad.reklamport.com" + ], + "1387": [ + "hotwords.es" + ], + "1392": [ + "inspectlet.com" + ], + "1396": [ + "e-kolay.net" + ], + "1397": [ + "adcloud.net" + ], + "1398": [ + "ad.clovenetwork.com", + "ads.clovenetwork.com" + ], + "1399": [ + "gostats.com" + ], + "1402": [ + "sedotracker.com" + ], + "1403": [ + "nedstatbasic.net" + ], + "1407": [ + "delivery.reklamz.com" + ], + "1408": [ + "sitescout.com" + ], + "1409": [ + "adnetwork.vn", + "adnetwork.net.vn" + ], + "1410": [ + "admicro.vn" + ], + "1413": [ + "ad.globe7.com" + ], + "1414": [ + "ad.globaltakeoff.net" + ], + "1415": [ + "ad.media-servers.net" + ], + "1416": [ + "aweber.com" + ], + "1418": [ + "thewheelof.com" + ], + "1421": [ + "onlinewebstat.com", + "onlinewebstats.com" + ], + "1422": [ + "adspirit.de", + "adspirit.net" + ], + "1424": [ + "virgul.com" + ], + "1425": [ + "adpersia.com" + ], + "1426": [ + "media.gsimedia.net" + ], + "1430": [ + "ads.jinkads.com" + ], + "1433": [ + "segments.adap.tv" + ], + "1436": [ + "js.bigdoor.com" + ], + "1439": [ + "apmebf.com" + ], + "1446": [ + "reklamstore.com" + ], + "1448": [ + "ad.tlvmedia.com", + "ads.tlvmedia.com", + "tag.tlvmedia.com" + ], + "1450": [ + "ambientplatform.vn" + ], + "1452": [ + "twyn.com" + ], + "1453": [ + "ads.adwitserver.com" + ], + "1454": [ + "adinsight.eu", + "adinsight.com", + "responsetap.com" + ], + "1455": [ + "ad.bnmla.com" + ], + "1457": [ + "xplosion.de" + ], + "1459": [ + "heias.com" + ], + "1460": [ + "ad.360yield.com" + ], + "1464": [ + "revenuemax.de" + ], + "1467": [ + "merchenta.com" + ], + "1470": [ + "struq.com" + ], + "1473": [ + "mycounter.ua", + "mycounter.com.ua" + ], + "1474": [ + "hit.clickaider.com" + ], + "1475": [ + "wysistat.com" + ], + "1476": [ + "xg4ken.com" + ], + "1477": [ + "adaction.se", + "de17a.com" + ], + "1479": [ + "ant.conversive.nl" + ], + "1480": [ + "ads.creative-serving.com", + "p161.net" + ], + "1481": [ + "ads.albawaba.com" + ], + "1482": [ + "adserverpub.com" + ], + "1486": [ + "trackedlink.net" + ], + "1488": [ + "roi.vertical-leap.co.uk" + ], + "1489": [ + "mm.admob.com", + "mmv.admob.com", + "p.admob.com", + "a.admob.com" + ], + "1494": [ + "adn.fusionads.net" + ], + "1495": [ + "audienceiq.com", + "techlightenment.com" + ], + "1498": [ + "go.sonobi.com", + "ads.sonobi.com" + ], + "1499": [ + "intermarkets.net" + ], + "1501": [ + "webprospector.de" + ], + "1502": [ + "apps.facebook.com" + ], + "1503": [ + "kau.li" + ], + "1504": [ + "adingo.jp", + "cosmi.io" + ], + "1507": [ + "admailtiser.com" + ], + "1509": [ + "blog.parsely.com" + ], + "1512": [ + "clickbooth.com", + "adtoll.com" + ], + "1513": [ + "clickboothlnk.com" + ], + "1515": [ + "sextracker.com" + ], + "1516": [ + "adingo.jp.eimg.jp" + ], + "1517": [ + "ov.yahoo.co.jp" + ], + "1518": [ + "omgpm.com" + ], + "1523": [ + "valuedopinions.co.uk" + ], + "1525": [ + "blogbang.com" + ], + "1526": [ + "segment.com", + "segment.io", + "d2dq2ahtl5zl1z.cloudfront.net", + "d47xnnr8b1rki.cloudfront.net" + ], + "1529": [ + "adk2.com", + "cdn.adsrvmedia.com", + "cdn.cdnrl.com" + ], + "1531": [ + "ads.saymedia.com" + ], + "1536": [ + "liverail.com" + ], + "1537": [ + "innity.com", + "innity.net" + ], + "1540": [ + "adlooxtracking.com" + ], + "1545": [ + "tracking.quisma.com", + "qservz.com" + ], + "1546": [ + "bbelements.com", + "bbmedia.cz", + "mediainter.net" + ], + "1549": [ + "www.is1.clixgalore.com" + ], + "1550": [ + "sdscdn.userreport.com", + "sdsbucket.s3.amazonaws.com" + ], + "1551": [ + "taboolasyndication.com", + "taboola.com" + ], + "1553": [ + "am10.ru", + "am15.net" + ], + "1555": [ + "ad6media.fr", + "ad6media.es", + "ad6media.co.uk", + "ad6media.com" + ], + "1556": [ + "counter.goingup.com" + ], + "1558": [ + "adhese.net", + "adhese.com", + "adhese.be" + ], + "1562": [ + "ad.adverteerdirect.nl" + ], + "1563": [ + "partner-ads.com" + ], + "1564": [ + "openadex.dk" + ], + "1566": [ + "ad.advantagemedia.dk" + ], + "1567": [ + "online.adservicemedia.dk" + ], + "1569": [ + "euroads.no", + "euroads.dk", + "euroads.fi" + ], + "1572": [ + "ctpsnet.com", + "ctnsnet.com" + ], + "1573": [ + "ads.targetix.net" + ], + "1575": [ + "brand-server.com" + ], + "1577": [ + "ad.yieldmanager.net" + ], + "1580": [ + "amazon-adsystem.com" + ], + "1583": [ + "spotxchange.com" + ], + "1584": [ + "gwa.reedbusiness.net" + ], + "1585": [ + "du8783wkf05yr.cloudfront.net" + ], + "1586": [ + "affiliate.godaddy.com" + ], + "1587": [ + "gamerdna.com" + ], + "1589": [ + "reviews.bazaarvoice.com", + "ugc.bazaarvoice.com" + ], + "1591": [ + "batanga.com" + ], + "1593": [ + "impresionesweb.com" + ], + "1594": [ + "ad.harrenmedianetwork.com", + "ads.networkhm.com" + ], + "1599": [ + "i.total-media.net" + ], + "1601": [ + "revolvermaps.com" + ], + "1602": [ + "bizsolutions.strands.com" + ], + "1603": [ + "d15qhc0lu1ghnk.cloudfront.net" + ], + "1604": [ + "errorception.com" + ], + "1605": [ + "sail-horizon.com", + "cdn.sailthru.com" + ], + "1606": [ + "moon-ray.com" + ], + "1608": [ + "enectoanalytics.com", + "trk.enecto.com" + ], + "1610": [ + "creatives.livejasmin.com", + "awempire.com" + ], + "1611": [ + "medleyads.com" + ], + "1612": [ + "btg.mtvnservices.com" + ], + "1617": [ + "cnt.sup.com" + ], + "1619": [ + "tbn.ru" + ], + "1621": [ + "ebz.io", + "ebuzzing.com", + "beead.net", + "beead.fr", + "beead.co.uk" + ], + "1622": [ + "adorika.com", + "adorika.net" + ], + "1623": [ + "ligatus.com", + "ligatus.de" + ], + "1624": [ + "adtlgc.com" + ], + "1625": [ + "admp.sanoma.fi", + "analytics.sanoma.fi" + ], + "1626": [ + "whoson.com" + ], + "1627": [ + "addyon.com" + ], + "1628": [ + "adsearch.adkontekst.pl" + ], + "1629": [ + "adoperator.com" + ], + "1630": [ + "adtaily.com", + "adtaily.pl" + ], + "1631": [ + "track.adtraction.com" + ], + "1632": [ + "awin1.com", + "perfb.com" + ], + "1633": [ + "ads.elementodigital.org" + ], + "1634": [ + "cpmprofit.com" + ], + "1635": [ + "double.net" + ], + "1636": [ + "eadv.it" + ], + "1637": [ + "arubamediamarketing.it", + "ammadv.it" + ], + "1638": [ + "etargetnet.com" + ], + "1639": [ + "kavijaseuranta.fi" + ], + "1640": [ + "juiceadv.com" + ], + "1641": [ + "adcastplus.net" + ], + "1642": [ + "leiki.com" + ], + "1643": [ + "stat.mystat.hu" + ], + "1644": [ + "neodatagroup.com" + ], + "1645": [ + "netaffiliation.com", + "metaffiliation.com" + ], + "1646": [ + "payclick.it" + ], + "1647": [ + "pirchio.com" + ], + "1648": [ + "pubdirecte.com" + ], + "1649": [ + "publicidad.net" + ], + "1650": [ + "easyresearch.se" + ], + "1651": [ + "smartcontext.pl" + ], + "1652": [ + "hit.stat24.com" + ], + "1654": [ + "userneeds.dk" + ], + "1657": [ + "verticalnetwork.de" + ], + "1659": [ + "adrolays.de" + ], + "1660": [ + "unister-adservices.com" + ], + "1661": [ + "analytics.unister-gmbh.de" + ], + "1662": [ + "sublimemedia.net" + ], + "1663": [ + "adserver.freenet.de" + ], + "1665": [ + "ads.foodieblogroll.com", + "widget.foodieblogroll.com" + ], + "1666": [ + "track.digitalriver.com", + "directtrack.com", + "onenetworkdirect.net" + ], + "1670": [ + "wigetmedia.com", + "3c45d848d99.se" + ], + "1671": [ + "widget.dihitt.com.br" + ], + "1672": [ + "adsremote.scrippsnetworks.com" + ], + "1683": [ + "counter.personyze.com" + ], + "1684": [ + "jump-time.net", + "jumptime.com" + ], + "1685": [ + "reson8.com" + ], + "1686": [ + "connect.ok.ru" + ], + "1687": [ + "affiliatelounge.com" + ], + "1688": [ + "adman.gr" + ], + "1689": [ + "adman.in.gr" + ], + "1690": [ + "ads.admarvel.com", + "admarvel.s3.amazonaws.com" + ], + "1692": [ + "qwobl.net" + ], + "1693": [ + "api.apptap.com", + "widget.apptap.com" + ], + "1695": [ + "shop2market.com" + ], + "1696": [ + "hlserve.com" + ], + "1697": [ + "insight.torbit.com" + ], + "1698": [ + "sslt.tellapart.com", + "t.tellapart.com" + ], + "1699": [ + "ads.avazu.net" + ], + "1700": [ + "richmetrics.com", + "d3q6px0y2suh5n.cloudfront.net", + "rich-agent.s3.amazonaws.com" + ], + "1701": [ + "image.providesupport.com", + "secure.providesupport.com" + ], + "1703": [ + "engine.influads.com" + ], + "1705": [ + "liveagentforsalesforce.com", + "salesforceliveagent.com" + ], + "1706": [ + "hypeads.org" + ], + "1707": [ + "clkads.com", + "clkrev.com", + "clkmon.com" + ], + "1708": [ + "adzerk.net" + ], + "1709": [ + "embed.spotify.com" + ], + "1711": [ + "pixfuture.net" + ], + "1715": [ + "trafficjunky.net" + ], + "1717": [ + "sexad.net" + ], + "1722": [ + "clarityray.com", + "djers.com", + "dutrus.com", + "eurts.com", + "fanefo.com", + "hfunt.com", + "hfutz.com", + "hinsm.com", + "japum.com", + "jhame.com", + "jyaby.com", + "jyawd.com", + "kwobj.com", + "kyarm.com", + "lbein.com", + "ocyss.com", + "orpae.com", + "owpas.com", + "psyng.com", + "pturt.com", + "wredint.com" + ], + "1724": [ + "predictiveintent.com" + ], + "1727": [ + "hiconversion.com" + ], + "1728": [ + "traffichaus.com" + ], + "1732": [ + "brandreachsys.com" + ], + "1735": [ + "ghmedia.com" + ], + "1737": [ + "po.st" + ], + "1740": [ + "yldbt.com", + "yb0t.com" + ], + "1742": [ + "mvb.me" + ], + "1743": [ + "jetpackdigital.com" + ], + "1744": [ + "ads.referlocal.com" + ], + "1745": [ + "buzzdeck.com" + ], + "1746": [ + "ppjol.net", + "ppjol.com" + ], + "1747": [ + "komoona.com" + ], + "1751": [ + "geoplugin.net" + ], + "1754": [ + "analytics.performable.com" + ], + "1757": [ + "scr.kliksaya.com" + ], + "1759": [ + "geovisite.com" + ], + "1761": [ + "goodadvert.ru" + ], + "1766": [ + "myroitracking.com" + ], + "1767": [ + "t.webtracker.jp" + ], + "1769": [ + "widgets.getglue.com" + ], + "1776": [ + "featurelink.com" + ], + "1778": [ + "scout.scoutanalytics.net" + ], + "1780": [ + "apex-ad.com" + ], + "1785": [ + "directadvert.ru" + ], + "1787": [ + "adnetwork.pro" + ], + "1792": [ + "data.publishflow.com" + ], + "1794": [ + "magnetisemedia.com" + ], + "1799": [ + "adnet.vn" + ], + "1801": [ + "m2pub.com", + "adsmarket.com" + ], + "1803": [ + "inviziads.com" + ], + "1805": [ + "adcash.com" + ], + "1806": [ + "pswec.com" + ], + "1808": [ + "vmmpxl.com" + ], + "1810": [ + "npario-inc.net" + ], + "1812": [ + "nrelate.com" + ], + "1814": [ + "rd.clickshift.com" + ], + "1815": [ + "beacons.hottraffic.nl" + ], + "1816": [ + "bannerconnect.net" + ], + "1817": [ + "msgapp.com" + ], + "1818": [ + "nytimes.com" + ], + "1819": [ + "app.salecycle.com", + "d16fk4ms6rqz1v.cloudfront.net" + ], + "1821": [ + "plugrush.com" + ], + "1824": [ + "adverticum.net" + ], + "1825": [ + "creafi-online-media.com" + ], + "1826": [ + "ctnetwork.hu" + ], + "1827": [ + "fruitflan.com", + "adflan.com" + ], + "1828": [ + "mconet.biz" + ], + "1829": [ + "simpleadserver.net", + "simpleadserver.org" + ], + "1834": [ + "rtb.strikead.com" + ], + "1835": [ + "toolbar.cdn.gigya.com" + ], + "1836": [ + "visitortracklog.com" + ], + "1839": [ + "tracker.euroweb.net" + ], + "1841": [ + "contentabc.com" + ], + "1842": [ + "ads.mofos.com" + ], + "1845": [ + "lfstmedia.com" + ], + "1847": [ + "adnetinteractive.com", + "adnetinteractive.net" + ], + "1848": [ + "adotube.com" + ], + "1849": [ + "yabuka.com" + ], + "1851": [ + "copacet.com" + ], + "1852": [ + "flagcounter.com" + ], + "1853": [ + "typekit.net", + "typekit.com" + ], + "1854": [ + "kontactor.com" + ], + "1855": [ + "analytics.yola.net", + "pixel.yola.net" + ], + "1856": [ + "evisitanalyst.com", + "evisitcs.com", + "websiteperform.com" + ], + "1858": [ + "ads.adpv.com" + ], + "1860": [ + "rsspump.com" + ], + "1861": [ + "socialannex.com" + ], + "1862": [ + "dssja7qsifeak.cloudfront.net", + "tracking100.com" + ], + "1864": [ + "api.toptenreviews.com", + "servebom.com" + ], + "1865": [ + "kavanga.ru" + ], + "1866": [ + "luxup.ru", + "adlabs.ru", + "mixmarket.biz" + ], + "1870": [ + "b2bvideo.ru" + ], + "1872": [ + "audiencefuel.com" + ], + "1874": [ + "buzzbytes.net" + ], + "1878": [ + "rtbidder.net" + ], + "1880": [ + "openxenterprise.com", + "odnxs.net", + "servedbyopenx.com" + ], + "1881": [ + "affinity.com" + ], + "1884": [ + "sekindo.com" + ], + "1887": [ + "refinedads.com" + ], + "1889": [ + "tapad.com" + ], + "1892": [ + "choicestream.com" + ], + "1894": [ + "adsummos.net" + ], + "1895": [ + "mpn-analytics.mokonocdn.com", + "analytics.mpn.mokonocdn.com" + ], + "1896": [ + "teljari.is" + ], + "1897": [ + "banzaiadv.it" + ], + "1898": [ + "i2idata.com", + "i2i.jp" + ], + "1899": [ + "accesstrade.net" + ], + "1900": [ + "polyad.net" + ], + "1901": [ + "51.la" + ], + "1902": [ + "webads.nl" + ], + "1906": [ + "emjcd.com" + ], + "1907": [ + "rsys4.net" + ], + "1914": [ + "impact-ad.jp" + ], + "1916": [ + "webtraffic.se", + "webtraffic.no" + ], + "1921": [ + "content.ad" + ], + "1923": [ + "simplereach.com", + "d8rk54i4mohrb.cloudfront.net" + ], + "1929": [ + "adaos-ads.net" + ], + "1931": [ + "semasio.net" + ], + "1934": [ + "rvty.net" + ], + "1936": [ + "affimax.de" + ], + "1938": [ + "redintelligence.net" + ], + "1941": [ + "alenty.com" + ], + "1943": [ + "way2traffic.com" + ], + "1944": [ + "supercounters.com" + ], + "1945": [ + "wikia-beacon.com" + ], + "1947": [ + "12mlbe.com" + ], + "1949": [ + "analytics.brightedge.com" + ], + "1951": [ + "254a.com" + ], + "1952": [ + "watch.teroti.com" + ], + "1953": [ + "webeffective.keynote.com" + ], + "1956": [ + "andomedia.com", + "tritondigital.com" + ], + "1958": [ + "fhserve.com" + ], + "1960": [ + "webspectator.com", + "powermarketing.com", + "realtime.co" + ], + "1962": [ + "c-on-text.com" + ], + "1966": [ + "adsbyisocket.com", + "isocket.com" + ], + "1970": [ + "lengow.com" + ], + "1972": [ + "iadvize.com" + ], + "1980": [ + "edge.jeetyetmedia.com" + ], + "1981": [ + "gooo.al", + "gooal.herokuapp.com" + ], + "1983": [ + "userzoom.com" + ], + "1984": [ + "getsmartcontent.com" + ], + "1986": [ + "webhelpje.nl", + "webhelpje.be" + ], + "1989": [ + "prismamediadigital.com" + ], + "1990": [ + "s.mousetrace.com" + ], + "1993": [ + "ads.crakmedia.com", + "craktraffic.com" + ], + "1995": [ + "akavita.com" + ], + "1996": [ + "adswizz.com" + ], + "1997": [ + "adhitzads.com" + ], + "1998": [ + "videoclick.ru", + "videoclik.ru" + ], + "2001": [ + "adnwb.ru", + "adonweb.ru", + "actionpay.ru" + ], + "2003": [ + "rutarget.ru" + ], + "2005": [ + "dpmsrv.com" + ], + "2007": [ + "adgent007.com", + "ads.shorttail.net" + ], + "2011": [ + "iogous.com" + ], + "2013": [ + "tracer.jp" + ], + "2016": [ + "eclick.vn" + ], + "2018": [ + "ad360.vn" + ], + "2020": [ + "vietad.vn" + ], + "2023": [ + "admaxserver.com" + ], + "2025": [ + "allyes.com" + ], + "2027": [ + "mmstat.com", + "caanalytics.com" + ], + "2030": [ + "adsame.com" + ], + "2032": [ + "tanx.com" + ], + "2034": [ + "mediav.com" + ], + "2036": [ + "4dsply.com", + "trklnks.com", + "cdn.engine.adsupply.com" + ], + "2038": [ + "revenuemantra.com" + ], + "2041": [ + "icstats.nl" + ], + "2042": [ + "ozonemedia.com" + ], + "2043": [ + "acuityplatform.com" + ], + "2045": [ + "adxion.com" + ], + "2048": [ + "audit.median.hu" + ], + "2055": [ + "lomadee.com" + ], + "2057": [ + "chaordicsystems.com" + ], + "2063": [ + "adohana.com" + ], + "2065": [ + "dgmatix.com" + ], + "2067": [ + "admagnet.net", + "amimg.net" + ], + "2070": [ + "atomex.net" + ], + "2073": [ + "vizury.com" + ], + "2077": [ + "linkwithin.com" + ], + "2079": [ + "clickexperts.net" + ], + "2083": [ + "meaningtool.com" + ], + "2086": [ + "adfrontiers.com" + ], + "2088": [ + "ezakus.net" + ], + "2091": [ + "publicidees.com" + ], + "2095": [ + "piximedia.com" + ], + "2099": [ + "synovite-scripts.com", + "svtrd.com" + ], + "2100": [ + "semilo.com" + ], + "2102": [ + "mixpanel.com" + ], + "2103": [ + "s.shopify.com", + "stats.shopify.com" + ], + "2104": [ + "adclear.net" + ], + "2106": [ + "adtraxx.de" + ], + "2108": [ + "adyard.de" + ], + "2113": [ + "adru.net" + ], + "2115": [ + "medialand.ru", + "adnet.ru" + ], + "2117": [ + "mediagra.com" + ], + "2119": [ + "adgoto.com" + ], + "2122": [ + "adhands.ru" + ], + "2125": [ + "c8.net.ua" + ], + "2127": [ + "googletagmanager.com" + ], + "2130": [ + "stats.vertriebsassistent.de" + ], + "2131": [ + "martiniadnetwork.com" + ], + "2135": [ + "admaya.in" + ], + "2136": [ + "centraltag.com" + ], + "2138": [ + "weborama.fr", + "adrcdn.com", + "adrcntr.com" + ], + "2139": [ + "ad4mat.ar", + "ad4mat.at", + "ad4mat.be", + "ad4mat.bg", + "ad4mat.br", + "ad4mat.ch", + "ad4mat.co.uk", + "ad4mat.cz", + "ad4mat.de", + "ad4mat.dk", + "ad4mat.es", + "ad4mat.fi", + "ad4mat.fr", + "ad4mat.gr", + "ad4mat.hu", + "ad4mat.it", + "ad4mat.mx", + "ad4mat.net", + "ad4mat.nl", + "ad4mat.no", + "ad4mat.pl", + "ad4mat.ro", + "ad4mat.ru", + "ad4mat.se", + "ad4mat.tr" + ], + "2141": [ + "intelliad.com", + "intelliad.de" + ], + "2144": [ + "trafficbroker.com" + ], + "2149": [ + "adsymptotic.com" + ], + "2151": [ + "game-advertising-online.com" + ], + "2153": [ + "lduhtrp.net" + ], + "2156": [ + "connexity.net", + "cxt.ms" + ], + "2158": [ + "innovid.com" + ], + "2161": [ + "sokrati.com" + ], + "2165": [ + "infinity-tracking.net" + ], + "2168": [ + "yashi.com" + ], + "2170": [ + "unrulymedia.com" + ], + "2172": [ + "justrelevant.com" + ], + "2178": [ + "powerlinks.com" + ], + "2180": [ + "ipromote.com" + ], + "2182": [ + "gameleads.ru", + "cityads.ru" + ], + "2184": [ + "vidigital.ru" + ], + "2185": [ + "admitad.com" + ], + "2186": [ + "magna.ru" + ], + "2187": [ + "tr.webantenna.info" + ], + "2188": [ + "b2bcontext.ru" + ], + "2190": [ + "adeasy.ru" + ], + "2192": [ + "maxlab.ru" + ], + "2194": [ + "admulti.com" + ], + "2196": [ + "rmbn.ru" + ], + "2198": [ + "admaster.net" + ], + "2200": [ + "recreativ.ru" + ], + "2202": [ + "cnstats.ru" + ], + "2204": [ + "loveadvert.ru" + ], + "2208": [ + "rollad.ru" + ], + "2210": [ + "smartbn.ru" + ], + "2212": [ + "underclick.ru" + ], + "2217": [ + "trafficfactory.biz", + "adsbookie.com", + "advivi.com", + "dothads.com", + "promoserv.com", + "zeusclicks.com", + "yazcash.com", + "maist.jp", + "ad-move.jp" + ], + "2219": [ + "adagionet.com" + ], + "2221": [ + "vivistats.com" + ], + "2223": [ + "adnet.lt", + "adclick.lt" + ], + "2225": [ + "bepolite.eu" + ], + "2227": [ + "hit.ua" + ], + "2229": [ + "mystat-in.net" + ], + "2230": [ + "yldmgrimg.net" + ], + "2232": [ + "tyroodr.com", + "tyroodirect.com" + ], + "2235": [ + "r7ls.net", + "7eer.net", + "ojrq.net", + "evyy.net" + ], + "2237": [ + "inskinad.com", + "inskinmedia.com" + ], + "2239": [ + "adcito.com", + "adcitomedia.com" + ], + "2241": [ + "pubgears.com" + ], + "2244": [ + "igodigital.com" + ], + "2246": [ + "securedvisit.com" + ], + "2248": [ + "eyeota.net" + ], + "2250": [ + "hiiir.com" + ], + "2252": [ + "scupio.com" + ], + "2255": [ + "bloggerads.net" + ], + "2257": [ + "ad6.fr" + ], + "2258": [ + "respondhq.com" + ], + "2259": [ + "chinesean.com" + ], + "2260": [ + "888media.net" + ], + "2261": [ + "analytics-static.unister-gmbh.de" + ], + "2262": [ + "abccampaignaudit.co.uk", + "adlive.ie", + "ads-creativesyndicator.com", + "ads-littlestarmedia.co.uk", + "adseekmedia.com", + "adstheaa.com", + "bluefinmediaads.com", + "ctasnet.com", + "ctpsnet.com", + "enigmaadserver.com", + "heavyhearted.com" + ], + "2263": [ + "addesktop.com" + ], + "2264": [ + "iplogger.ru" + ], + "2265": [ + "jirafe.com" + ], + "2266": [ + "dimpact.co.il" + ], + "2268": [ + "px.dynamicyield.com" + ], + "2270": [ + "adland.co.il" + ], + "2273": [ + "tlm100.net", + "telemetryverification.net", + "telemetryaudit.com", + "telemetrytaxonomy.net" + ], + "2275": [ + "loggly.com" + ], + "2276": [ + "klikki.com" + ], + "2278": [ + "inpref.com" + ], + "2281": [ + "adtoma.com", + "adtomafusion.com" + ], + "2286": [ + "adplus.co.id" + ], + "2288": [ + "adstars.co.id" + ], + "2290": [ + "truehits.in.th", + "addoer.com" + ], + "2292": [ + "synergy-e.com" + ], + "2299": [ + "acc-hd.de" + ], + "2301": [ + "adnet.com.tr", + "medyanetads.com" + ], + "2304": [ + "adklik.com.tr" + ], + "2306": [ + "nanigans.com" + ], + "2308": [ + "iljmp.com" + ], + "2310": [ + "go.realvu.net" + ], + "2321": [ + "4wnet.com" + ], + "2322": [ + "adc-serv.net" + ], + "2324": [ + "shareth.ru", + "sharethrough.com" + ], + "2325": [ + "streampad.com" + ], + "2326": [ + "esendra.fi" + ], + "2331": [ + "quick-counter.net" + ], + "2332": [ + "api.contextly.com" + ], + "2333": [ + "inpref.s3.amazonaws.com", + "inpref.s3-external-3.amazonaws.com" + ], + "2334": [ + "adobetag.com" + ], + "2335": [ + "somastackads.com", + "switchadhub.com", + "adserver.manutd.com", + "ad.newsnow.net", + "ptdserver.com", + "sc.qsoft.co.uk", + "serve.m80marketing.com", + "simplytechnology.net", + "ads.solvedigital.net", + "switchafrica.com", + "switchads.com" + ], + "2336": [ + "affiliatefuture.com" + ], + "2337": [ + "leadforensics.com" + ], + "2338": [ + "fqtag.com", + "securepaths.com" + ], + "2340": [ + "ads.eniro.com" + ], + "2341": [ + "affiliator.com" + ], + "2342": [ + "swordfishdc.com" + ], + "2344": [ + "wamcash.com" + ], + "2346": [ + "aztecash.com" + ], + "2348": [ + "flagads.net" + ], + "2351": [ + "corp.kaltura.com", + "vcu.mediaspace.kaltura.com", + "edu.mediaspace.kaltura.com" + ], + "2352": [ + "adserving.ezanga.com" + ], + "2353": [ + "track.qcri.org" + ], + "2355": [ + "pglb.buzzfed.com" + ], + "2356": [ + "buzzbox.buzzfeed.com", + "ct.buzzfeed.com" + ], + "2357": [ + "promodity.appspot.com", + "promodity.com" + ], + "2358": [ + "connect.decknetwork.net" + ], + "2361": [ + "adrecord.com" + ], + "2362": [ + "buzzador.com" + ], + "2363": [ + "perfectaudience.com", + "prfct.co" + ], + "2364": [ + "stathat.com" + ], + "2365": [ + "luckyorange.com", + "livestatserver.com" + ], + "2367": [ + "aimatch.com" + ], + "2368": [ + "siteheart.com" + ], + "2370": [ + "trkme.net" + ], + "2371": [ + "brighteroption.com" + ], + "2372": [ + "conversion.buddymedia.com" + ], + "2373": [ + "awltovhc.com" + ], + "2374": [ + "postaffiliatepro.com" + ], + "2375": [ + "4stats.de" + ], + "2376": [ + "adnet.de", + "adnet.biz" + ], + "2377": [ + "usemax.de" + ], + "2380": [ + "websitealive.com" + ], + "2381": [ + "track.monitis.com" + ], + "2383": [ + "feedcat.net" + ], + "2384": [ + "hnbutton.appspot.com" + ], + "2385": [ + "switchads.com", + "w00tads.com", + "zetabbs.com", + "ads.racingpost.com", + "delivery.racingpost.com", + "racingpostads.com", + "emergedigital.com", + "sradserver.com", + "razoradserver.com", + "rcads71.net" + ], + "2386": [ + "livefyre.com", + "fyre.co" + ], + "2388": [ + "clickprotector.com" + ], + "2389": [ + "callmeasurement.com" + ], + "2390": [ + "analytics.leadlifesolutions.net" + ], + "2391": [ + "gamned.com", + "adbutter.net" + ], + "2392": [ + "advertlets.com" + ], + "2393": [ + "xtargeting.com", + "infinityads.com", + "adsrevenue.net", + "momentsharing.com", + "multipops.com", + "onlineadultadvertising.com", + "paypopup.com", + "popupxxx.com", + "xxxwebtraffic.com" + ], + "2394": [ + "count.rbc.ru" + ], + "2395": [ + "st.magnify.net" + ], + "2397": [ + "webstat.se" + ], + "2398": [ + "adfalcon.com" + ], + "2399": [ + "feedmeter.net", + "bloggurat.net", + "blogglisten.no", + "chart.dk", + "nope.dk", + "statcount.com", + "stealth.nl", + "bobum.nl", + "cnt.tyxo.bg", + "counter.search.bg", + "usuarios-online.com" + ], + "2400": [ + "susnet.nu", + "susnet.se", + "liczniki.org" + ], + "2402": [ + "poll.truehits.net", + "banner.truehits.net" + ], + "2403": [ + "clixsense.com" + ], + "2404": [ + "adisn.com" + ], + "2405": [ + "minewhat.com" + ], + "2406": [ + "m4n.nl" + ], + "2407": [ + "ds1.nl" + ], + "2408": [ + "affiliate4you.nl" + ], + "2410": [ + "tracking.bol.com" + ], + "2411": [ + "a8.net" + ], + "2412": [ + "valuecommerce.com" + ], + "2413": [ + "checkmystats.com.au" + ], + "2414": [ + "impactradius.com", + "d3cxv97fi8q177.cloudfront.net" + ], + "2415": [ + "dgm-au.com", + "s2d6.com" + ], + "2416": [ + "comm100.com", + "comm100.cn" + ], + "2417": [ + "chatwing.com" + ], + "2418": [ + "grt01.com", + "grt02.com" + ], + "2420": [ + "a.mobify.com" + ], + "2421": [ + "greystripe.com" + ], + "2422": [ + "mobsmith.com", + "nearbyad.com" + ], + "2423": [ + "mads.aol.com" + ], + "2424": [ + "moatads.com" + ], + "2425": [ + "tag.email-attitude.com" + ], + "2427": [ + "yoc-adserver.com" + ], + "2428": [ + "ads.netcommunities.com", + "ad.netcommunities.com" + ], + "2429": [ + "smartdevicemedia.com" + ], + "2430": [ + "d3s7ggfq1s6jlj.cloudfront.net" + ], + "2432": [ + "np.lexity.com" + ], + "2434": [ + "counter.megaindex.ru" + ], + "2436": [ + "bounceexchange.com" + ], + "2437": [ + "anametrix.net" + ], + "2440": [ + "directrev.com" + ], + "2441": [ + "addynamics.eu" + ], + "2442": [ + "adgenie.co.uk" + ], + "2443": [ + "go.affec.tv" + ], + "2444": [ + "ads.audience2media.com" + ], + "2445": [ + "dtzads.com" + ], + "2446": [ + "himediads.com", + "hi-mediaserver.com", + "adlink.net", + "himediadx.com" + ], + "2447": [ + "metrigo.com" + ], + "2448": [ + "markandmini.com" + ], + "2449": [ + "advansenow.com" + ], + "2450": [ + "erovinmo.com", + "linksmart.com" + ], + "2451": [ + "jumptap.com" + ], + "2452": [ + "fbshare.me", + "go2web20.net", + "ontoplist.com" + ], + "2453": [ + "nexage.com" + ], + "2454": [ + "bigmobileads.com" + ], + "2455": [ + "tynt.com" + ], + "2458": [ + "flux.com" + ], + "2459": [ + "massrelevance.com", + "tweetriver.com" + ], + "2460": [ + "mlnadvertising.com" + ], + "2464": [ + "i.n.jwpltx.com", + "s.jwpltx.com" + ], + "2465": [ + "betweendigital.com", + "intencysrv.com" + ], + "2466": [ + "qrius.me" + ], + "2467": [ + "castleridgemedia.com" + ], + "2469": [ + "phone-analytics.com" + ], + "2470": [ + "boo-box.com" + ], + "2471": [ + "email-reflex.com", + "ivimedia.net" + ], + "2475": [ + "apps.facebook.com" + ], + "2476": [ + "elicitapp.com" + ], + "2477": [ + "ideoclick.com" + ], + "2478": [ + "mm7.net", + "acxiom.com", + "acxiom-online.com" + ], + "2479": [ + "nanorep.com" + ], + "2480": [ + "tcimg.com" + ], + "2481": [ + "nodes.r66t.com" + ], + "2483": [ + "grepdata.com", + "d1lm7kd3bd3yo9.cloudfront.net" + ], + "2484": [ + "musculahq.appspot.com" + ], + "2486": [ + "ad.mail.ru" + ], + "2487": [ + "adinch.com" + ], + "2488": [ + "d3v27wwd40f0xu.cloudfront.net", + "getsidecar.com" + ], + "2489": [ + "kontextua.com" + ], + "2490": [ + "linkstorm.net" + ], + "2491": [ + "inferclick.com" + ], + "2492": [ + "scanscout.com" + ], + "2493": [ + "rpxnow.com", + "janrainbackplane.com" + ], + "2494": [ + "accmgr.com" + ], + "2495": [ + "adzhub.com" + ], + "2496": [ + "amxdt.com" + ], + "2497": [ + "eqads.com" + ], + "2498": [ + "eyeviewads.com" + ], + "2499": [ + "bm23.com" + ], + "2500": [ + "strangeloopnetworks.com" + ], + "2501": [ + "rtd.tubemogul.com", + "rtb.tubemogul.com" + ], + "2502": [ + "tentaculos.net" + ], + "2503": [ + "trw12.com", + "tuberewards.com" + ], + "2504": [ + "ads.audienceamplify.com" + ], + "2507": [ + "shoprunner.com" + ], + "2508": [ + "colbenson.es" + ], + "2510": [ + "pingdom.net" + ], + "2511": [ + "adsrpt.com", + "footar.com" + ], + "2512": [ + "postrelease.com" + ], + "2513": [ + "music-tags.com" + ], + "2514": [ + "vop.sundaysky.com" + ], + "2515": [ + "mxptint.net" + ], + "2517": [ + "qualtrics.com" + ], + "2520": [ + "jdn.monster.com" + ], + "2521": [ + "ads.rcs.it", + "bt.rcs.it" + ], + "2522": [ + "cookiereports.com" + ], + "2523": [ + "boldchat.com" + ], + "2525": [ + "userecho.com" + ], + "2526": [ + "troveread.com" + ], + "2527": [ + "segmint.net" + ], + "2528": [ + "beanstock.co" + ], + "2529": [ + "analytics.newsinc.com" + ], + "2531": [ + "pictela.net" + ], + "2532": [ + "modallogix.net" + ], + "2533": [ + "pubsqrd.com" + ], + "2534": [ + "vemba.com" + ], + "2536": [ + "api.pinterest.com" + ], + "2537": [ + "smarterremarketer.net" + ], + "2538": [ + "directavenue.com" + ], + "2539": [ + "veinteractive.com" + ], + "2540": [ + "dwin1.com" + ], + "2541": [ + "hotkeys.com" + ], + "2543": [ + "ist-track.com" + ], + "2544": [ + "resultspage.com" + ], + "2546": [ + "1phads.com", + "adexprt.com", + "adexprts.com", + "adshostnet.com", + "serve-sys.com" + ], + "2547": [ + "locayta.com" + ], + "2548": [ + "api.wipmania.com" + ], + "2549": [ + "liveclicker.net" + ], + "2550": [ + "confirmit.com" + ], + "2551": [ + "offers.paypal.com" + ], + "2552": [ + "avail.net" + ], + "2553": [ + "tracking.onefeed.co.uk" + ], + "2554": [ + "hellosociety.com" + ], + "2555": [ + "analytics.convertlanguage.com" + ], + "2556": [ + "pixel.solvemedia.com" + ], + "2557": [ + "a.siteapps.com", + "ae.siteapps.com" + ], + "2558": [ + "captifymedia.com" + ], + "2559": [ + "flite.com" + ], + "2560": [ + "rightaction.com" + ], + "2561": [ + "jobfeeds.coroflot.com" + ], + "2562": [ + "adshost1.com", + "adshost2.com", + "epom.com" + ], + "2563": [ + "yieldsquare.com" + ], + "2564": [ + "spider.ad" + ], + "2565": [ + "cpro.baidu.com", + "cbjs.baidu.com", + "hm.baidu.com" + ], + "2566": [ + "widget.weibo.com" + ], + "2568": [ + "sociablelabs.com" + ], + "2569": [ + "d3iwjrnl4m67rd.cloudfront.net", + "triplelift.com", + "3lift.com" + ], + "2570": [ + "agilone.com" + ], + "2571": [ + "bwp.cnet.com" + ], + "2572": [ + "easyads.bg" + ], + "2573": [ + "active-tracking.de", + "active-srv02.de" + ], + "2574": [ + "hits.informer.com", + "174.37.54.170", + "fc.webmasterpro.de", + "ziyu.net", + "uralweb.ru", + "hit-counts.com", + "ipcounter.de", + "ademails.com", + "aqtracker.com", + "mystat.pl", + "livecount.fr" + ], + "2575": [ + "nmcdn.us" + ], + "2576": [ + "privacy-policy.truste.com" + ], + "2578": [ + "lp4.io" + ], + "2579": [ + "freshplum.com" + ], + "2580": [ + "strcst.net" + ], + "2581": [ + "tagcommander.com", + "commander1.com" + ], + "2582": [ + "emailretargeting.com" + ], + "2583": [ + "ip-label.net" + ], + "2584": [ + "apiae.hopscore.com" + ], + "2585": [ + "ometria.com" + ], + "2586": [ + "api.flyertown.ca" + ], + "2587": [ + "wemfbox.ch" + ], + "2588": [ + "onswipe.com" + ], + "2589": [ + "madadsmedia.com" + ], + "2590": [ + "skinected.com" + ], + "2591": [ + "adyoulike.com", + "adyoulike.omnitagjs.com" + ], + "2593": [ + "api.umbel.com" + ], + "2594": [ + "atomz.com" + ], + "2595": [ + "adsdk.com" + ], + "2596": [ + "zdbb.net" + ], + "2597": [ + "aerisapi.com" + ], + "2598": [ + "virtusize.com" + ], + "2599": [ + "adextent.com" + ], + "2600": [ + "speakpipe.com" + ], + "2602": [ + "offerpoint.net" + ], + "2603": [ + "photorank.me" + ], + "2605": [ + "lite.piclens.com" + ], + "2606": [ + "go-mpulse.net", + "mpstat.us" + ], + "2607": [ + "e2ma.net" + ], + "2608": [ + "channeliq.com" + ], + "2610": [ + "brandmovers.net" + ], + "2611": [ + "egain.net" + ], + "2613": [ + "callrail.com" + ], + "2614": [ + "livechatinc.net", + "livechatinc.com", + "livechat.s3.amazonaws.com" + ], + "2616": [ + "d3aa0ztdn3oibi.cloudfront.net" + ], + "2617": [ + "salespidermedia.com" + ], + "2618": [ + "yotpo.com" + ], + "2619": [ + "brainsins.com", + "d2xkqxdy6ewr93.cloudfront.net" + ], + "2620": [ + "avenseo.com" + ], + "2621": [ + "netbooster.com", + "bbtrack.net" + ], + "2623": [ + "user-pulse.appspot.com" + ], + "2625": [ + "blockmetrics.com", + "pagefair.com", + "pagefair.net" + ], + "2626": [ + "clickcertain.com", + "remarketstats.com" + ], + "2627": [ + "passionfruitads.com" + ], + "2628": [ + "track.yieldsoftware.com", + "oc-track.autonomycloud.com" + ], + "2629": [ + "skysa.com" + ], + "2630": [ + "d2gfdmu30u15x7.cloudfront.net", + "tracelytics.com" + ], + "2632": [ + "cdn-cs.com" + ], + "2634": [ + "dtlilztwypawv.cloudfront.net", + "siftscience.com" + ], + "2635": [ + "fluidsurveys.com" + ], + "2636": [ + "pingagenow.com" + ], + "2637": [ + "sensic.net" + ], + "2638": [ + "consent.truste.com" + ], + "2639": [ + "monetize-me.com" + ], + "2640": [ + "adklip.com" + ], + "2641": [ + "tradelab.fr" + ], + "2642": [ + "media.net" + ], + "2643": [ + "atedra.com" + ], + "2644": [ + "trafficgate.net" + ], + "2645": [ + "ax.xrea.com" + ], + "2646": [ + "smaato.net" + ], + "2647": [ + "d36lvucg9kzous.cloudfront.net" + ], + "2648": [ + "adspynet.com" + ], + "2649": [ + "adframesrc.com" + ], + "2651": [ + "otclick-adv.ru" + ], + "2652": [ + "chatango.com" + ], + "2653": [ + "skyglue.com" + ], + "2654": [ + "connect.ekomi.de" + ], + "2655": [ + "aimediagroup.com" + ], + "2656": [ + "77tracking.com" + ], + "2657": [ + "scastnet.com" + ], + "2658": [ + "intentiq.com" + ], + "2661": [ + "splurgi.com", + "splurgy.com" + ], + "2662": [ + "hiro.tv" + ], + "2663": [ + "socialamp.com" + ], + "2664": [ + "lcxdigital.com" + ], + "2665": [ + "flxpxl.com" + ], + "2666": [ + "tracking.shopping-flux.com" + ], + "2667": [ + "tracker.beezup.com" + ], + "2668": [ + "d1af033869koo7.cloudfront.net" + ], + "2670": [ + "analytics.sitewit.com" + ], + "2671": [ + "beanstalkdata.com" + ], + "2672": [ + "opinionbar.com" + ], + "2673": [ + "sb.sellpoint.net" + ], + "2674": [ + "mogointeractive.com" + ], + "2675": [ + "d3qxef4rp70elm.cloudfront.net" + ], + "2677": [ + "worthathousandwords.com" + ], + "2678": [ + "exactag.com" + ], + "2679": [ + "stat.webtrack.biz" + ], + "2681": [ + "track.zappos.com" + ], + "2682": [ + "adverserve.net" + ], + "2684": [ + "natpal.com" + ], + "2685": [ + "co2stats.com" + ], + "2686": [ + "jivosite.com" + ], + "2687": [ + "clickandchat.com" + ], + "2691": [ + "adimpact.com" + ], + "2692": [ + "jivox.com" + ], + "2693": [ + "perfectmarket.com" + ], + "2694": [ + "speedshiftmedia.com" + ], + "2695": [ + "amobee.com" + ], + "2696": [ + "tkqlhce.com" + ], + "2697": [ + "anrdoezrs.net" + ], + "2698": [ + "netavenir.com" + ], + "2700": [ + "siena1.syn-api.com" + ], + "2701": [ + "reachjunction.com" + ], + "2702": [ + "hop.clickbank.net" + ], + "2703": [ + "sojern.com" + ], + "2704": [ + "conversionsondemand.com" + ], + "2705": [ + "provenpixel.com" + ], + "2706": [ + "mmadsgadget.com", + "qadabra.com", + "qadserve.com", + "qadservice.com" + ], + "2707": [ + "propellerads.com", + "propellerpops.com", + "onclickads.net", + "oclaserver.com" + ], + "2708": [ + "advancedtracker.appspot.com" + ], + "2710": [ + "webstat.com" + ], + "2711": [ + "sitetag.us", + "ad.sitemaji.com" + ], + "2712": [ + "admaxim.com" + ], + "2713": [ + "doogleonduty.com", + "clickreport.com" + ], + "2714": [ + "broadstreetads.com" + ], + "2715": [ + "ad2games.com" + ], + "2716": [ + "adsfactor.net" + ], + "2718": [ + "ad-srv.net" + ], + "2719": [ + "ics0.com" + ], + "2720": [ + "leitmotiv.de" + ], + "2722": [ + "analytics.conmio.com" + ], + "2723": [ + "ads.mocean.mobi", + "ads.moceanads.com" + ], + "2724": [ + "impr.superpages.com" + ], + "2728": [ + "display-img.g.atti.com" + ], + "2729": [ + "sepyra.com" + ], + "2730": [ + "googlesyndiscation.com", + "jquerys.org", + "jquery-framework.com", + "jquerye.com", + "jqueryc.com", + "juquery.com" + ], + "2732": [ + "ad.antventure.com", + "ad.adgile.com" + ], + "2733": [ + "ads.deliads.com" + ], + "2734": [ + "proximic.com" + ], + "2735": [ + "researchnow.com" + ], + "2736": [ + "d-msquared.com" + ], + "2738": [ + "anetwork.ir" + ], + "2739": [ + "api.iflychat.com" + ], + "2743": [ + "doublemax.net" + ], + "2744": [ + "getconversion.net" + ], + "2745": [ + "pixelinteractivemedia.com" + ], + "2746": [ + "performgroup.com" + ], + "2747": [ + "devatics.com" + ], + "2748": [ + "apptegic.com", + "evergage.com" + ], + "2749": [ + "de8of677fyt0b.cloudfront.net", + "eum-appdynamics.com" + ], + "2750": [ + "moontoast.com" + ], + "2751": [ + "adacado.com" + ], + "2752": [ + "orangeads.fr", + "c.orange.fr", + "iapref.orange.fr", + "gstat.orange.fr" + ], + "2755": [ + "v12groupinc.com" + ], + "2756": [ + "sessioncam.com", + "d2oh4tlt9mrke9.cloudfront.net" + ], + "2758": [ + "videoplaza.tv" + ], + "2759": [ + "adview.pl" + ], + "2760": [ + "gpm-digital.com" + ], + "2761": [ + "ads.aftonbladet.se" + ], + "2762": [ + "veeseo.com" + ], + "2763": [ + "vinsight.de" + ], + "2764": [ + "lanistaads.com" + ], + "2766": [ + "d3nslu0hdya83q.cloudfront.net" + ], + "2767": [ + "a-ads.com" + ], + "2768": [ + "adjal.com" + ], + "2769": [ + "envolve.com" + ], + "2785": [ + "app.hubspot.com" + ], + "2792": [ + "industrybrains.com" + ], + "2821": [ + "attadworks.turn.com" + ], + "2823": [ + "widget.breakingburner.com", + "our.glossip.nl" + ], + "2825": [ + "uadx.com" + ], + "2827": [ + "prnx.net" + ], + "2828": [ + "onscroll.com" + ], + "2829": [ + "dotandad.com" + ], + "2830": [ + "b.grabo.bg" + ], + "2831": [ + "w.usabilla.com" + ], + "2832": [ + "kmi-us.com", + "tnsinternet.be" + ], + "2835": [ + "dominocounter.net" + ], + "2836": [ + "i-mobile.co.jp" + ], + "2837": [ + "rotaban.ru" + ], + "2839": [ + "netminers.dk" + ], + "2840": [ + "data.econa.com" + ], + "2841": [ + "gravatar.com" + ], + "2843": [ + "adparlor.com", + "adparlour.com" + ], + "2844": [ + "dynad.net" + ], + "2845": [ + "getbarometer.s3.amazonaws.com" + ], + "2846": [ + "reformal.ru" + ], + "2847": [ + "yieldify.com" + ], + "2848": [ + "q1mediahydraplatform.com", + "ads.q1media.com" + ], + "2849": [ + "paperg.com" + ], + "2850": [ + "projectsunblock.com" + ], + "2851": [ + "d31bfnnwekbny6.cloudfront.net" + ], + "2852": [ + "soma2.de" + ], + "2853": [ + "dtkm4pd19nw6z.cloudfront.net" + ], + "2854": [ + "justpremium.com", + "justpremium.nl" + ], + "2855": [ + "dust.ipfingerprint.com" + ], + "2856": [ + "adtrustmedia.com" + ], + "2859": [ + "clickonometrics.pl" + ], + "2861": [ + "ibillboard.com", + "goadservices.com" + ], + "2862": [ + "net.e-viral.com" + ], + "2863": [ + "tapcommerce.com" + ], + "2866": [ + "search123.uk.com" + ], + "2867": [ + "wrating.com" + ], + "2868": [ + "fluidads.co" + ], + "2870": [ + "3gl.net" + ], + "2871": [ + "rs.epoq.de" + ], + "2872": [ + "econda-monitor.de" + ], + "2873": [ + "feedsportal.com" + ], + "2876": [ + "adstage-analytics.herokuapp.com" + ], + "2877": [ + "feedads.g.doubleclick.net" + ], + "2878": [ + "ads-digitalkeys.com" + ], + "2879": [ + "livechatnow.net", + "livechatnow.com" + ], + "2880": [ + "app.hubspot.com" + ], + "2881": [ + "crankyads.com" + ], + "2882": [ + "pub-fit.com" + ], + "2883": [ + "userdive.com" + ], + "2884": [ + "clickanalyzer.jp" + ], + "2885": [ + "taggyad.jp" + ], + "2886": [ + "track.affiliate-b.com" + ], + "2888": [ + "a-cast.jp" + ], + "2889": [ + "logly.co.jp" + ], + "2890": [ + "cd-ladsp-com.s3.amazonaws.com", + "ladsp.com", + "ladmp.com" + ], + "2891": [ + "behavioralengine.com" + ], + "2892": [ + "ro2.biz" + ], + "2893": [ + "coull.com" + ], + "2895": [ + "api.usercycle.com" + ], + "2896": [ + "purechat.com" + ], + "2897": [ + "yieldmo.com" + ], + "2898": [ + "slingpic.com" + ], + "2899": [ + "adfreestyle.pl" + ], + "2900": [ + "eco-tag.jp" + ], + "2903": [ + "plugin.reactful.com" + ], + "2904": [ + "media-clic.com" + ], + "2905": [ + "clicking.com.tw" + ], + "2906": [ + "blogad.com.tw" + ], + "2907": [ + "googletagservices.com" + ], + "2908": [ + "spn.ee" + ], + "2909": [ + "tinypass.com" + ], + "2910": [ + "yengo.com", + "adskeeper.co.uk", + "yengointernational.com" + ], + "2912": [ + "gittip.com" + ], + "2914": [ + "m8lab.it" + ], + "2915": [ + "adslot.com" + ], + "2916": [ + "bidswitch.net" + ], + "2917": [ + "fastclick.net" + ], + "2918": [ + "numbate.com", + "black-buck.net" + ], + "2920": [ + "effiliation.com" + ], + "2921": [ + "cyberwing.co.jp" + ], + "2922": [ + "mastertarget.ru" + ], + "2923": [ + "etgdta.com", + "odinkod.ru" + ], + "2924": [ + "hubrus.com" + ], + "2925": [ + "x.cnt.my" + ], + "2926": [ + "advaction.ru", + "aucourant.info", + "schetu.net" + ], + "2927": [ + "psyma.com" + ], + "2929": [ + "admixer.net" + ], + "2930": [ + "vntsm.com" + ], + "2931": [ + "res-x.com", + "certona.net" + ], + "2933": [ + "axf8.net" + ], + "2935": [ + "crossss.com" + ], + "2936": [ + "lead.adsender.us" + ], + "2937": [ + "trafmag.com" + ], + "2938": [ + "gdeslon.ru" + ], + "2939": [ + "livetex.ru" + ], + "2940": [ + "leadhit.ru" + ], + "2941": [ + "ohmystats.com" + ], + "2942": [ + "advombat.ru" + ], + "2943": [ + "contextbar.ru" + ], + "2946": [ + "goals.ar.gy" + ], + "2948": [ + "developermedia.com" + ], + "2949": [ + "tidbit.co.in" + ], + "2950": [ + "roimediadigital.com", + "yieldoptimisers.net", + "myswitchads.com", + "fendix.net", + "ireporterstvads.com", + "heavyhearted.com", + "capacitygrid.com" + ], + "2953": [ + "loader.engage.gsfn.us" + ], + "2954": [ + "sportsbetaffiliates.com.au" + ], + "2955": [ + "countby.com" + ], + "2956": [ + "zero.kz" + ], + "2957": [ + "ulogix.ru" + ], + "2960": [ + "granify.com", + "d2bw638ufki166.cloudfront.net" + ], + "2961": [ + "12mnkys.com" + ], + "2962": [ + "mpnrs.com" + ], + "2964": [ + "dmclick.cn" + ], + "2965": [ + "cts.tradepub.com", + "revresponse.com" + ], + "2967": [ + "creativecdn.com" + ], + "2968": [ + "mentad.com" + ], + "2969": [ + "mediapass.com" + ], + "2970": [ + "traforet.ru", + "traforet.com" + ], + "2971": [ + "newsanalytics.com.au" + ], + "2972": [ + "caspion.com" + ], + "2973": [ + "valuead.com" + ], + "2974": [ + "populis.com", + "populisengage.com" + ], + "2975": [ + "adperfect.com" + ], + "2976": [ + "coinurl.com" + ], + "2977": [ + "trgt.eu" + ], + "2978": [ + "webleads-tracker.com" + ], + "2980": [ + "data.flurry.com" + ], + "2981": [ + "applifier.com" + ], + "2982": [ + "kontagent.net" + ], + "2983": [ + "socialcash.com" + ], + "2984": [ + "irs09.com", + "acs86.com", + "csbew.com" + ], + "2985": [ + "admaster.com.cn", + "admasterapi.com" + ], + "2986": [ + "mlt01.com" + ], + "2987": [ + "omgts.cn" + ], + "2988": [ + "webterren.com" + ], + "2989": [ + "optaim.com" + ], + "2990": [ + "miaozhen.com" + ], + "2991": [ + "optimix.asia" + ], + "2993": [ + "meltdsp.com" + ], + "2994": [ + "widespace.com" + ], + "2995": [ + "reachforce.com", + "d12ulf131zb0yj.cloudfront.net" + ], + "2996": [ + "insightera.com" + ], + "2997": [ + "blog.getdrip.com", + "getdrip.com" + ], + "2998": [ + "ads.exactdrive.com" + ], + "2999": [ + "siterecruit.comscore.com" + ], + "3000": [ + "mrskincash.com" + ], + "3001": [ + "genesismedia.com" + ], + "3002": [ + "adgorithms.com" + ], + "3003": [ + "mobicow.com" + ], + "3004": [ + "readrboard.com" + ], + "3006": [ + "rumanalytics.com" + ], + "3007": [ + "clickigniter.io" + ], + "3008": [ + "metalyzer.com" + ], + "3009": [ + "cybermonitor.com" + ], + "3010": [ + "code.taggify.net" + ], + "3012": [ + "echoenabled.com" + ], + "3013": [ + "board-books.com" + ], + "3014": [ + "cpmterra.com" + ], + "3015": [ + "brow.si" + ], + "3016": [ + "tru.am" + ], + "3017": [ + "api.keen.io" + ], + "3018": [ + "clickmeter.com", + "9nl.com", + "9nl.be", + "9nl.eu", + "9nl.it", + "9nl.me" + ], + "3019": [ + "adespresso.com" + ], + "3020": [ + "visibility-stats.com" + ], + "3022": [ + "advolution.de" + ], + "3023": [ + "d1447tq2m68ekg.cloudfront.net" + ], + "3024": [ + "adsvc1107131.net" + ], + "3025": [ + "ringrevenue.com" + ], + "3026": [ + "ekmpinpoint.com" + ], + "3027": [ + "inside-graph.com" + ], + "3028": [ + "d1tprjo2w7krrh.cloudfront.net", + "create.leadid.com" + ], + "3029": [ + "kameleoon.com" + ], + "3031": [ + "adsby.breezeads.com" + ], + "3032": [ + "h12-media.com", + "h12-media.net" + ], + "3033": [ + "popcash.net" + ], + "3034": [ + "cpvadvertise.com" + ], + "3035": [ + "klixfeed.com" + ], + "3036": [ + "gloadmarket.com" + ], + "3038": [ + "tracking.vcommission.com" + ], + "3039": [ + "match.rundsp.com", + "runadtag.com" + ], + "3040": [ + "pixel.captora.com" + ], + "3041": [ + "ads.orange142.com" + ], + "3042": [ + "live2support.com" + ], + "3044": [ + "triggeredmail.appspot.com" + ], + "3045": [ + "valuepubmedia.com" + ], + "3046": [ + "green-red.com", + "gandrad.org" + ], + "3047": [ + "nplexmedia.com" + ], + "3048": [ + "my.blueadvertise.com" + ], + "3049": [ + "linkbucks.com" + ], + "3050": [ + "buzzcity.net" + ], + "3053": [ + "xertivemedia.com" + ], + "3055": [ + "cpmrocket.com" + ], + "3057": [ + "appssavvy.net" + ], + "3058": [ + "uts.ngdata.com" + ], + "3059": [ + "static.nirror.com" + ], + "3061": [ + "tracker.leadsius.com" + ], + "3062": [ + "ss.crowdprocess.com" + ], + "3063": [ + "tr.prospecteye.com" + ], + "3064": [ + "adbooth.com", + "adbooth.net" + ], + "3065": [ + "bet365affiliates.com", + "iasbetaffiliates.com" + ], + "3066": [ + "afcyhf.com" + ], + "3067": [ + "widgets.webengage.com" + ], + "3068": [ + "ad-sys.com" + ], + "3069": [ + "clickdesk.com" + ], + "3070": [ + "affiz.net" + ], + "3072": [ + "1sponsor.com" + ], + "3073": [ + "clicktripz.com" + ], + "3075": [ + "d29p64779x43zo.cloudfront.net", + "api.trak.io" + ], + "3076": [ + "iqnomy.com" + ], + "3077": [ + "teaser.cc" + ], + "3078": [ + "smaclick.com" + ], + "3079": [ + "share.pluso.ru" + ], + "3081": [ + "toroadvertising.com", + "toroadvertisingmedia.com" + ], + "3082": [ + "admarket.entireweb.com", + "affiliate.entireweb.com" + ], + "3083": [ + "widgets.kiosked.com" + ], + "3084": [ + "mooxar.com" + ], + "3086": [ + "readserver.net", + "adne.tv" + ], + "3087": [ + "widgets.sprinkletxt.com" + ], + "3089": [ + "blog.crazyegg.com", + "crazyegg.com" + ], + "3090": [ + "xref.io" + ], + "3093": [ + "skype.com" + ], + "3094": [ + "skype.com" + ], + "3096": [ + "qbaka.net" + ], + "3099": [ + "adservinginternational.com", + "adservinghost.com" + ], + "3100": [ + "teads.tv" + ], + "3101": [ + "st.top100.ru" + ], + "3103": [ + "puboclic.com" + ], + "3104": [ + "allotraffic.com" + ], + "3105": [ + "reactivpub.fr" + ], + "3106": [ + "affiliaweb.fr" + ], + "3108": [ + "ad-serverparc.nl" + ], + "3109": [ + "leady.com", + "leady.cz" + ], + "3110": [ + "e-generator.com" + ], + "3111": [ + "adsniper.ru" + ], + "3112": [ + "adhigh.net" + ], + "3113": [ + "datamind.ru" + ], + "3114": [ + "digitaltarget.ru" + ], + "3115": [ + "aitarget.ru" + ], + "3116": [ + "facetz.net" + ], + "3117": [ + "pay-hit.com" + ], + "3118": [ + "uptolike.com" + ], + "3119": [ + "advidi.com" + ], + "3122": [ + "adspdbl.com" + ], + "3123": [ + "aim4media.com" + ], + "3124": [ + "burt.io" + ], + "3125": [ + "thoughtleadr.com" + ], + "3126": [ + "yeabble.com" + ], + "3127": [ + "sub2tech.com" + ], + "3128": [ + "keywordsconnect.com" + ], + "3129": [ + "ad.about.co.kr", + "adcheck.about.co.kr" + ], + "3130": [ + "adv.imadrep.co.kr" + ], + "3131": [ + "cjmooter.xcache.kinxcdn.com" + ], + "3133": [ + "dianomi.com", + "dianomioffers.co.uk", + "d3von6il1wr7wo.cloudfront.net" + ], + "3134": [ + "livere.co.kr.cizion.ixcloud.net", + "livere.co.kr" + ], + "3135": [ + "us2widget.nimblecommerce.com", + "us3widget.nimblecommerce.com" + ], + "3136": [ + "autolinkmaker.itunes.apple.com" + ], + "3137": [ + "clickky.biz" + ], + "3138": [ + "appendad.com" + ], + "3139": [ + "viraladnetwork.net" + ], + "3140": [ + "adn.ebay.com" + ], + "3141": [ + "realclick.co.kr" + ], + "3142": [ + "widerplanet.com" + ], + "3143": [ + "linkprice.com" + ], + "3144": [ + "amoad.com" + ], + "3145": [ + "bypass.jp" + ], + "3146": [ + "ad-cloud.jp" + ], + "3147": [ + "socdm.com" + ], + "3148": [ + "ad-stir.com" + ], + "3149": [ + "moras.jp" + ], + "3150": [ + "intgr.net" + ], + "3151": [ + "plugins.mixi.jp" + ], + "3154": [ + "flexlinks.com", + "linkoffers.net" + ], + "3155": [ + "mousestats.com" + ], + "3157": [ + "micropoll.com" + ], + "3158": [ + "popin.cc" + ], + "3159": [ + "mobalyzer.net" + ], + "3160": [ + "yads.yahoo.com", + "ads.yahoo.com" + ], + "3161": [ + "ijento.com" + ], + "3162": [ + "supert.ag" + ], + "3163": [ + "optimahub.com" + ], + "3164": [ + "integral-marketing.com" + ], + "3165": [ + "aumago.com" + ], + "3166": [ + "ktcpxl.com" + ], + "3167": [ + "sonician.info" + ], + "3168": [ + "ping.answerbook.com" + ], + "3172": [ + "bizible.com" + ], + "3173": [ + "adsnative.com" + ], + "3175": [ + "id-visitors.com" + ], + "3176": [ + "embed.spokenlayer.com" + ], + "3177": [ + "adinsight.co.kr" + ], + "3178": [ + "ptengine.jp" + ], + "3179": [ + "adresult.jp", + "ad.vcm.jp" + ], + "3180": [ + "bannerplay.com" + ], + "3181": [ + "analytics.recruitics.com" + ], + "3182": [ + "cm.shareaholic.com" + ], + "3183": [ + "trustclick.ne.jp" + ], + "3184": [ + "tacticalrepublic.com" + ], + "3185": [ + "adizio.com" + ], + "3186": [ + "adcrowd.com" + ], + "3187": [ + "ad4max.com" + ], + "3188": [ + "adwebster.com" + ], + "3190": [ + "206solutions.com" + ], + "3191": [ + "yllix.com" + ], + "3192": [ + "say.ac" + ], + "3193": [ + "d3mvnvhjmkxpjz.cloudfront.net", + "api.usersnap.com" + ], + "3194": [ + "poponclick.com" + ], + "3195": [ + "fidelity-media.com" + ], + "3196": [ + "smartertrack.com" + ], + "3197": [ + "misterbell.com" + ], + "3198": [ + "arena.altitude-arena.com" + ], + "3199": [ + "srv.sayyac.net" + ], + "3200": [ + "video-loader.com" + ], + "3201": [ + "widget.kelkoo.com" + ], + "3202": [ + "heyos.com" + ], + "3203": [ + "ads.mopub.com" + ], + "3204": [ + "clickpoint.com", + "clickpoint.it" + ], + "3205": [ + "statsanalytics.com" + ], + "3206": [ + "trafficforce.com" + ], + "3207": [ + "adscience.nl" + ], + "3208": [ + "d2wy8f7a9ursnm.cloudfront.net" + ], + "3209": [ + "wisepops.com" + ], + "3211": [ + "nextclick.pl" + ], + "3212": [ + "ehavior.net" + ], + "3213": [ + "tracker.emailaptitude.com" + ], + "3214": [ + "propelad.com" + ], + "3215": [ + "refersion.com" + ], + "3216": [ + "agcdn.com" + ], + "3218": [ + "tailtarget.com" + ], + "3219": [ + "adsby.bidtheatre.com" + ], + "3220": [ + "api.petametrics.com", + "cdn.petametrics.com" + ], + "3222": [ + "m-pathy.com" + ], + "3224": [ + "d3uemyw1e5n0jw.cloudfront.net", + "ads.placester.net" + ], + "3225": [ + "trbo.com" + ], + "3226": [ + "hsoub.com" + ], + "3227": [ + "seal.digicert.com" + ], + "3228": [ + "seal.geotrust.com", + "smarticon.geotrust.com" + ], + "3229": [ + "seal.godaddy.com" + ], + "3230": [ + "polar.me", + "polarmobile.com" + ], + "3231": [ + "celtra.com" + ], + "3232": [ + "audtd.com" + ], + "3233": [ + "client.cobrowser.net" + ], + "3234": [ + "system.picreel.com" + ], + "3235": [ + "static.contactme.com", + "d1uwd25yvxu96k.cloudfront.net" + ], + "3236": [ + "scorecard.wspisp.net" + ], + "3237": [ + "leaddyno.com" + ], + "3239": [ + "viralmint.com" + ], + "3240": [ + "verticalscope.com" + ], + "3242": [ + "ads-xtreme.com" + ], + "3243": [ + "widget.hypercomments.com", + "w.hypercomments.com" + ], + "3244": [ + "mdotlabs.com" + ], + "3245": [ + "static.getkudos.me" + ], + "3247": [ + "data.redhelper.ru" + ], + "3251": [ + "d3m83gvgzupli.cloudfront.net", + "d28ethi6slcjbm.cloudfront.net", + "d13im3ek7neeqp.cloudfront.net", + "d2uevgmgh16uk4.cloudfront.net", + "saas.seewhy.com" + ], + "3252": [ + "mc.yandex.ru" + ], + "3253": [ + "rec.quartic.pl" + ], + "3254": [ + "web.localytics.com" + ], + "3257": [ + "hfp.gdmdigital.com" + ], + "3258": [ + "a2pub.com", + "curancience.com", + "interestably.com" + ], + "3261": [ + "dmp.theadex.com" + ], + "3262": [ + "js.adforgames.com" + ], + "3263": [ + "c.conversionlogic.net" + ], + "3264": [ + "asset.email-match.com", + "atout.email-match.com" + ], + "3265": [ + "mainadv.com" + ], + "3268": [ + "govmetric.com", + "servmetric.com" + ], + "3272": [ + "engine.adpushup.com" + ], + "3276": [ + "u.heatmap.it", + "l.heatmap.it" + ], + "3277": [ + "static-trackers.adtarget.me", + "trackers.adtarget.me" + ], + "3278": [ + "cedexis-radar.net" + ], + "3279": [ + "deqwas.net" + ], + "3282": [ + "tag.clrstm.com", + "track.clrstm.com", + "video.clrstm.com", + "view.clrstm.com" + ], + "3283": [ + "tbnadserver.com" + ], + "3284": [ + "ebis.ne.jp" + ], + "3285": [ + "madnet.ru" + ], + "3286": [ + "assets.helpful.io" + ], + "3288": [ + "g3nesis.com.br" + ], + "3291": [ + "dl1d2m8ri9v3j.cloudfront.net", + "d2zah9y47r7bi2.cloudfront.net", + "usage.trackjs.com" + ], + "3292": [ + "powerreviews.com" + ], + "3293": [ + "d1q7pknmpq2wkm.cloudfront.net" + ], + "3294": [ + "pl-engine.intextad.net" + ], + "3295": [ + "yoapp.s3.amazonaws.com" + ], + "3296": [ + "c.gumgum.com" + ], + "3297": [ + "api.amplitude.com", + "d24n15hnbwhuhn.cloudfront.net" + ], + "3299": [ + "sumome.com" + ], + "3301": [ + "tracking.rapidape.com" + ], + "3302": [ + "natoms.com" + ], + "3303": [ + "ip-tracker.org" + ], + "3304": [ + "intext.contextad.pl" + ], + "3308": [ + "adadyn.com" + ], + "3310": [ + "analytics.avanser.com.au" + ], + "3311": [ + "vxml4.delacon.com.au" + ], + "3312": [ + "dataxpand.script.ag" + ], + "3313": [ + "imedia.cz" + ], + "3314": [ + "im.cz" + ], + "3316": [ + "styria-digital.com" + ], + "3317": [ + "netbiscuits.net" + ], + "3318": [ + "images.sohu.com" + ], + "3319": [ + "spot.im" + ], + "3320": [ + "revcontent.com" + ], + "3321": [ + "cygnus.com" + ], + "3322": [ + "adshot.de" + ], + "3323": [ + "cdn.ywxi.net" + ], + "3324": [ + "pixel.wp.com" + ], + "3325": [ + "zwaar.net", + "zwaar.org" + ], + "3326": [ + "hotjar.com" + ], + "3327": [ + "quintrics.nl", + "sharecompany.nl" + ], + "3328": [ + "insitez.blob.core.windows.net" + ], + "3329": [ + "blog.crazyegg.com", + "crazyegg.com" + ], + "3331": [ + "incontext.pl" + ], + "3332": [ + "fusionads.net" + ], + "3333": [ + "launchbit.com" + ], + "3334": [ + "getrooster.com" + ], + "3335": [ + "adbox.lv" + ], + "3336": [ + "resmeter.respublica.al" + ], + "3337": [ + "vidible.tv" + ], + "3338": [ + "abtasty.com" + ], + "3340": [ + "bat.r.msn.com", + "bat.bing.com" + ], + "3341": [ + "trackuity.com" + ], + "3342": [ + "adtimaserver.vn" + ], + "3343": [ + "zaloapp.com" + ], + "3344": [ + "ants.vn", + "anthill.vn" + ], + "3345": [ + "d81mfvml8p5ml.cloudfront.net" + ], + "3348": [ + "outbanner.hu.co.kr" + ], + "3349": [ + "gumroad.com" + ], + "3350": [ + "genoo.com" + ], + "3351": [ + "mbn.com.ua" + ], + "3352": [ + "feedify.de" + ], + "3353": [ + "trustev.com" + ], + "3354": [ + "pulseinsights.com" + ], + "3355": [ + "nowinteract.com" + ], + "3356": [ + "reevoo.com" + ], + "3358": [ + "liqwid.net" + ], + "3359": [ + "zebra.pushbullet.com" + ], + "3360": [ + "adagio.turboadv.com" + ], + "3369": [ + "cdn.decibelinsight.net" + ], + "3373": [ + "tag.clrstm.com" + ], + "3374": [ + "track.clrstm.com" + ], + "3375": [ + "video.clrstm.com" + ], + "3376": [ + "view.clrstm.com" + ], + "3379": [ + "d3ezl4ajpp2zy8.cloudfront.net" + ], + "3390": [ + "rhythmxchange.com" + ], + "3398": [ + "6gpwkrxh.micpn.com" + ], + "3411": [ + "scan.botscanner.com" + ], + "3418": [ + "chrome.google.com/webstore*" + ], + "3421": [ + "content.webcollage.net" + ], + "3423": [ + "media.webcollage.net" + ], + "3427": [ + "imiclk.com", + "abmr.net" + ], + "3428": [ + "imiclk.com", + "abmr.net", + "designbloxlive.com" + ], + "3460": [ + "targetpsp.px.247inc.net" + ], + "3467": [ + "delivery.g.switchadhub.com" + ], + "3468": [ + "g.switchadhub.com" + ], + "3470": [ + "omni-acttag.elasticbeanstalk.com" + ], + "3476": [ + "intelligentpixel.modernimpact.com" + ], + "3480": [ + "h.switchadhub.com" + ], + "3483": [ + "freegeoip.net", + "ipinfodb.com", + "wieistmeineip.de", + "freehostedscripts.net" + ], + "3485": [ + "xiti" + ], + "3487": [ + "ad.vi-tag.net" + ], + "3488": [ + "vi-tag.net" + ], + "3508": [ + "foxy.sendigo.info" + ], + "3512": [ + "booking-widget.js" + ], + "3513": [ + "ignitionone.com" + ], + "3514": [ + "knotice.net" + ], + "3515": [ + "gateway.answerscloud.com" + ], + "3516": [ + "ct.pinterest.com" + ], + "3517": [ + "elasticbeanstalk.com" + ], + "3518": [ + "moatpixel.com" + ], + "3519": [ + "sa.jumptap.com" + ], + "3520": [ + "secure.quantserve.com" + ], + "3523": [ + "apps.nexus.bazaarvoice.com" + ], + "3528": [ + "t.mookie1.com" + ], + "3529": [ + "choices-or.truste.com" + ], + "3530": [ + "seal.websecurity.norton.com" + ], + "3531": [ + "pixel.mathtag.com" + ], + "3532": [ + "sync.mediamath.com" + ], + "3534": [ + "tagx.nytimes.com" + ], + "3541": [ + "cdn.loop11.com" + ], + "3542": [ + "secure.fastclick.net" + ], + "3543": [ + "georama.com" + ], + "3544": [ + "googletraveladservices.com" + ], + "3545": [ + "recv-wd.gridsumdissector.com" + ], + "3546": [ + "webdissector.com" + ], + "3547": [ + "fba.omniretailgroup.net" + ], + "3549": [ + "invodo.com" + ], + "3551": [ + "cookies.leadplace.fr" + ], + "3554": [ + "sync.rhythmxchange.com" + ], + "3555": [ + "pr-bh.ybp.yahoo.com" + ], + "3556": [ + "replaycontroller.4seeresults.com" + ], + "3559": [ + "cm.dpclk.com" + ], + "3560": [ + "isp.netscape.com" + ], + "3561": [ + "imageg.net" + ], + "3562": [ + "sra.s-9.us" + ], + "3564": [ + "relestar.com" + ], + "3565": [ + "cts.servesharp.net" + ], + "3566": [ + "ads.mediade.sk" + ], + "3567": [ + "s-passets.pinimg.com" + ], + "3568": [ + "apps.facebook.com" + ], + "3570": [ + "tcgtrkr.com" + ], + "3572": [ + "banner-rotation.com" + ], + "3573": [ + "webmasterplan.com" + ], + "3586": [ + "ads.supplyframe.com" + ], + "3589": [ + "soapbox.wistia.com" + ], + "3590": [ + "soapbox.wistia.com" + ], + "3591": [ + "soapbox.wistia.com" + ], + "3592": [ + "syndication.twitter.com" + ], + "3599": [ + "fake-entry_images.ads.supplyframe.com" + ], + "3600": [ + "js.leadinspector.de" + ], + "3603": [ + "cs.genieessp.jp" + ], + "3604": [ + "cs.genieesspv.jp" + ], + "3605": [ + "ad.sxp.smartclip.net" + ], + "3606": [ + "ads.stickyadstv.com" + ], + "3607": [ + "admaym.com" + ], + "3609": [ + "network.bazaarvoice.com" + ], + "3611": [ + "immanalytics.com" + ], + "3612": [ + "rel.webcollag.net" + ], + "3613": [ + "idcs.interclick.com" + ], + "3614": [ + "apiservices.krxd.net" + ], + "3615": [ + "beacon.krxd.net" + ], + "3616": [ + "cache.btrll.com" + ], + "3631": [ + "seal.verisign.com" + ], + "3632": [ + "trustsealinfo.websecurity.norton.com" + ], + "3634": [ + "sync.optimatic.com" + ], + "3637": [ + "p-eu.acxiom-online.com" + ], + "3654": [ + "secure.audienceinsights.net" + ], + "3655": [ + "mt.mediapostcommunication.net" + ], + "3656": [ + "p.crm4d.com" + ], + "3661": [ + "px.marchex.io" + ], + "3745": [ + "cbtb.clickbank.net" + ], + "3752": [ + "connect.onlinesuccess.nl" + ], + "3754": [ + "musculahq.appspot.com" + ], + "3763": [ + "optimized.by.tiller.co" + ], + "3765": [ + "app.getsentry.com" + ], + "3766": [ + "api.getsentry.com" + ], + "3772": [ + "api.adjs.net" + ], + "3773": [ + "cdn.adjs.net" + ], + "3795": [ + "embed.tawk.to" + ], + "3797": [ + "rt.analytics.anvato.net" + ], + "3799": [ + "calls.propelmarketing.com" + ], + "3800": [ + "responsive.propelmarketing.com" + ], + "3801": [ + "front.optimonk.com" + ], + "3806": [ + "vitrine.sup.com" + ], + "3814": [ + "admatic.com.tr" + ], + "3815": [ + "rtb.monarchads.com" + ], + "3819": [ + "code.tidio.co" + ], + "3820": [ + "link.p0.com" + ], + "3821": [ + "ir1s.mobi" + ], + "3822": [ + "t.motrixi.com" + ], + "3831": [ + "io.leadingreports.de" + ], + "3834": [ + "redir.bebi.com" + ], + "3838": [ + "players.brightcove.net" + ], + "3840": [ + "aka.spotxcdn.com" + ], + "3845": [ + "search.naver.com" + ], + "3853": [ + "cdns.canddi.com" + ], + "3854": [ + "i.canddi.com" + ], + "3855": [ + "cdn.bannersnack.com" + ], + "3856": [ + "pushengage.com" + ], + "3857": [ + "marketingautomation.services" + ], + "3864": [ + "cdn.spoutable.com" + ], + "3882": [ + "monetizer.snacktv.de" + ], + "3891": [ + "cm.adsafety.net" + ], + "3892": [ + "tags.adsafety.net" + ], + "3894": [ + "a5.ogt.jp" + ], + "3897": [ + "aax-eu.amazon-adsystem.com" + ], + "3907": [ + "cdn.callhunter.com" + ], + "3917": [ + "retargeter.com.br" + ], + "3923": [ + "ak.sascdn.com" + ], + "3924": [ + "advertserve.com" + ], + "3928": [ + "eclkspbn.com" + ], + "3929": [ + "wwwpromoter.com" + ], + "3930": [ + "Rdsa2013.com" + ], + "3931": [ + "cdn.earnify.com" + ], + "3933": [ + "filamentapp.s3.amazonaws.com" + ], + "3938": [ + "core.adprotected.com" + ], + "3945": [ + "admeo.ru" + ], + "3949": [ + "disc.host" + ], + "3950": [ + "dfp.host" + ], + "3951": [ + "uponit.com" + ], + "3953": [ + "nbc.switchadhub.com" + ], + "3956": [ + "advertising.mercadolivre.com.br" + ], + "3957": [ + "mercadoclics.com" + ], + "3960": [ + "analytics.mlstatic.com" + ], + "3962": [ + "app.hubspot.com" + ], + "3965": [ + "d.hodes.com" + ], + "3970": [ + "forms.hubspot.com" + ], + "3977": [ + "crossroadswow.appspot.com" + ], + "3990": [ + "counter.24log.ru" + ], + "3992": [ + "sync.im-apps.net" + ], + "3993": [ + "gocp.stroeermediabrands.de" + ], + "3996": [ + "metrics.spiderads.eu" + ], + "4000": [ + "d36mpcpuzc4ztk.cloudfront.net" + ], + "4004": [ + "in.treasuredata.com" + ], + "4008": [ + "us.flipp.com" + ], + "4016": [ + "cdn.atomex.net" + ], + "4017": [ + "datacdn.atomex.net" + ], + "4021": [ + "automation.webmecanik.com" + ], + "4022": [ + "mixpanel.com" + ], + "4024": [ + "adserver.adtech.de" + ], + "4028": [ + "player.ooyala.com" + ], + "4030": [ + "nytimes.com" + ], + "4031": [ + "na.ads.yahoo.com" + ], + "4033": [ + "d1z2jf7jlzjs58.cloudfront.net" + ], + "4035": [ + "cdn.jumplead.com" + ], + "4045": [ + "admanmedia.com" + ], + "4046": [ + "letreach.com" + ], + "4052": [ + "shink.in" + ], + "4055": [ + "adskeeper.co.uk" + ], + "4058": [ + "storify.com" + ], + "4070": [ + "gsn.chameleon.ad" + ], + "4073": [ + "ec-ns.sascdn.com" + ], + "4074": [ + "speed-trap.nl" + ], + "4087": [ + "ct.sddan.com" + ], + "4088": [ + "js.sddan.com" + ], + "4089": [ + "visitanalytics.userreport.com" + ], + "4091": [ + "adserving.ancoraplatform.com" + ], + "4092": [ + "mediaplex.com" + ], + "4093": [ + "valueclick.net" + ], + "4095": [ + "mmtro.com" + ], + "4109": [ + "cre.mixsina.com.cn" + ], + "4110": [ + "sina.com.cn" + ], + "4111": [ + "pof.com" + ], + "4115": [ + "pickytime.com" + ], + "4125": [ + "awaps.yandex.ru" + ], + "4130": [ + "edigitalsurvey.com" + ], + "4131": [ + "adtrack.king.com" + ], + "4134": [ + "securepubads.g.doubleclick.net" + ], + "4135": [ + "ad.doubleclick.net" + ], + "4137": [ + "a-comet.z-dn.net" + ], + "4146": [ + "tc.dataxpand.com" + ], + "4159": [ + "track.opicle.com" + ], + "4160": [ + "proadsnet.com" + ], + "4161": [ + "tracking.proformics.com" + ], + "4162": [ + "vuroll.in" + ], + "4163": [ + "optimedia.go2cloud.com" + ], + "4165": [ + "onclkds.com" + ], + "4171": [ + "digiglitzmarketing.go2cloud.org" + ], + "4172": [ + "ad2click.go2cloud.org" + ], + "4174": [ + "ctn.go2cloud.org" + ], + "4175": [ + "reatil9ventures.go2cloud.org" + ], + "4180": [ + "analytics.twitter.com" + ], + "4184": [ + "newpromo.europacash.com" + ], + "4200": [ + "eu2.snoobi.eu" + ], + "4207": [ + "twinedigital.go2cloud.org" + ], + "4209": [ + "owabgxis.wp.pl" + ], + "4210": [ + "adclickzone.go2cloud.org" + ], + "4211": [ + "digitalmailers.go2cloud.org" + ], + "4212": [ + "adserving.rockabox.co" + ], + "4213": [ + "acloudimages.com" + ], + "4215": [ + "bidr.io" + ], + "4216": [ + "pixel.bilinmedia.net" + ], + "4217": [ + "sync.extend.tv" + ], + "4218": [ + "univide.com" + ], + "4219": [ + "gwiqcdn.globalwebindex.net" + ], + "4220": [ + "gscounters.us1.gigya.com" + ], + "4221": [ + "cdns.gigya.com" + ], + "4222": [ + "cdns2.gigya.com" + ], + "4223": [ + "liadm.com" + ], + "4225": [ + "sync-eu.exe.bid" + ], + "4230": [ + "screen.whizmarketing.com" + ], + "4231": [ + "banners.advsnx.net" + ], + "4232": [ + "adserver.adtechus.com" + ], + "4242": [ + "tdn.r42tag.com" + ], + "4246": [ + "at.adworx.at" + ], + "4261": [ + "traffic.adxprts.com" + ], + "4284": [ + "docs.newrelic.com", + " newrelic.com" + ], + "4291": [ + "tracker.unbxdapi.com" + ], + "4292": [ + "nl.vmg.host" + ], + "4301": [ + "col1.wiqhit.com" + ], + "4323": [ + "tr.fuelx.com" + ], + "4324": [ + "fsr.fuel451.com" + ], + "4325": [ + "st.dynamicyield.com" + ], + "4326": [ + "adv.wp.pl" + ], + "4328": [ + "js.foxpush.com" + ], + "4329": [ + "oopt.fr" + ], + "4332": [ + "usermatch.krxd.net" + ], + "4337": [ + "kr.ixiaa.com" + ], + "4357": [ + "soapbox.wistia.com" + ], + "4362": [ + "tag.1rx.io" + ], + "4363": [ + "a-sjo.1rx.io" + ], + "4364": [ + "a-nj.1rx.io" + ], + "4365": [ + "sync.1rx.io" + ], + "4366": [ + "rxcdn.1rx.io" + ], + "4367": [ + "rgaudit.1rx.io" + ], + "4402": [ + "vlog.leadformix.com" + ], + "4410": [ + "xmediaclicks.com" + ], + "4412": [ + "ad.lkqd.net" + ], + "4415": [ + "ads0.adro.co" + ], + "4422": [ + "blueconic.net" + ], + "4434": [ + "bt.mediaimpact.de" + ], + "4447": [ + "prwidgets.com" + ], + "4448": [ + "prscripts.com" + ], + "4449": [ + "prstatics.com" + ], + "4456": [ + "api.boxever.com" + ], + "4458": [ + "im.banner.t-online" + ], + "4461": [ + "visioncriticalpanels.com" + ], + "4467": [ + "cdns.us1.gigya.com" + ], + "4485": [ + "docs.newrelic.com", + " newrelic.com" + ], + "4486": [ + "st.yandexadexchange.net" + ], + "4488": [ + "ysa-static.passport.yandex.ru" + ], + "4491": [ + "3jmcwio.com" + ], + "4494": [ + "zdwidget3-bs.sphereup.com" + ], + "4495": [ + "api.pozvonim.com" + ], + "4505": [ + "adfront.org" + ], + "4517": [ + "px.multiscreensite.com" + ], + "4526": [ + "tt.mbww.com" + ], + "4567": [ + "servicer.mgid.com" + ], + "4569": [ + "twitter.com" + ], + "4572": [ + "xapads.com" + ], + "4573": [ + "smaclick.com" + ], + "4579": [ + "cookieconsent.silktide.com" + ], + "4581": [ + "df-srv.de" + ], + "4582": [ + "events.launchdarkly.com" + ], + "4583": [ + "pixel.zumby.io" + ], + "4588": [ + "onaudience.com" + ], + "4590": [ + "deadlinefunnel.com" + ], + "4602": [ + "snippet.omm.crownpeak.com" + ], + "4605": [ + "p.cquotient.com" + ], + "4612": [ + "searchg2.crownpeak.net" + ], + "4613": [ + "an.yandex.ru" + ], + "4614": [ + "company-target.com" + ], + "4635": [ + "avmws.com" + ], + "4643": [ + "mtwidget04.affiliate.rakuten.co.jp" + ], + "4644": [ + "sync.rambler.com" + ], + "4646": [ + "settings.luckyorange.net" + ], + "4651": [ + "cen.katchup.fr" + ], + "4656": [ + "cpx.to" + ], + "4661": [ + "p.zmags.com" + ], + "4662": [ + "statsd.zmags.com" + ], + "4666": [ + "metrics.plex.tv" + ], + "4669": [ + "cdn.foxpush.net" + ], + "4677": [ + "Advertur.ru" + ], + "4683": [ + "tarafdari.com" + ], + "4693": [ + "pixel.ad" + ], + "4701": [ + "analytics.247sports.com" + ], + "4704": [ + "popserve.adscpm.net" + ], + "4705": [ + "adrunnr.com" + ], + "4727": [ + "volumtrk.com" + ], + "4734": [ + "partner.mediawallahscript.com" + ], + "4736": [ + "gpush.cogocast.net" + ], + "4738": [ + "sync.outbrain.com" + ], + "4743": [ + "docs.newrelic.com", + " newrelic.com" + ], + "4753": [ + "makazi.com" + ], + "4754": [ + "ad.adworx.at" + ], + "4768": [ + "t.beopinion.com" + ], + "4770": [ + "narrative.io" + ], + "4785": [ + "convertexperiments.com" + ], + "4790": [ + "i.jsrdn.com" + ], + "4792": [ + "responder.wt-safetag.com" + ], + "4796": [ + "imp2.ads.linkedin.com" + ], + "4797": [ + "microad.net" + ], + "4799": [ + "addthisedge.com" + ], + "4801": [ + "cmbestsrv.com" + ], + "4804": [ + "basebanner.com" + ], + "4818": [ + "snackly.co" + ], + "4819": [ + "apv.configuration.minute.ly" + ], + "4824": [ + "learn.optimizely.com" + ], + "4846": [ + "hb-endpoint-elb-307841411.adomik.com" + ], + "4850": [ + "adswithsalt.com" + ], + "4851": [ + "ipinfo.io" + ], + "4854": [ + "widget.jeeng.com" + ], + "4858": [ + "plus.google.com", + "chrome.google.com/webstore*" + ], + "4859": [ + "plus.google.com", + "chrome.google.com/webstore*" + ], + "4861": [ + "voxus-targeting-voxusmidia.netdna-ssl.com" + ], + "4863": [ + "y-track.com" + ], + "4865": [ + "iptrack.io" + ], + "4868": [ + "widgets.spklw.com" + ], + "4875": [ + "adnetwork.adasiaholdings.com" + ], + "4877": [ + "d1l7z5ofrj6ab8.cloudfront.net" + ], + "4882": [ + "native.adnegah.net" + ], + "4884": [ + "gasurvey.gemius.com" + ], + "4886": [ + "js.searchlinks.com" + ], + "4889": [ + "results.searchlinks.com" + ], + "4890": [ + "api.searchlinks.com" + ], + "4893": [ + "js.driftt.com" + ], + "4905": [ + "heimdall.fresh8.co" + ], + "4915": [ + "player.glomex.com" + ], + "4918": [ + "glomex.cloud" + ], + "4919": [ + "userlike-cdn-widgets.s3-eu-west-1.amazonaws.com" + ], + "4920": [ + "api.userlike.com" + ], + "4921": [ + "gigaonclick.com" + ], + "4925": [ + "cdn.adless.io" + ], + "4926": [ + "analytics.cohesionapps.com" + ], + "4929": [ + "userreplay.net" + ], + "4935": [ + "analytics.supplyframe.com" + ], + "4936": [ + "client.crisp.chat" + ], + "4937": [ + "settings.crisp.chat" + ], + "4938": [ + "client.crisp.im" + ], + "4939": [ + "huk.de" + ], + "4940": [ + "s.spoutable.com" + ], + "4942": [ + "api.permutive.com" + ], + "4944": [ + "widgets.bankrate.com" + ], + "4945": [ + "tracking.bd4travel.com" + ], + "4947": [ + "api.zadarma.com" + ], + "4951": [ + "api.youcanbook.me" + ], + "4955": [ + "c.leadlab.click" + ], + "4970": [ + "tracking.smartselling.cz" + ], + "4982": [ + "api.vicomi.com" + ], + "4993": [ + "collect.yldr.io" + ], + "5003": [ + "tracking.m6r.eu" + ], + "5005": [ + "cookie-matching.mediarithmics.com" + ], + "5018": [ + "app.hubspot.com" + ], + "5022": [ + "servicer.marketgid.com" + ], + "5023": [ + "player.pepsia.com" + ], + "5025": [ + "syndication.exdynsrv.com" + ], + "5029": [ + "dmm.co.jp" + ], + "5039": [ + "abs.proxistore.com" + ], + "5046": [ + "ingestion.contentinsights.com" + ], + "5050": [ + "tracker.wigzopush.com" + ], + "5058": [ + "tag.bi.serviceplan.com" + ], + "5059": [ + "global.proper.io" + ], + "5063": [ + "ws.friendbuy.com" + ], + "5065": [ + "static.triptease.io" + ], + "5084": [ + "analytics.plex.tv" + ], + "5087": [ + "matheranalytics.com" + ] + }, + "patterns": { + "host": { + "170": { + "54": { + "37": { + "174": { + "$": 2574 + } + } + } + }, + "st": { + "po": { + "$": 1737 + } + }, + "me": { + "mvb": { + "$": 1742 + }, + "fbshare": { + "$": 2452 + }, + "qrius": { + "$": 2466 + }, + "photorank": { + "$": 2603 + }, + "9nl": { + "$": 3018 + }, + "polar": { + "$": 3230 + }, + "getkudos": { + "static": { + "$": 3245 + } + }, + "adtarget": { + "static-trackers": { + "$": 3277 + }, + "trackers": { + "$": 3277 + } + }, + "youcanbook": { + "api": { + "$": 4951 + } + } + }, + "pro": { + "adnetwork": { + "$": 1787 + } + }, + "is": { + "teljari": { + "$": 1896 + } + }, + "gr": { + "adman": { + "$": 1688 + }, + "in": { + "adman": { + "$": 1689 + } + }, + "ad4mat": { + "$": 2139 + } + }, + "co": { + "realtime": { + "$": 1960 + }, + "fyre": { + "$": 2386 + }, + "beanstock": { + "$": 2528 + }, + "fluidads": { + "$": 2868 + }, + "prfct": { + "$": 2363 + }, + "tidio": { + "code": { + "$": 3819 + } + }, + "snackly": { + "$": 4818 + }, + "rockabox": { + "adserving": { + "$": 4212 + } + }, + "adro": { + "ads0": { + "$": 4415 + } + }, + "fresh8": { + "heimdall": { + "$": 4905 + } + }, + "tiller": { + "by": { + "optimized": { + "$": 3763 + } + } + } + }, + "al": { + "gooo": { + "$": 1981 + }, + "respublica": { + "resmeter": { + "$": 3336 + } + } + }, + "in": { + "admaya": { + "$": 2135 + }, + "co": { + "tidbit": { + "$": 2949 + } + }, + "shink": { + "$": 4052 + }, + "vuroll": { + "$": 4162 + } + }, + "ar": { + "ad4mat": { + "$": 2139 + } + }, + "bg": { + "ad4mat": { + "$": 2139 + }, + "tyxo": { + "cnt": { + "$": 2399 + } + }, + "search": { + "counter": { + "$": 2399 + } + }, + "easyads": { + "$": 2572 + }, + "grabo": { + "b": { + "$": 2830 + } + } + }, + "hu": { + "mystat": { + "stat": { + "$": 1643 + } + }, + "ctnetwork": { + "$": 1826 + }, + "median": { + "audit": { + "$": 2048 + } + }, + "ad4mat": { + "$": 2139 + } + }, + "ch": { + "ad4mat": { + "$": 2139 + }, + "wemfbox": { + "$": 2587 + } + }, + "no": { + "euroads": { + "$": 1569 + }, + "webtraffic": { + "$": 1916 + }, + "ad4mat": { + "$": 2139 + }, + "blogglisten": { + "$": 2399 + } + }, + "mx": { + "ad4mat": { + "$": 2139 + } + }, + "be": { + "adhese": { + "$": 1558 + }, + "webhelpje": { + "$": 1986 + }, + "ad4mat": { + "$": 2139 + }, + "tnsinternet": { + "$": 2832 + }, + "9nl": { + "$": 3018 + } + }, + "tr": { + "ad4mat": { + "$": 2139 + }, + "com": { + "adnet": { + "$": 2301 + }, + "adklik": { + "$": 2304 + }, + "admatic": { + "$": 3814 + } + } + }, + "cz": { + "bbmedia": { + "$": 1546 + }, + "ad4mat": { + "$": 2139 + }, + "leady": { + "$": 3109 + }, + "imedia": { + "$": 3313 + }, + "im": { + "$": 3314 + }, + "smartselling": { + "tracking": { + "$": 4970 + } + } + }, + "ms": { + "cxt": { + "$": 2156 + } + }, + "li": { + "kau": { + "$": 1503 + } + }, + "info": { + "webantenna": { + "tr": { + "$": 2187 + } + }, + "aucourant": { + "$": 2926 + }, + "sonician": { + "$": 3167 + }, + "sendigo": { + "foxy": { + "$": 3508 + } + } + }, + "nl": { + "conversive": { + "ant": { + "$": 1479 + } + }, + "ad4mat": { + "$": 2139 + }, + "stealth": { + "$": 2399 + }, + "bobum": { + "$": 2399 + }, + "m4n": { + "$": 2406 + }, + "icstats": { + "$": 2041 + }, + "affiliate4you": { + "$": 2408 + }, + "glossip": { + "our": { + "$": 2823 + } + }, + "justpremium": { + "$": 2854 + }, + "ad-serverparc": { + "$": 3108 + }, + "adscience": { + "$": 3207 + }, + "webhelpje": { + "$": 1986 + }, + "quintrics": { + "$": 3327 + }, + "webads": { + "$": 1902 + }, + "sharecompany": { + "$": 3327 + }, + "hottraffic": { + "beacons": { + "$": 1815 + } + }, + "onlinesuccess": { + "connect": { + "$": 3752 + } + }, + "adverteerdirect": { + "ad": { + "$": 1562 + } + }, + "speed-trap": { + "$": 4074 + }, + "ds1": { + "$": 2407 + } + }, + "lt": { + "adnet": { + "$": 2223 + }, + "adclick": { + "$": 2223 + } + }, + "vn": { + "adnetwork": { + "$": 1409 + }, + "ambientplatform": { + "$": 1450 + }, + "admicro": { + "$": 1410 + }, + "adnet": { + "$": 1799 + }, + "net": { + "adnetwork": { + "$": 1409 + } + }, + "ad360": { + "$": 2018 + }, + "vietad": { + "$": 2020 + }, + "adtimaserver": { + "$": 3342 + }, + "ants": { + "$": 3344 + }, + "anthill": { + "$": 3344 + }, + "eclick": { + "$": 2016 + } + }, + "ie": { + "adlive": { + "$": 2262 + } + }, + "ad": { + "pixel": { + "$": 4693 + }, + "content": { + "$": 1921 + }, + "spider": { + "$": 2564 + }, + "chameleon": { + "gsn": { + "$": 4070 + } + } + }, + "il": { + "co": { + "dimpact": { + "$": 2266 + }, + "adland": { + "$": 2270 + } + } + }, + "br": { + "com": { + "adserver": { + "$": 1180 + }, + "dihitt": { + "widget": { + "$": 1671 + } + }, + "g3nesis": { + "$": 3288 + }, + "retargeter": { + "$": 3917 + }, + "mercadolivre": { + "advertising": { + "$": 3956 + } + } + }, + "ad4mat": { + "$": 2139 + } + }, + "id": { + "co": { + "adplus": { + "$": 2286 + }, + "adstars": { + "$": 2288 + } + } + }, + "es": { + "hotwords": { + "$": 1387 + }, + "ad6media": { + "$": 1555 + }, + "ad4mat": { + "$": 2139 + }, + "colbenson": { + "$": 2508 + } + }, + "th": { + "in": { + "truehits": { + "$": 2290 + } + } + }, + "pt": { + "marktest": { + "data": { + "netscope": { + "$": 1151 + } + } + } + }, + "nu": { + "susnet": { + "$": 2400 + } + }, + "ro": { + "statistics": { + "$": 1070 + }, + "ad4mat": { + "$": 2139 + } + }, + "au": { + "com": { + "checkmystats": { + "$": 2413 + }, + "sportsbetaffiliates": { + "$": 2954 + }, + "newsanalytics": { + "$": 2971 + }, + "avanser": { + "analytics": { + "$": 3310 + } + }, + "delacon": { + "vxml4": { + "$": 3311 + } + } + } + }, + "cn": { + "dwstat": { + "cn01": { + "$": 950 + } + }, + "comm100": { + "$": 2416 + }, + "dmclick": { + "$": 2964 + }, + "com": { + "admaster": { + "$": 2985 + }, + "mixsina": { + "cre": { + "$": 4109 + } + }, + "sina": { + "$": 4110 + } + }, + "omgts": { + "$": 2987 + } + }, + "to": { + "cpx": { + "$": 4656 + }, + "tawk": { + "embed": { + "$": 3795 + } + } + }, + "ua": { + "i": { + "r": { + "$": 946 + } + }, + "mycounter": { + "$": 1473 + }, + "com": { + "mycounter": { + "$": 1473 + }, + "mbn": { + "$": 3351 + } + }, + "net": { + "c8": { + "$": 2125 + } + }, + "hit": { + "$": 2227 + } + }, + "mobi": { + "mocean": { + "ads": { + "$": 2723 + } + }, + "ir1s": { + "$": 3821 + } + }, + "tv": { + "adap": { + "u-ads": { + "$": 913 + }, + "ads": { + "$": 913 + }, + "sync": { + "$": 913 + }, + "set": { + "$": 913 + }, + "log": { + "$": 913 + }, + "qlog": { + "$": 913 + }, + "redir": { + "$": 913 + }, + "segments": { + "$": 1433 + } + }, + "affec": { + "go": { + "$": 2443 + } + }, + "teads": { + "$": 3100 + }, + "hiro": { + "$": 2662 + }, + "videoplaza": { + "$": 2758 + }, + "adne": { + "$": 3086 + }, + "vidible": { + "$": 3337 + }, + "extend": { + "sync": { + "$": 4217 + } + }, + "plex": { + "metrics": { + "$": 4666 + }, + "analytics": { + "$": 5084 + } + } + }, + "ir": { + "anetwork": { + "$": 2738 + } + }, + "biz": { + "roia": { + "$": 912 + }, + "mconet": { + "$": 1828 + }, + "mixmarket": { + "$": 1866 + }, + "trafficfactory": { + "$": 2217 + }, + "adnet": { + "$": 2376 + }, + "webtrack": { + "stat": { + "$": 2679 + } + }, + "ro2": { + "$": 2892 + }, + "clickky": { + "$": 3137 + } + }, + "tw": { + "com": { + "clicking": { + "$": 2905 + }, + "blogad": { + "$": 2906 + } + } + }, + "cl": { + "e": { + "hits": { + "$": 894 + } + } + }, + "ee": { + "spn": { + "$": 2908 + } + }, + "click": { + "leadlab": { + "c": { + "$": 4955 + } + } + }, + "my": { + "cnt": { + "x": { + "$": 2925 + } + } + }, + "fi": { + "simpli": { + "$": 752 + }, + "euroads": { + "$": 1569 + }, + "sanoma": { + "admp": { + "$": 1625 + }, + "analytics": { + "$": 1625 + } + }, + "kavijaseuranta": { + "$": 1639 + }, + "ad4mat": { + "$": 2139 + }, + "esendra": { + "$": 2326 + } + }, + "gy": { + "ar": { + "goals": { + "$": 2946 + } + } + }, + "sg": { + "adsfac": { + "$": 702 + } + }, + "kz": { + "zero": { + "$": 2956 + } + }, + "se": { + "research-int": { + "$": 552 + }, + "emediate": { + "$": 1235 + }, + "adaction": { + "$": 1477 + }, + "easyresearch": { + "$": 1650 + }, + "3c45d848d99": { + "$": 1670 + }, + "webtraffic": { + "$": 1916 + }, + "ad4mat": { + "$": 2139 + }, + "webstat": { + "$": 2397 + }, + "susnet": { + "$": 2400 + }, + "aftonbladet": { + "ads": { + "$": 2761 + } + } + }, + "asia": { + "optimix": { + "$": 2991 + } + }, + "dk": { + "tns-gallup": { + "$": 552 + }, + "openadex": { + "$": 1564 + }, + "advantagemedia": { + "ad": { + "$": 1566 + } + }, + "adservicemedia": { + "online": { + "$": 1567 + } + }, + "emediate": { + "$": 1235 + }, + "userneeds": { + "$": 1654 + }, + "ad4mat": { + "$": 2139 + }, + "chart": { + "$": 2399 + }, + "nope": { + "$": 2399 + }, + "netminers": { + "$": 2839 + }, + "euroads": { + "$": 1569 + } + }, + "si": { + "brow": { + "$": 3015 + } + }, + "at": { + "oewabox": { + "$": 541 + }, + "ad4mat": { + "$": 2139 + }, + "adworx": { + "at": { + "$": 4246 + }, + "ad": { + "$": 4754 + } + } + }, + "am": { + "tru": { + "$": 3016 + } + }, + "io": { + "marchex": { + "px": { + "$": 3661 + } + }, + "clickigniter": { + "$": 3007 + }, + "trak": { + "api": { + "$": 3075 + } + }, + "xref": { + "$": 3090 + }, + "burt": { + "$": 3124 + }, + "keen": { + "api": { + "$": 3017 + } + }, + "iptrack": { + "$": 4865 + }, + "bidr": { + "$": 4215 + }, + "1rx": { + "tag": { + "$": 4362 + }, + "a-sjo": { + "$": 4363 + }, + "a-nj": { + "$": 4364 + }, + "sync": { + "$": 4365 + }, + "rxcdn": { + "$": 4366 + }, + "rgaudit": { + "$": 4367 + } + }, + "zumby": { + "pixel": { + "$": 4583 + } + }, + "narrative": { + "$": 4770 + }, + "lp4": { + "$": 2578 + }, + "ipinfo": { + "$": 4851 + }, + "ebz": { + "$": 1621 + }, + "adless": { + "cdn": { + "$": 4925 + } + }, + "segment": { + "$": 1526 + }, + "yldr": { + "collect": { + "$": 4993 + } + }, + "cosmi": { + "$": 1504 + }, + "proper": { + "global": { + "$": 5059 + } + }, + "intercom": { + "$": 1316 + }, + "triptease": { + "static": { + "$": 5065 + } + }, + "helpful": { + "assets": { + "$": 3286 + } + } + }, + "cc": { + "teaser": { + "$": 3077 + }, + "popin": { + "$": 3158 + } + }, + "pl": { + "4u": { + "adstat": { + "$": 519 + }, + "stat": { + "$": 519 + } + }, + "adtaily": { + "$": 1630 + }, + "smartcontext": { + "$": 1651 + }, + "ad4mat": { + "$": 2139 + }, + "adkontekst": { + "adsearch": { + "$": 1628 + } + }, + "adview": { + "$": 2759 + }, + "clickonometrics": { + "$": 2859 + }, + "adfreestyle": { + "$": 2899 + }, + "nextclick": { + "$": 3211 + }, + "quartic": { + "rec": { + "$": 3253 + } + }, + "adtotal": { + "$": 1160 + }, + "incontext": { + "$": 3331 + }, + "adocean": { + "$": 1021 + }, + "contextad": { + "intext": { + "$": 3304 + } + }, + "gemius": { + "hit": { + "$": 520 + } + }, + "wp": { + "owabgxis": { + "$": 4209 + }, + "adv": { + "$": 4326 + } + }, + "mystat": { + "$": 2574 + } + }, + "kr": { + "co": { + "about": { + "ad": { + "$": 3129 + }, + "adcheck": { + "$": 3129 + } + }, + "imadrep": { + "adv": { + "$": 3130 + } + }, + "livere": { + "$": 3134 + }, + "realclick": { + "$": 3141 + }, + "adinsight": { + "$": 3177 + }, + "hu": { + "outbanner": { + "$": 3348 + } + } + } + }, + "ru": { + "yandex": { + "mc": { + "$": 3252 + }, + "awaps": { + "$": 4125 + }, + "passport": { + "ysa-static": { + "$": 4488 + } + }, + "an": { + "$": 4613 + } + }, + "magna": { + "$": 2186 + }, + "b2bcontext": { + "$": 2188 + }, + "adeasy": { + "$": 2190 + }, + "maxlab": { + "$": 2192 + }, + "vidigital": { + "$": 2184 + }, + "recreativ": { + "$": 2200 + }, + "cnstats": { + "$": 2202 + }, + "loveadvert": { + "$": 2204 + }, + "rollad": { + "$": 2208 + }, + "smartbn": { + "$": 2210 + }, + "cityads": { + "$": 2182 + }, + "underclick": { + "$": 2212 + }, + "gameleads": { + "$": 2182 + }, + "iplogger": { + "$": 2264 + }, + "ad4mat": { + "$": 2139 + }, + "shareth": { + "$": 2324 + }, + "adhands": { + "$": 2122 + }, + "rbc": { + "count": { + "$": 2394 + } + }, + "adnet": { + "$": 2115 + }, + "uralweb": { + "$": 2574 + }, + "medialand": { + "$": 2115 + }, + "megaindex": { + "counter": { + "$": 2434 + } + }, + "rutarget": { + "$": 2003 + }, + "mail": { + "ad": { + "$": 2486 + } + }, + "actionpay": { + "$": 2001 + }, + "otclick-adv": { + "$": 2651 + }, + "adonweb": { + "$": 2001 + }, + "rotaban": { + "$": 2837 + }, + "adnwb": { + "$": 2001 + }, + "reformal": { + "$": 2846 + }, + "videoclik": { + "$": 1998 + }, + "mastertarget": { + "$": 2922 + }, + "videoclick": { + "$": 1998 + }, + "odinkod": { + "$": 2923 + }, + "b2bvideo": { + "$": 1870 + }, + "advaction": { + "$": 2926 + }, + "adlabs": { + "$": 1866 + }, + "gdeslon": { + "$": 2938 + }, + "luxup": { + "$": 1866 + }, + "livetex": { + "$": 2939 + }, + "kavanga": { + "$": 1865 + }, + "leadhit": { + "$": 2940 + }, + "directadvert": { + "$": 1785 + }, + "advombat": { + "$": 2942 + }, + "goodadvert": { + "$": 1761 + }, + "contextbar": { + "$": 2943 + }, + "tbn": { + "$": 1619 + }, + "ulogix": { + "$": 2957 + }, + "am10": { + "$": 1553 + }, + "traforet": { + "$": 2970 + }, + "ok": { + "connect": { + "$": 1686 + } + }, + "pluso": { + "share": { + "$": 3079 + } + }, + "top100": { + "st": { + "$": 3101 + } + }, + "adsniper": { + "$": 3111 + }, + "rambler": { + "ad": { + "$": 664 + }, + "ad2": { + "$": 664 + }, + "counter": { + "$": 664 + }, + "top100-images": { + "$": 664 + } + }, + "datamind": { + "$": 3113 + }, + "adwolf": { + "$": 657 + }, + "digitaltarget": { + "$": 3114 + }, + "adfox": { + "$": 657 + }, + "aitarget": { + "$": 3115 + }, + "tns-counter": { + "$": 552 + }, + "redhelper": { + "data": { + "$": 3247 + } + }, + "begun": { + "$": 463 + }, + "madnet": { + "$": 3285 + }, + "yadro": { + "counter": { + "$": 211 + } + }, + "admeo": { + "$": 3945 + }, + "spylog": { + "$": 193 + }, + "24log": { + "counter": { + "$": 3990 + } + }, + "adriver": { + "$": 192 + }, + "Advertur": { + "$": 4677 + }, + "rmbn": { + "$": 2196 + } + }, + "ag": { + "supert": { + "$": 3162 + }, + "script": { + "dataxpand": { + "$": 3312 + } + } + }, + "it": { + "shinystat": { + "$": 185 + }, + "eadv": { + "$": 1636 + }, + "arubamediamarketing": { + "$": 1637 + }, + "ammadv": { + "$": 1637 + }, + "payclick": { + "$": 1646 + }, + "trackset": { + "$": 605 + }, + "ad4mat": { + "$": 2139 + }, + "rcs": { + "ads": { + "$": 2521 + }, + "bt": { + "$": 2521 + } + }, + "m8lab": { + "$": 2914 + }, + "9nl": { + "$": 3018 + }, + "clickpoint": { + "$": 3204 + }, + "conversionlab": { + "tracking": { + "$": 604 + } + }, + "heatmap": { + "u": { + "$": 3276 + }, + "l": { + "$": 3276 + } + }, + "banzaiadv": { + "$": 1897 + } + }, + "ac": { + "say": { + "$": 3192 + } + }, + "eu": { + "coremetrics": { + "$": 163 + }, + "emediate": { + "$": 1235 + }, + "adinsight": { + "$": 1454 + }, + "bepolite": { + "$": 2225 + }, + "adsfac": { + "$": 702 + }, + "trgt": { + "$": 2977 + }, + "9nl": { + "$": 3018 + }, + "spiderads": { + "metrics": { + "$": 3996 + } + }, + "snoobi": { + "eu2": { + "$": 4200 + } + }, + "m6r": { + "tracking": { + "$": 5003 + } + }, + "addynamics": { + "$": 2441 + } + }, + "im": { + "spot": { + "$": 3319 + }, + "crisp": { + "client": { + "$": 4938 + } + } + }, + "us": { + "gsfn": { + "engage": { + "loader": { + "$": 2953 + } + } + }, + "amung": { + "widgets": { + "$": 449 + }, + "whos": { + "$": 449 + } + }, + "adsfac": { + "$": 702 + }, + "s-9": { + "sra": { + "$": 3562 + } + }, + "nmcdn": { + "$": 2575 + }, + "mpstat": { + "$": 2606 + }, + "sitetag": { + "$": 2711 + }, + "adsender": { + "lead": { + "$": 2936 + } + } + }, + "lv": { + "adbox": { + "$": 3335 + } + }, + "xiti": { + "$": 3485 + }, + "js": { + "booking-widget": { + "$": 3512 + } + }, + "fr": { + "assoc-amazon": { + "$": 25 + }, + "ad6": { + "$": 2257 + }, + "beead": { + "$": 1621 + }, + "ad4mat": { + "$": 2139 + }, + "ad6media": { + "$": 1555 + }, + "tradelab": { + "$": 2641 + }, + "orangeads": { + "$": 2752 + }, + "orange": { + "c": { + "$": 2752 + }, + "iapref": { + "$": 2752 + }, + "gstat": { + "$": 2752 + } + }, + "reactivpub": { + "$": 3105 + }, + "affiliaweb": { + "$": 3106 + }, + "adnext": { + "$": 1349 + }, + "leadplace": { + "cookies": { + "$": 3551 + } + }, + "clicmanager": { + "$": 1191 + }, + "oopt": { + "$": 4329 + }, + "weborama": { + "$": 2138 + }, + "katchup": { + "cen": { + "$": 4651 + } + }, + "livecount": { + "$": 2574 + } + }, + "sk": { + "mediade": { + "ads": { + "$": 3566 + } + } + }, + "de": { + "assoc-amazon": { + "$": 25 + }, + "freenet": { + "adserver": { + "$": 1663 + } + }, + "affimax": { + "$": 1936 + }, + "adtraxx": { + "$": 2106 + }, + "unister-gmbh": { + "analytics": { + "$": 1661 + }, + "analytics-static": { + "$": 2261 + } + }, + "vertriebsassistent": { + "stats": { + "$": 2130 + } + }, + "ad4mat": { + "$": 2139 + }, + "intelliad": { + "$": 2141 + }, + "acc-hd": { + "$": 2299 + }, + "4stats": { + "$": 2375 + }, + "adrolays": { + "$": 1659 + }, + "adnet": { + "$": 2376 + }, + "verticalnetwork": { + "$": 1657 + }, + "usemax": { + "$": 2377 + }, + "ligatus": { + "$": 1623 + }, + "webmasterpro": { + "fc": { + "$": 2574 + } + }, + "webprospector": { + "$": 1501 + }, + "ipcounter": { + "$": 2574 + }, + "revenuemax": { + "$": 1464 + }, + "active-tracking": { + "$": 2573 + }, + "xplosion": { + "$": 1457 + }, + "active-srv02": { + "$": 2573 + }, + "adspirit": { + "$": 1422 + }, + "ekomi": { + "connect": { + "$": 2654 + } + }, + "vgwort": { + "met": { + "$": 1186 + } + }, + "leitmotiv": { + "$": 2720 + }, + "wipe": { + "wwa": { + "$": 1105 + } + }, + "vinsight": { + "$": 2763 + }, + "sponsorads": { + "$": 983 + }, + "soma2": { + "$": 2852 + }, + "econda-monitor": { + "$": 2872 + }, + "epoq": { + "rs": { + "$": 2871 + } + }, + "adtech": { + "$": 570, + "adserver": { + "$": 4024 + } + }, + "advolution": { + "$": 3022 + }, + "adscale": { + "$": 476 + }, + "adshot": { + "$": 3322 + }, + "adtiger": { + "ads": { + "$": 475 + } + }, + "feedify": { + "$": 3352 + }, + "mirando": { + "get": { + "$": 474 + } + }, + "wieistmeineip": { + "$": 3483 + }, + "webtrekk": { + "$": 468 + }, + "leadinspector": { + "js": { + "$": 3600 + } + }, + "ioam": { + "$": 209 + }, + "leadingreports": { + "io": { + "$": 3831 + } + }, + "ivwbox": { + "$": 209 + }, + "snacktv": { + "monetizer": { + "$": 3882 + } + }, + "etracker": { + "$": 1078 + }, + "stroeermediabrands": { + "gocp": { + "$": 3993 + } + }, + "blogcounter": { + "track": { + "$": 134 + } + }, + "mediaimpact": { + "bt": { + "$": 4434 + } + }, + "huk": { + "$": 4939 + }, + "df-srv": { + "$": 4581 + }, + "adyard": { + "$": 2108 + } + }, + "services": { + "marketingautomation": { + "$": 3857 + } + }, + "uk": { + "co": { + "assoc-amazon": { + "$": 25 + }, + "vertical-leap": { + "roi": { + "$": 1488 + } + }, + "valuedopinions": { + "$": 1523 + }, + "ad6media": { + "$": 1555 + }, + "wowanalytics": { + "$": 1370 + }, + "ad4mat": { + "$": 2139 + }, + "abccampaignaudit": { + "$": 2262 + }, + "ads-littlestarmedia": { + "$": 2262 + }, + "qsoft": { + "sc": { + "$": 2335 + } + }, + "adgenie": { + "$": 2442 + }, + "grapeshot": { + "$": 1249 + }, + "onefeed": { + "tracking": { + "$": 2553 + } + }, + "unanimis": { + "$": 1141 + }, + "adskeeper": { + "$": 4055 + }, + "sitetagger": { + "tags": { + "$": 959 + } + }, + "dianomioffers": { + "$": 3133 + }, + "beead": { + "$": 1621 + } + } + }, + "host": { + "disc": { + "$": 3949 + }, + "dfp": { + "$": 3950 + }, + "vmg": { + "nl": { + "$": 4292 + } + } + }, + "ca": { + "assoc-amazon": { + "$": 25 + }, + "chango": { + "$": 720 + }, + "flyertown": { + "api": { + "$": 2586 + } + } + }, + "bid": { + "exe": { + "sync-eu": { + "$": 4225 + } + } + }, + "org": { + "openx": { + "$": 24 + }, + "hypeads": { + "$": 1706 + }, + "simpleadserver": { + "$": 1829 + }, + "qcri": { + "track": { + "$": 2353 + } + }, + "elementodigital": { + "ads": { + "$": 1633 + } + }, + "jquerys": { + "$": 2730 + }, + "gandrad": { + "$": 3046 + }, + "ip-tracker": { + "$": 3303 + }, + "zwaar": { + "$": 3325 + }, + "go2cloud": { + "digiglitzmarketing": { + "$": 4171 + }, + "ad2click": { + "$": 4172 + }, + "ctn": { + "$": 4174 + }, + "reatil9ventures": { + "$": 4175 + }, + "twinedigital": { + "$": 4207 + }, + "adclickzone": { + "$": 4210 + }, + "digitalmailers": { + "$": 4211 + } + }, + "adsrvr": { + "$": 923 + }, + "adfront": { + "$": 4505 + }, + "liczniki": { + "$": 2400 + } + }, + "t-online": { + "banner": { + "im": { + "$": 4458 + } + } + }, + "jp": { + "yjtag": { + "s": { + "$": 18 + } + }, + "webtracker": { + "t": { + "$": 1767 + } + }, + "i2i": { + "$": 1898 + }, + "impact-ad": { + "$": 1914 + }, + "tracer": { + "$": 2013 + }, + "eimg": { + "jp": { + "adingo": { + "$": 1516 + } + } + }, + "ad-move": { + "$": 2217 + }, + "clickanalyzer": { + "$": 2884 + }, + "taggyad": { + "$": 2885 + }, + "a-cast": { + "$": 2888 + }, + "ne": { + "trustclick": { + "$": 3183 + }, + "ebis": { + "$": 3284 + } + }, + "adingo": { + "$": 1504 + }, + "eco-tag": { + "$": 2900 + }, + "shinobi": { + "$": 1187 + }, + "bypass": { + "$": 3145 + }, + "nakanohito": { + "$": 1175 + }, + "ad-cloud": { + "$": 3146 + }, + "fout": { + "$": 1149 + }, + "moras": { + "$": 3149 + }, + "adlantis": { + "$": 1147 + }, + "mixi": { + "plugins": { + "$": 3151 + } + }, + "ca-mpr": { + "ot": { + "$": 1146 + } + }, + "ptengine": { + "$": 3178 + }, + "microad": { + "$": 1146 + }, + "adresult": { + "$": 3179 + }, + "advg": { + "$": 1135 + }, + "vcm": { + "ad": { + "$": 3179 + } + }, + "japanmetrix": { + "$": 126 + }, + "genieessp": { + "cs": { + "$": 3603 + } + }, + "co": { + "yahoo": { + "ov": { + "$": 1517 + } + }, + "i-mobile": { + "$": 2836 + }, + "logly": { + "$": 2889 + }, + "cyberwing": { + "$": 2921 + }, + "rakuten": { + "affiliate": { + "mtwidget04": { + "$": 4643 + } + } + }, + "dmm": { + "$": 5029 + } + }, + "genieesspv": { + "cs": { + "$": 3604 + } + }, + "assoc-amazon": { + "$": 25 + }, + "ogt": { + "a5": { + "$": 3894 + } + }, + "maist": { + "$": 2217 + } + }, + "ly": { + "minute": { + "configuration": { + "apv": { + "$": 4819 + } + } + } + }, + "net": { + "staticstuff": { + "hello": { + "$": 48 + } + }, + "ppjol": { + "$": 1746 + }, + "geoplugin": { + "$": 1751 + }, + "scoutanalytics": { + "scout": { + "$": 1778 + } + }, + "sexad": { + "$": 1717 + }, + "bannerconnect": { + "$": 1816 + }, + "adverticum": { + "$": 1824 + }, + "simpleadserver": { + "$": 1829 + }, + "euroweb": { + "tracker": { + "$": 1839 + } + }, + "adnetinteractive": { + "$": 1847 + }, + "trafficjunky": { + "$": 1715 + }, + "typekit": { + "$": 1853 + }, + "pixfuture": { + "$": 1711 + }, + "yola": { + "analytics": { + "$": 1855 + }, + "pixel": { + "$": 1855 + } + }, + "adzerk": { + "$": 1708 + }, + "buzzbytes": { + "$": 1874 + }, + "avazu": { + "ads": { + "$": 1699 + } + }, + "rtbidder": { + "$": 1878 + }, + "qwobl": { + "$": 1692 + }, + "adsummos": { + "$": 1894 + }, + "jump-time": { + "$": 1684 + }, + "accesstrade": { + "$": 1899 + }, + "onenetworkdirect": { + "$": 1666 + }, + "polyad": { + "$": 1900 + }, + "sublimemedia": { + "$": 1662 + }, + "rsys4": { + "$": 1907 + }, + "publicidad": { + "$": 1649 + }, + "adaos-ads": { + "$": 1929 + }, + "adcastplus": { + "$": 1641 + }, + "semasio": { + "$": 1931 + }, + "double": { + "$": 1635 + }, + "rvty": { + "$": 1934 + }, + "beead": { + "$": 1621 + }, + "redintelligence": { + "$": 1938 + }, + "total-media": { + "i": { + "$": 1599 + } + }, + "shorttail": { + "ads": { + "$": 2007 + } + }, + "targetix": { + "ads": { + "$": 1573 + } + }, + "admagnet": { + "$": 2067 + }, + "adhese": { + "$": 1558 + }, + "amimg": { + "$": 2067 + }, + "am15": { + "$": 1553 + }, + "atomex": { + "$": 2070, + "cdn": { + "$": 4016 + }, + "datacdn": { + "$": 4017 + } + }, + "mediainter": { + "$": 1546 + }, + "clickexperts": { + "$": 2079 + }, + "innity": { + "$": 1537 + }, + "ezakus": { + "$": 2088 + }, + "intermarkets": { + "$": 1499 + }, + "adclear": { + "$": 2104 + }, + "trackedlink": { + "$": 1486 + }, + "adru": { + "$": 2113 + }, + "gsimedia": { + "media": { + "$": 1426 + } + }, + "ad4mat": { + "$": 2139 + }, + "adspirit": { + "$": 1422 + }, + "connexity": { + "$": 2156 + }, + "media-servers": { + "ad": { + "$": 1415 + } + }, + "infinity-tracking": { + "$": 2165 + }, + "globaltakeoff": { + "ad": { + "$": 1414 + } + }, + "admaster": { + "$": 2198 + }, + "adcloud": { + "$": 1397 + }, + "mystat-in": { + "$": 2229 + }, + "e-kolay": { + "$": 1396 + }, + "r7ls": { + "$": 2235 + }, + "popadscdn": { + "$": 1374 + }, + "7eer": { + "$": 2235 + }, + "popads": { + "$": 1373 + }, + "ojrq": { + "$": 2235 + }, + "surinter": { + "$": 1349 + }, + "evyy": { + "$": 2235 + }, + "yieldlab": { + "ad": { + "$": 1347 + } + }, + "eyeota": { + "$": 2248 + }, + "nedstatbasic": { + "$": 1403 + }, + "bloggerads": { + "$": 2255 + }, + "adnetwork": { + "ad": { + "$": 1317 + } + }, + "888media": { + "$": 2260 + }, + "eulerian": { + "$": 1307 + }, + "newsnow": { + "ad": { + "$": 2335 + } + }, + "rlcdn": { + "$": 1292 + }, + "simplytechnology": { + "$": 2335 + }, + "ywxi": { + "cdn": { + "$": 3323 + } + }, + "solvedigital": { + "ads": { + "$": 2335 + } + }, + "iprom": { + "$": 1284 + }, + "rcads71": { + "$": 2385 + }, + "a2dfp": { + "$": 1270 + }, + "yieldoptimisers": { + "$": 2950 + }, + "sensic": { + "$": 2637 + }, + "fendix": { + "$": 2950 + }, + "gscontxt": { + "$": 1249 + }, + "tlm100": { + "$": 2273 + }, + "intentmedia": { + "$": 1221 + }, + "telemetryverification": { + "$": 2273 + }, + "crosspixel": { + "$": 1219 + }, + "telemetrytaxonomy": { + "$": 2273 + }, + "p161": { + "$": 1480 + }, + "truehits": { + "poll": { + "$": 2402 + }, + "banner": { + "$": 2402 + } + }, + "cleanrm": { + "$": 1251 + }, + "realvu": { + "go": { + "$": 2310 + } + }, + "korrelate": { + "$": 1251 + }, + "adc-serv": { + "$": 2322 + }, + "mxptint": { + "$": 2515 + }, + "quick-counter": { + "$": 2331 + }, + "clickintext": { + "$": 1192 + }, + "flagads": { + "$": 2348 + }, + "adlink": { + "$": 2446 + }, + "decknetwork": { + "connect": { + "$": 2358 + } + }, + "brandaffinity": { + "$": 1188 + }, + "luckyorange": { + "settings": { + "$": 4646 + } + }, + "predicta": { + "$": 1180 + }, + "trkme": { + "$": 2370 + }, + "adimg": { + "$": 1148 + }, + "feedcat": { + "$": 2383 + }, + "microad": { + "$": 4797 + }, + "leadlifesolutions": { + "analytics": { + "$": 2390 + } + }, + "durasite": { + "$": 1133 + }, + "adbutter": { + "$": 2391 + }, + "contentwidgets": { + "$": 1361 + }, + "adsrevenue": { + "$": 2393 + }, + "trafficrevenue": { + "$": 1080 + }, + "magnify": { + "st": { + "$": 2395 + } + }, + "keymetric": { + "$": 1071 + }, + "feedmeter": { + "$": 2399 + }, + "opentracker": { + "$": 1016 + }, + "bloggurat": { + "$": 2399 + }, + "nr-data": { + "$": 1009 + }, + "ziyu": { + "$": 2574 + }, + "adorika": { + "$": 1622 + }, + "a8": { + "$": 2411 + }, + "newtentionassets": { + "ads": { + "$": 997 + } + }, + "anametrix": { + "$": 2437 + }, + "newtention": { + "ads": { + "$": 997 + }, + "trk": { + "$": 998 + }, + "$": 999 + }, + "go2web20": { + "$": 2452 + }, + "adformdsp": { + "$": 995 + }, + "ivimedia": { + "$": 2471 + }, + "adform": { + "$": 995 + }, + "linkstorm": { + "$": 2490 + }, + "anrdoezrs": { + "$": 2697 + }, + "tentaculos": { + "$": 2502 + }, + "lduhtrp": { + "$": 2153 + }, + "pingdom": { + "$": 2510 + }, + "yceml": { + "$": 954 + }, + "segmint": { + "$": 2527 + }, + "qksz": { + "$": 948 + }, + "modallogix": { + "$": 2532 + }, + "tradetracker": { + "$": 886 + }, + "smarterremarketer": { + "$": 2537 + }, + "bigmir": { + "c": { + "$": 885 + } + }, + "liveclicker": { + "$": 2549 + }, + "ucoz": { + "a": { + "$": 884 + } + }, + "avail": { + "$": 2552 + }, + "brand": { + "ads": { + "$": 890 + } + }, + "strcst": { + "$": 2580 + }, + "effectivemeasure": { + "$": 1011 + }, + "ip-label": { + "$": 2583 + }, + "fastclick": { + "$": 2917, + "secure": { + "$": 3542 + } + }, + "zdbb": { + "$": 2596 + }, + "domdex": { + "$": 927 + }, + "offerpoint": { + "$": 2602 + }, + "esm1": { + "$": 845 + }, + "go-mpulse": { + "$": 2606 + }, + "e-planning": { + "$": 814 + }, + "e2ma": { + "$": 2607 + }, + "llnwd": { + "hs": { + "tealium": { + "$": 1359 + } + } + }, + "brandmovers": { + "$": 2610 + }, + "mm7": { + "$": 2478 + }, + "egain": { + "$": 2611 + }, + "admission": { + "$": 754 + }, + "livechatinc": { + "$": 2614 + }, + "udmserve": { + "$": 739 + }, + "bbtrack": { + "$": 2621 + }, + "grmtech": { + "$": 709 + }, + "pagefair": { + "$": 2625 + }, + "gmads": { + "$": 709 + }, + "media": { + "$": 2642 + }, + "adviva": { + "$": 1031 + }, + "trafficgate": { + "$": 2644 + }, + "specificclick": { + "$": 708 + }, + "smaato": { + "$": 2646 + }, + "adsfac": { + "$": 702 + }, + "sellpoint": { + "sb": { + "$": 2673 + } + }, + "viewablemedia": { + "$": 699 + }, + "adverserve": { + "$": 2682 + }, + "z5x": { + "$": 690 + }, + "clickbank": { + "hop": { + "$": 2702 + }, + "cbtb": { + "$": 3745 + } + }, + "adadvisor": { + "$": 686 + }, + "onclickads": { + "$": 2707 + }, + "cedexis-radar": { + "$": 3278 + }, + "adsfactor": { + "$": 2716 + }, + "cedexis": { + "$": 677 + }, + "ad-srv": { + "$": 2718 + }, + "optify": { + "service": { + "$": 668 + } + }, + "doublemax": { + "$": 2743 + }, + "monitus": { + "$": 1065 + }, + "getconversion": { + "$": 2744 + }, + "tumri": { + "ats": { + "$": 698 + } + }, + "prnx": { + "$": 2827 + }, + "teracent": { + "adserver": { + "$": 625 + }, + "int": { + "$": 625 + } + }, + "dominocounter": { + "$": 2835 + }, + "monetate": { + "$": 624 + }, + "dynad": { + "$": 2844 + }, + "krxd": { + "cdn": { + "$": 597 + }, + "beacon": { + "$": 3615 + }, + "apiservices": { + "$": 3614 + }, + "usermatch": { + "$": 4332 + } + }, + "3gl": { + "$": 2870 + }, + "dt00": { + "$": 580 + }, + "livechatnow": { + "$": 2879 + }, + "dt07": { + "$": 580 + }, + "bidswitch": { + "$": 2916 + }, + "owneriq": { + "px": { + "$": 574 + }, + "$": 790 + }, + "black-buck": { + "$": 2918 + }, + "everestjs": { + "$": 833 + }, + "schetu": { + "$": 2926 + }, + "everesttech": { + "$": 833 + }, + "admixer": { + "$": 2929 + }, + "demdex": { + "$": 786 + }, + "kontagent": { + "$": 2982 + }, + "w55c": { + "$": 567 + }, + "taggify": { + "code": { + "$": 3010 + } + }, + "svlu": { + "$": 566 + }, + "adsvc1107131": { + "$": 3024 + }, + "sageanalyst": { + "$": 565 + }, + "h12-media": { + "$": 3032 + }, + "statistik-gallup": { + "$": 552 + }, + "popcash": { + "$": 3033 + }, + "tns-cs": { + "$": 552 + }, + "buzzcity": { + "$": 3050 + }, + "spring-tns": { + "$": 552 + }, + "appssavvy": { + "$": 3057 + }, + "dashboardad": { + "tags": { + "$": 540 + } + }, + "adbooth": { + "$": 3064 + }, + "clickequations": { + "beacon": { + "$": 532 + }, + "js": { + "$": 532 + } + }, + "affiz": { + "$": 3070 + }, + "netshelter": { + "$": 528 + }, + "readserver": { + "$": 3086 + }, + "axf8": { + "$": 2933 + }, + "qbaka": { + "$": 3096 + }, + "certona": { + "$": 2931 + }, + "adhigh": { + "$": 3112 + }, + "webtrekk-asia": { + "$": 468 + }, + "facetz": { + "$": 3116 + }, + "webtrekk": { + "$": 468 + }, + "ixcloud": { + "cizion": { + "kr": { + "co": { + "livere": { + "$": 3134 + } + } + } + } + }, + "peer39": { + "$": 461 + }, + "viraladnetwork": { + "$": 3139 + }, + "fusionads": { + "adn": { + "$": 1494 + }, + "$": 3332 + }, + "intgr": { + "$": 3150 + }, + "mxpnl": { + "$": 4022 + }, + "linkoffers": { + "$": 3154 + }, + "adtegrity": { + "$": 224 + }, + "mobalyzer": { + "$": 3159 + }, + "searchforce": { + "$": 205 + }, + "sayyac": { + "srv": { + "$": 3199 + } + }, + "collective-media": { + "$": 172 + }, + "ehavior": { + "$": 3212 + }, + "rfihub": { + "$": 184 + }, + "placester": { + "ads": { + "$": 3224 + } + }, + "adbureau": { + "$": 62 + }, + "cobrowser": { + "client": { + "$": 3233 + } + }, + "pro-market": { + "$": 171 + }, + "wspisp": { + "scorecard": { + "$": 3236 + } + }, + "adnxs": { + "$": 170 + }, + "conversionlogic": { + "c": { + "$": 3263 + } + }, + "abmr": { + "$": 3428 + }, + "deqwas": { + "$": 3279 + }, + "pages01": { + "$": 1335 + }, + "intextad": { + "pl-engine": { + "$": 3294 + } + }, + "pages02": { + "$": 1335 + }, + "netbiscuits": { + "$": 3317 + }, + "pages05": { + "$": 1335 + }, + "zwaar": { + "$": 3325 + }, + "mkt51": { + "$": 1313 + }, + "windows": { + "core": { + "blob": { + "insitez": { + "$": 3328 + } + } + } + }, + "vtrenz": { + "gw-services": { + "$": 162 + } + }, + "liqwid": { + "$": 3358 + }, + "marketo": { + "$": 159 + }, + "decibelinsight": { + "cdn": { + "$": 3369 + } + }, + "reinvigorate": { + "$": 127 + }, + "webcollage": { + "content": { + "$": 3421 + }, + "media": { + "$": 3423 + } + }, + "chitika": { + "$": 118 + }, + "webcollag": { + "rel": { + "$": 3612 + } + }, + "lypn": { + "$": 107 + }, + "247inc": { + "px": { + "targetpsp": { + "$": 3460 + } + } + }, + "crwdcntrl": { + "$": 105 + }, + "freegeoip": { + "$": 3483 + }, + "cdngc": { + "sslcs": { + "clicktalecdn": { + "$": 1012 + } + } + }, + "freehostedscripts": { + "$": 3483 + }, + "clicktale": { + "$": 104 + }, + "vi-tag": { + "ad": { + "$": 3487 + }, + "$": 3488 + }, + "lpsnmedia": { + "$": 102 + }, + "cogocast": { + "gpush": { + "$": 4736 + } + }, + "liveperson": { + "$": 102 + }, + "knotice": { + "$": 3514 + }, + "afy11": { + "$": 100 + }, + "omniretailgroup": { + "fba": { + "$": 3547 + } + }, + "baynote": { + "$": 1059 + }, + "servesharp": { + "cts": { + "$": 3565 + } + }, + "facebook": { + "connect": { + "$": 1027 + } + }, + "wistia": { + "fast": { + "$": 3589 + } + }, + "pictela": { + "$": 2531 + }, + "smartclip": { + "sxp": { + "ad": { + "$": 3605 + } + } + }, + "criteo": { + "$": 54 + }, + "audienceinsights": { + "secure": { + "$": 3654 + } + }, + "chartbeat": { + "$": 47 + }, + "mediapostcommunication": { + "mt": { + "$": 3655 + } + }, + "wunderloop": { + "$": 1051 + }, + "adjs": { + "api": { + "$": 3772 + }, + "cdn": { + "$": 3773 + } + }, + "revsci": { + "$": 45 + }, + "anvato": { + "analytics": { + "rt": { + "$": 3797 + } + } + }, + "ati-host": { + "$": 40 + }, + "brightcove": { + "players": { + "$": 3838 + } + }, + "dlqm": { + "$": 38 + }, + "adsafety": { + "cm": { + "$": 3891 + }, + "tags": { + "$": 3892 + } + }, + "yldmgrimg": { + "$": 2230 + }, + "z-dn": { + "a-comet": { + "$": 4137 + } + }, + "yieldmanager": { + "ad": { + "$": 1577 + } + }, + "im-apps": { + "sync": { + "$": 3992 + } + }, + "tacoda": { + "$": 36 + }, + "valueclick": { + "$": 4093 + }, + "doubleclick": { + "g": { + "feedads": { + "$": 2877 + }, + "$": 35, + "securepubads": { + "$": 4134 + } + }, + "$": 35, + "ad": { + "$": 4135 + }, + "fls": { + "$": 965 + } + }, + "bilinmedia": { + "pixel": { + "$": 4216 + } + }, + "odnxs": { + "$": 1880 + }, + "globalwebindex": { + "gwiqcdn": { + "$": 4219 + } + }, + "openx": { + "$": 24 + }, + "advsnx": { + "banners": { + "$": 4231 + } + }, + "fmpub": { + "$": 23 + }, + "foxpush": { + "cdn": { + "$": 4669 + } + }, + "nuggad": { + "$": 21 + }, + "lkqd": { + "ad": { + "$": 4412 + } + }, + "hs-analytics": { + "$": 17 + }, + "adnegah": { + "native": { + "$": 4882 + } + }, + "imageg": { + "$": 3561 + }, + "blueconic": { + "$": 4422 + }, + "cloudfront": { + "du8783wkf05yr": { + "$": 1585 + }, + "d1lm7kd3bd3yo9": { + "$": 2483 + }, + "d3v27wwd40f0xu": { + "$": 2488 + }, + "d3iwjrnl4m67rd": { + "$": 2569 + }, + "d3s7ggfq1s6jlj": { + "$": 2430 + }, + "d2xkqxdy6ewr93": { + "$": 2619 + }, + "d2gfdmu30u15x7": { + "$": 2630 + }, + "dtlilztwypawv": { + "$": 2634 + }, + "d36lvucg9kzous": { + "$": 2647 + }, + "d1af033869koo7": { + "$": 2668 + }, + "d2oh4tlt9mrke9": { + "$": 2756 + }, + "d3qxef4rp70elm": { + "$": 2675 + }, + "d3cxv97fi8q177": { + "$": 2414 + }, + "de8of677fyt0b": { + "$": 2749 + }, + "d8rk54i4mohrb": { + "$": 1923 + }, + "d3nslu0hdya83q": { + "$": 2766 + }, + "dssja7qsifeak": { + "$": 1862 + }, + "d31bfnnwekbny6": { + "$": 2851 + }, + "d16fk4ms6rqz1v": { + "$": 1819 + }, + "dtkm4pd19nw6z": { + "$": 2853 + }, + "d36mpcpuzc4ztk": { + "$": 4000 + }, + "d2bw638ufki166": { + "$": 2960 + }, + "d3q6px0y2suh5n": { + "$": 1700 + }, + "d12ulf131zb0yj": { + "$": 2995 + }, + "d15qhc0lu1ghnk": { + "$": 1603 + }, + "d1447tq2m68ekg": { + "$": 3023 + }, + "d47xnnr8b1rki": { + "$": 1526 + }, + "d1tprjo2w7krrh": { + "$": 3028 + }, + "d2dq2ahtl5zl1z": { + "$": 1526 + }, + "d29p64779x43zo": { + "$": 3075 + }, + "dn3y71tq7jf07": { + "$": 1354 + }, + "d3von6il1wr7wo": { + "$": 3133 + }, + "dnhgz729v27ca": { + "$": 1371 + }, + "d3mvnvhjmkxpjz": { + "$": 3193 + }, + "d3rmnwi2tssrfx": { + "$": 1095 + }, + "d2wy8f7a9ursnm": { + "$": 3208 + }, + "d3pkntwtp2ukl5": { + "$": 1074 + }, + "d3uemyw1e5n0jw": { + "$": 3224 + }, + "d1ros97qkrwjf5": { + "$": 1009 + }, + "d1uwd25yvxu96k": { + "$": 3235 + }, + "d1ivexoxmp59q7": { + "$": 1117 + }, + "d3m83gvgzupli": { + "$": 3251 + }, + "d1cerpgff739r9": { + "$": 949 + }, + "d28ethi6slcjbm": { + "$": 3251 + }, + "d1qpxk1wfeh8v1": { + "$": 949 + }, + "d13im3ek7neeqp": { + "$": 3251 + }, + "d3ezl4ajpp2zy8": { + "$": 3379 + }, + "d2uevgmgh16uk4": { + "$": 3251 + }, + "d9lq0o81skkdj": { + "$": 845 + }, + "dl1d2m8ri9v3j": { + "$": 3291 + }, + "d5phz18u4wuww": { + "$": 1098 + }, + "d2zah9y47r7bi2": { + "$": 3291 + }, + "d1l6p2sc9645hc": { + "$": 1015 + }, + "d1q7pknmpq2wkm": { + "$": 3293 + }, + "d1991e1bwxgrnr": { + "$": 941 + }, + "d24n15hnbwhuhn": { + "$": 3297 + }, + "d1n7kk4vfnecsc": { + "$": 941 + }, + "d81mfvml8p5ml": { + "$": 3345 + }, + "doug1izaerwt3": { + "$": 941 + }, + "d1z2jf7jlzjs58": { + "$": 4033 + }, + "dnn506yrbagrg": { + "$": 942 + }, + "d1l7z5ofrj6ab8": { + "$": 4877 + }, + "d3aa0ztdn3oibi": { + "$": 2616 + } + }, + "yandexadexchange": { + "st": { + "$": 4486 + } + }, + "reedbusiness": { + "gwa": { + "$": 1584 + } + }, + "crownpeak": { + "searchg2": { + "$": 4612 + } + }, + "omtrdc": { + "$": 1035 + }, + "adscpm": { + "popserve": { + "$": 4704 + } + }, + "2o7": { + "$": 238 + }, + "userreplay": { + "$": 4929 + }, + "npario-inc": { + "$": 1810 + } + }, + "cloud": { + "glomex": { + "$": 4918 + } + }, + "com": { + "103092804": { + "ad": { + "$": 1079 + } + }, + "visualwebsiteoptimizer": { + "dev": { + "$": 455 + } + }, + "channeladvisor": { + "t": { + "$": 499 + } + }, + "roitesting": { + "$": 225 + }, + "voicestar": { + "$": 521 + }, + "gemius": { + "gasurvey": { + "$": 4884 + } + }, + "33across": { + "$": 498 + }, + "searchmarketing": { + "$": 499 + }, + "brtstats": { + "$": 531 + }, + "admeld": { + "js": { + "$": 478 + }, + "tag": { + "$": 478 + } + }, + "res-x": { + "$": 2931 + }, + "cybermonitor": { + "$": 3009 + }, + "wordstream": { + "tracker": { + "$": 221 + } + }, + "c-col": { + "$": 453 + }, + "optimost": { + "$": 504 + }, + "vdna-assets": { + "$": 1332 + }, + "buysellads": { + "$": 458 + }, + "brsrvr": { + "$": 531 + }, + "marinsm": { + "$": 230 + }, + "bidvertiser": { + "bdv": { + "$": 472 + }, + "srv": { + "$": 472 + } + }, + "mercent": { + "link": { + "$": 485 + } + }, + "estat": { + "$": 518 + }, + "h4k5": { + "$": 447 + }, + "newstogram": { + "$": 558 + }, + "mybuys": { + "p": { + "t": { + "$": 506 + } + } + }, + "visualdna": { + "$": 496 + }, + "eproof": { + "$": 462 + }, + "brcdn": { + "$": 531 + }, + "mixpanel": { + "$": 223 + }, + "channelintelligence": { + "$": 470 + }, + "ru4": { + "$": 487 + }, + "evolvemediametrics": { + "$": 1362 + }, + "stormiq": { + "$": 447 + }, + "xtendmedia": { + "$": 556 + }, + "ics0": { + "$": 2719 + }, + "mediaforge": { + "$": 494 + }, + "4seeresults": { + "replaycontroller": { + "$": 3556 + } + }, + "iesnare": { + "$": 529 + }, + "mxpnl": { + "$": 2102 + }, + "netmng": { + "$": 573 + }, + "xplusone": { + "ad": { + "$": 487 + } + }, + "dmd53": { + "$": 509 + }, + "dc-storm": { + "$": 447 + }, + "sesamestats": { + "$": 552 + }, + "navdmp": { + "$": 219 + }, + "retargeter": { + "$": 492 + }, + "quintelligence": { + "$": 465 + }, + "newsinc": { + "analytics": { + "$": 2529 + } + }, + "pardot": { + "$": 231 + }, + "cnet": { + "bwp": { + "$": 2571 + } + }, + "socialtwist": { + "$": 156 + }, + "dmtracker": { + "$": 509 + }, + "stormcontainertag": { + "$": 447 + }, + "pubmatic": { + "$": 544 + }, + "adtpix": { + "$": 224 + }, + "optorb": { + "$": 586 + }, + "wt-safetag": { + "responder": { + "$": 4792 + } + }, + "invitemedia": { + "$": 525 + }, + "rapleaf": { + "spruce": { + "$": 195 + } + }, + "com": { + "dw": { + "$": 572 + }, + "adlog": { + "$": 572 + } + }, + "percentmobile": { + "tracking": { + "$": 157 + } + }, + "contextweb": { + "$": 508 + }, + "histats": { + "$": 448 + }, + "adrdgt": { + "$": 542 + }, + "backtype": { + "widgets": { + "$": 203 + } + }, + "bluestreak": { + "$": 584 + }, + "comscore": { + "siterecruit": { + "$": 2999 + } + }, + "pulsemgr": { + "$": 543 + }, + "rlcdn": { + "$": 195 + }, + "adtechus": { + "$": 570, + "adserver": { + "$": 4232 + } + }, + "spylog": { + "$": 193 + }, + "ibpxl": { + "$": 602 + }, + "gosquared": { + "data": { + "$": 450 + } + }, + "amgdgt": { + "$": 542 + }, + "clixmetrix": { + "$": 228 + }, + "halogennetwork": { + "publishers": { + "$": 581 + }, + "hat": { + "$": 581 + } + }, + "snoobi": { + "$": 183 + }, + "serving-sys": { + "$": 523 + }, + "inq": { + "$": 227 + }, + "viglink": { + "m": { + "$": 563 + }, + "js": { + "$": 563 + }, + "api": { + "$": 563 + }, + "cdn": { + "$": 563 + } + }, + "zemanta": { + "$": 196 + }, + "legolas-media": { + "rt": { + "$": 595 + } + }, + "bizographics": { + "$": 182 + }, + "giantrealm": { + "a": { + "$": 538 + } + }, + "ebay": { + "rover": { + "$": 226 + }, + "adn": { + "$": 3140 + } + }, + "marketgid": { + "servicer": { + "$": 5022 + } + }, + "rfihub": { + "$": 184 + }, + "affbuzzads": { + "ads": { + "$": 619 + } + }, + "unica": { + "$": 225 + }, + "adjuggler": { + "rotator": { + "$": 561 + } + }, + "doubleverify": { + "$": 200 + }, + "metanetwork": { + "ad": { + "$": 593 + } + }, + "atdmt": { + "$": 62 + }, + "web-stat": { + "$": 535 + }, + "rsvpgenius": { + "$": 220 + }, + "mgid": { + "jsc": { + "$": 580 + }, + "servicer": { + "$": 4567 + } + }, + "shinystat": { + "$": 185 + }, + "adgrx": { + "$": 615 + }, + "mmismm": { + "$": 168 + }, + "mouseflow": { + "$": 560 + }, + "leadformix": { + "vlog": { + "$": 4402 + } + }, + "redirectingat": { + "$": 592 + }, + "etracker": { + "code": { + "$": 180 + } + }, + "sptag3": { + "$": 1145 + }, + "kissmetrics": { + "$": 222 + }, + "convergetrack": { + "hits": { + "$": 578 + } + }, + "visistat": { + "sniff": { + "$": 186 + }, + "stats": { + "$": 186 + } + }, + "adgear": { + "$": 615 + }, + "trafficfacts": { + "$": 169 + }, + "adlegend": { + "ad": { + "$": 559 + } + }, + "iperceptions": { + "$": 204 + }, + "skimresources": { + "$": 592 + }, + "sedotracker": { + "$": 1402 + }, + "ic-live": { + "$": 639 + }, + "mkt922": { + "$": 1313 + }, + "bridgetrack": { + "ads": { + "$": 576 + } + }, + "sa-as": { + "$": 1314 + }, + "pulse360": { + "content": { + "$": 614 + }, + "track": { + "$": 614 + } + }, + "adnxs": { + "$": 170 + }, + "mathtag": { + "$": 662, + "pixel": { + "$": 3531 + } + }, + "richrelevance": { + "media": { + "$": 210 + }, + "recs": { + "$": 210 + } + }, + "clickinc": { + "impression": { + "$": 591 + }, + "ca": { + "$": 591 + } + }, + "scoreresearch": { + "$": 398 + }, + "voicefive": { + "$": 633 + }, + "mkt941": { + "$": 1313 + }, + "netmining": { + "$": 1360 + }, + "sitestat": { + "$": 187 + }, + "did-it": { + "track": { + "$": 612 + } + }, + "exelator": { + "$": 173 + }, + "brightcove": { + "goku": { + "$": 658 + }, + "metrics": { + "$": 658 + } + }, + "clicktracks": { + "$": 151 + }, + "intermundomedia": { + "$": 587 + }, + "securestudies": { + "$": 398 + }, + "projectwonderful": { + "$": 632 + }, + "cmcore": { + "data": { + "$": 163 + } + }, + "appspot": { + "webiq-warp": { + "$": 676 + }, + "webiq-cdn": { + "$": 676 + }, + "snapabug": { + "$": 750 + }, + "promodity": { + "$": 2357 + }, + "hnbutton": { + "$": 2384 + }, + "musculahq": { + "$": 3754 + }, + "user-pulse": { + "$": 2623 + }, + "advancedtracker": { + "$": 2708 + }, + "triggeredmail": { + "$": 3044 + }, + "crossroadswow": { + "$": 3977 + } + }, + "nedstat": { + "$": 187 + }, + "lucidmedia": { + "$": 610 + }, + "fimserve": { + "$": 174 + }, + "upsellit": { + "$": 652 + }, + "extreme-dm": { + "$": 153 + }, + "cpmadvisors": { + "go": { + "$": 586 + } + }, + "scorecardresearch": { + "$": 398 + }, + "tellapart": { + "sslt": { + "$": 1698 + }, + "t": { + "$": 1698 + } + }, + "godatafeed": { + "tracking": { + "$": 744 + } + }, + "gigcount": { + "c": { + "$": 675 + } + }, + "blogads": { + "$": 143 + }, + "undertone": { + "ads": { + "$": 608 + }, + "$": 609 + }, + "nexac": { + "$": 176 + }, + "sitecompass": { + "$": 649 + }, + "ero-advertising": { + "adspaces": { + "$": 746 + } + }, + "eyewonder": { + "$": 693 + }, + "scrsrch": { + "$": 181 + }, + "agkn": { + "$": 627 + }, + "magnify360": { + "$": 164 + }, + "gigya": { + "counters": { + "$": 675 + }, + "cdn": { + "toolbar": { + "$": 1835 + } + }, + "us1": { + "gscounters": { + "$": 4220 + }, + "cdns": { + "$": 4467 + } + }, + "cdns": { + "$": 4221 + }, + "cdns2": { + "$": 4222 + } + }, + "adxpansion": { + "$": 747 + }, + "adblade": { + "$": 606 + }, + "trafficmp": { + "$": 177 + }, + "financialcontent": { + "tracker": { + "$": 647 + } + }, + "yieldoptimizer": { + "$": 727 + }, + "resultlinks": { + "data": { + "$": 692 + } + }, + "performable": { + "analytics": { + "$": 1754 + } + }, + "websitealive": { + "$": 2380 + }, + "en25": { + "$": 166 + }, + "precisionclick": { + "servedby": { + "$": 672 + }, + "geo": { + "$": 672 + } + }, + "displaymarketplace": { + "$": 728 + }, + "levexis": { + "$": 711 + }, + "turn": { + "$": 178, + "attadworks": { + "$": 2821 + } + }, + "cpmstar": { + "$": 645 + }, + "demandbase": { + "api": { + "$": 160 + }, + "leads": { + "$": 160 + } + }, + "adbuyer": { + "pixel": { + "$": 684 + } + }, + "adserverplus": { + "ad": { + "$": 870 + } + }, + "linksynergy": { + "$": 621 + }, + "eloqua": { + "$": 166 + }, + "reduxmedia": { + "$": 670 + }, + "maxymiser": { + "cg-global": { + "$": 713 + } + }, + "specificmedia": { + "smp": { + "$": 707 + }, + "leads": { + "$": 707 + }, + "$": 708 + }, + "connextra": { + "$": 734 + }, + "adengage": { + "adcode": { + "$": 643 + }, + "conv": { + "$": 643 + } + }, + "company-target": { + "$": 4614 + }, + "webtraxs": { + "$": 683 + }, + "crm-metrix": { + "$": 717 + }, + "p-td": { + "$": 724 + }, + "conduit": { + "api": { + "$": 736 + }, + "apps": { + "$": 736 + } + }, + "reduxmediagroup": { + "$": 670 + }, + "adknowledge": { + "$": 143 + }, + "quinstreet": { + "$": 706 + }, + "customerconversio": { + "$": 1025 + }, + "adready": { + "$": 640 + }, + "conduit-banners": { + "$": 985 + }, + "businessol": { + "stats": { + "$": 682 + } + }, + "wsod": { + "$": 694 + }, + "scanscout": { + "$": 2492 + }, + "facebook": { + "badge": { + "$": 1006 + }, + "graph": { + "$": 1502 + } + }, + "bluecava": { + "$": 665 + }, + "conduit-data": { + "$": 985 + }, + "qnsr": { + "$": 706 + }, + "visiblemeasures": { + "$": 699 + }, + "steelhousemedia": { + "px": { + "$": 742 + }, + "$": 743 + }, + "chango": { + "$": 720 + }, + "mookie1": { + "$": 680, + "t": { + "$": 3528 + } + }, + "trackalyzer": { + "$": 140 + }, + "tremormedia": { + "cdna": { + "$": 722 + } + }, + "pixazza": { + "$": 704 + }, + "mathads": { + "$": 662 + }, + "clarityray": { + "$": 1722 + }, + "luminate": { + "$": 1176 + }, + "webiqonline": { + "$": 676 + }, + "razoradserver": { + "$": 2385 + }, + "adsdk": { + "$": 2595 + }, + "cedexis": { + "$": 677 + }, + "eclkspbn": { + "$": 3928 + }, + "myswitchads": { + "$": 2950 + }, + "clkmon": { + "$": 1707 + }, + "ireporterstvads": { + "$": 2950 + }, + "clkrev": { + "$": 1707 + }, + "capacitygrid": { + "$": 2950 + }, + "clkads": { + "$": 1707 + }, + "tbnadserver": { + "$": 3283 + }, + "salesforceliveagent": { + "$": 1705 + }, + "addesktop": { + "$": 2263 + }, + "liveagentforsalesforce": { + "$": 1705 + }, + "jirafe": { + "$": 2265 + }, + "influads": { + "engine": { + "$": 1703 + } + }, + "dynamicyield": { + "px": { + "$": 2268 + }, + "st": { + "$": 4325 + } + }, + "providesupport": { + "image": { + "$": 1701 + }, + "secure": { + "$": 1701 + } + }, + "telemetryaudit": { + "$": 2273 + }, + "richmetrics": { + "$": 1700 + }, + "loggly": { + "$": 2275 + }, + "torbit": { + "insight": { + "$": 1697 + } + }, + "klikki": { + "$": 2276 + }, + "hlserve": { + "$": 1696 + }, + "adtoma": { + "$": 2281 + }, + "shop2market": { + "$": 1695 + }, + "adtomafusion": { + "$": 2281 + }, + "apptap": { + "api": { + "$": 1693 + }, + "widget": { + "$": 1693 + } + }, + "addoer": { + "$": 2290 + }, + "admarvel": { + "ads": { + "$": 1690 + } + }, + "synergy-e": { + "$": 2292 + }, + "affiliatelounge": { + "$": 1687 + }, + "medyanetads": { + "$": 2301 + }, + "reson8": { + "$": 1685 + }, + "nanigans": { + "$": 2306 + }, + "jumptime": { + "$": 1684 + }, + "iljmp": { + "$": 2308 + }, + "personyze": { + "counter": { + "$": 1683 + } + }, + "4wnet": { + "$": 2321 + }, + "scrippsnetworks": { + "adsremote": { + "$": 1672 + } + }, + "sharethrough": { + "$": 2324 + }, + "wigetmedia": { + "$": 1670 + }, + "streampad": { + "$": 2325 + }, + "directtrack": { + "$": 1666 + }, + "inpref": { + "$": 2278 + }, + "digitalriver": { + "track": { + "$": 1666 + } + }, + "contextly": { + "api": { + "$": 2332 + } + }, + "foodieblogroll": { + "ads": { + "$": 1665 + }, + "widget": { + "$": 1665 + } + }, + "adobetag": { + "$": 2334 + }, + "254a": { + "$": 1951 + }, + "affiliatefuture": { + "$": 2336 + }, + "unister-adservices": { + "$": 1660 + }, + "sessioncam": { + "$": 2756 + }, + "stat24": { + "hit": { + "$": 1652 + } + }, + "fqtag": { + "$": 2338 + }, + "pubdirecte": { + "$": 1648 + }, + "securepaths": { + "$": 2338 + }, + "pirchio": { + "$": 1647 + }, + "eniro": { + "ads": { + "$": 2340 + } + }, + "metaffiliation": { + "$": 1645 + }, + "affiliator": { + "$": 2341 + }, + "netaffiliation": { + "$": 1645 + }, + "swordfishdc": { + "$": 2342 + }, + "neodatagroup": { + "$": 1644 + }, + "wamcash": { + "$": 2344 + }, + "leiki": { + "$": 1642 + }, + "aztecash": { + "$": 2346 + }, + "juiceadv": { + "$": 1640 + }, + "kaltura": { + "$": 2351 + }, + "etargetnet": { + "$": 1638 + }, + "ezanga": { + "adserving": { + "$": 2352 + } + }, + "cpmprofit": { + "$": 1634 + }, + "buzzfed": { + "pglb": { + "$": 2355 + } + }, + "perfb": { + "$": 1632 + }, + "buzzfeed": { + "buzzbox": { + "$": 2356 + }, + "ct": { + "$": 2356 + } + }, + "awin1": { + "$": 1632 + }, + "promodity": { + "$": 2357 + }, + "adtraction": { + "track": { + "$": 1631 + } + }, + "adrecord": { + "$": 2361 + }, + "adtaily": { + "$": 1630 + }, + "buzzador": { + "$": 2362 + }, + "adoperator": { + "$": 1629 + }, + "perfectaudience": { + "$": 2363 + }, + "addyon": { + "$": 1627 + }, + "stathat": { + "$": 2364 + }, + "whoson": { + "$": 1626 + }, + "directrev": { + "$": 2440 + }, + "ligatus": { + "$": 1623 + }, + "luckyorange": { + "$": 2365 + }, + "ebuzzing": { + "$": 1621 + }, + "livestatserver": { + "$": 2365 + }, + "sup": { + "cnt": { + "$": 1617 + }, + "vitrine": { + "$": 3806 + } + }, + "aimatch": { + "$": 2367 + }, + "mtvnservices": { + "btg": { + "$": 1612 + } + }, + "siteheart": { + "$": 2368 + }, + "medleyads": { + "$": 1611 + }, + "brighteroption": { + "$": 2371 + }, + "awempire": { + "$": 1610 + }, + "buddymedia": { + "conversion": { + "$": 2372 + } + }, + "livejasmin": { + "creatives": { + "$": 1610 + } + }, + "postaffiliatepro": { + "$": 2374 + }, + "enecto": { + "trk": { + "$": 1608 + } + }, + "monitis": { + "track": { + "$": 2381 + } + }, + "enectoanalytics": { + "$": 1608 + }, + "adtlgc": { + "$": 1624 + }, + "moon-ray": { + "$": 1606 + }, + "livefyre": { + "$": 2386 + }, + "sailthru": { + "cdn": { + "$": 1605 + } + }, + "shareaholic": { + "cm": { + "$": 3182 + } + }, + "sail-horizon": { + "$": 1605 + }, + "clickprotector": { + "$": 2388 + }, + "errorception": { + "$": 1604 + }, + "callmeasurement": { + "$": 2389 + }, + "strands": { + "bizsolutions": { + "$": 1602 + } + }, + "gamned": { + "$": 2391 + }, + "revolvermaps": { + "$": 1601 + }, + "advertlets": { + "$": 2392 + }, + "networkhm": { + "ads": { + "$": 1594 + } + }, + "xtargeting": { + "$": 2393 + }, + "harrenmedianetwork": { + "ad": { + "$": 1594 + } + }, + "infinityads": { + "$": 2393 + }, + "impresionesweb": { + "$": 1593 + }, + "momentsharing": { + "$": 2393 + }, + "batanga": { + "$": 1591 + }, + "multipops": { + "$": 2393 + }, + "bazaarvoice": { + "reviews": { + "$": 1589 + }, + "ugc": { + "$": 1589 + }, + "nexus": { + "apps": { + "$": 3523 + } + }, + "network": { + "$": 3609 + } + }, + "onlineadultadvertising": { + "$": 2393 + }, + "gamerdna": { + "$": 1587 + }, + "paypopup": { + "$": 2393 + }, + "godaddy": { + "affiliate": { + "$": 1586 + }, + "seal": { + "$": 3229 + } + }, + "popupxxx": { + "$": 2393 + }, + "brand-server": { + "$": 1575 + }, + "xxxwebtraffic": { + "$": 2393 + }, + "partner-ads": { + "$": 1563 + }, + "adfalcon": { + "$": 2398 + }, + "adhese": { + "$": 1558 + }, + "statcount": { + "$": 2399 + }, + "goingup": { + "counter": { + "$": 1556 + } + }, + "usuarios-online": { + "$": 2399 + }, + "ad6media": { + "$": 1555 + }, + "informer": { + "hits": { + "$": 2574 + } + }, + "taboola": { + "$": 1551 + }, + "hit-counts": { + "$": 2574 + }, + "taboolasyndication": { + "$": 1551 + }, + "ademails": { + "$": 2574 + }, + "userreport": { + "sdscdn": { + "$": 1550 + }, + "visitanalytics": { + "$": 4089 + } + }, + "aqtracker": { + "$": 2574 + }, + "clixgalore": { + "is1": { + "www": { + "$": 1549 + } + } + }, + "clixsense": { + "$": 2403 + }, + "bbelements": { + "$": 1546 + }, + "adisn": { + "$": 2404 + }, + "adlooxtracking": { + "$": 1540 + }, + "minewhat": { + "$": 2405 + }, + "innity": { + "$": 1537 + }, + "bol": { + "tracking": { + "$": 2410 + } + }, + "cdnrl": { + "cdn": { + "$": 1529 + } + }, + "valuecommerce": { + "$": 2412 + }, + "adsrvmedia": { + "cdn": { + "$": 1529 + } + }, + "dgm-au": { + "$": 2415 + }, + "adk2": { + "$": 1529 + }, + "s2d6": { + "$": 2415 + }, + "v12groupinc": { + "$": 2755 + }, + "comm100": { + "$": 2416 + }, + "pswec": { + "$": 1806 + }, + "chatwing": { + "$": 2417 + }, + "segment": { + "$": 1526 + }, + "grt01": { + "$": 2418 + }, + "blogbang": { + "$": 1525 + }, + "grt02": { + "$": 2418 + }, + "omgpm": { + "$": 1518 + }, + "mobify": { + "a": { + "$": 2420 + } + }, + "sextracker": { + "$": 1515 + }, + "greystripe": { + "$": 2421 + }, + "clickboothlnk": { + "$": 1513 + }, + "moatads": { + "$": 2424 + }, + "adtoll": { + "$": 1512 + }, + "moatpixel": { + "$": 3518 + }, + "clickbooth": { + "$": 1512 + }, + "email-attitude": { + "tag": { + "$": 2425 + } + }, + "basebanner": { + "$": 4804 + }, + "netcommunities": { + "ads": { + "$": 2428 + }, + "ad": { + "$": 2428 + } + }, + "admailtiser": { + "$": 1507 + }, + "smartdevicemedia": { + "$": 2429 + }, + "vemba": { + "$": 2534 + }, + "lexity": { + "np": { + "$": 2432 + } + }, + "sonobi": { + "go": { + "$": 1498 + }, + "ads": { + "$": 1498 + } + }, + "bounceexchange": { + "$": 2436 + }, + "admob": { + "mm": { + "$": 1489 + }, + "mmv": { + "$": 1489 + }, + "p": { + "$": 1489 + }, + "a": { + "$": 1489 + } + }, + "audience2media": { + "ads": { + "$": 2444 + } + }, + "adserverpub": { + "$": 1482 + }, + "dtzads": { + "$": 2445 + }, + "albawaba": { + "ads": { + "$": 1481 + } + }, + "metrigo": { + "$": 2447 + }, + "de17a": { + "$": 1477 + }, + "markandmini": { + "$": 2448 + }, + "xg4ken": { + "$": 1476 + }, + "advansenow": { + "$": 2449 + }, + "wysistat": { + "$": 1475 + }, + "erovinmo": { + "$": 2450 + }, + "clickaider": { + "hit": { + "$": 1474 + } + }, + "linksmart": { + "$": 2450 + }, + "merchenta": { + "$": 1467 + }, + "jumptap": { + "$": 2451, + "sa": { + "$": 3519 + } + }, + "360yield": { + "ad": { + "$": 1460 + } + }, + "ontoplist": { + "$": 2452 + }, + "responsetap": { + "$": 1454 + }, + "nexage": { + "$": 2453 + }, + "adinsight": { + "$": 1454 + }, + "bigmobileads": { + "$": 2454 + }, + "adwitserver": { + "ads": { + "$": 1453 + } + }, + "tynt": { + "$": 2455 + }, + "twyn": { + "$": 1452 + }, + "flux": { + "$": 2458 + }, + "tlvmedia": { + "ad": { + "$": 1448 + }, + "ads": { + "$": 1448 + }, + "tag": { + "$": 1448 + } + }, + "massrelevance": { + "$": 2459 + }, + "reklamstore": { + "$": 1446 + }, + "tweetriver": { + "$": 2459 + }, + "bigdoor": { + "js": { + "$": 1436 + } + }, + "mlnadvertising": { + "$": 2460 + }, + "jinkads": { + "ads": { + "$": 1430 + } + }, + "jwpltx": { + "n": { + "i": { + "$": 2464 + } + }, + "s": { + "$": 2464 + } + }, + "adpersia": { + "$": 1425 + }, + "betweendigital": { + "$": 2465 + }, + "virgul": { + "$": 1424 + }, + "intencysrv": { + "$": 2465 + }, + "onlinewebstats": { + "$": 1421 + }, + "castleridgemedia": { + "$": 2467 + }, + "onlinewebstat": { + "$": 1421 + }, + "phone-analytics": { + "$": 2469 + }, + "pinimg": { + "s-passets": { + "$": 3567 + } + }, + "boo-box": { + "$": 2470 + }, + "pinterest": { + "api": { + "$": 2536 + }, + "ct": { + "$": 3516 + } + }, + "email-reflex": { + "$": 2471 + }, + "aweber": { + "$": 1416 + }, + "elicitapp": { + "$": 2476 + }, + "globe7": { + "ad": { + "$": 1413 + } + }, + "ideoclick": { + "$": 2477 + }, + "sitescout": { + "$": 1408 + }, + "nanorep": { + "$": 2479 + }, + "reklamz": { + "delivery": { + "$": 1407 + } + }, + "tcimg": { + "$": 2480 + }, + "gostats": { + "$": 1399 + }, + "r66t": { + "nodes": { + "$": 2481 + } + }, + "clovenetwork": { + "ad": { + "$": 1398 + }, + "ads": { + "$": 1398 + } + }, + "grepdata": { + "$": 2483 + }, + "inspectlet": { + "$": 1392 + }, + "getsidecar": { + "$": 2488 + }, + "reklamport": { + "ad": { + "$": 1386 + } + }, + "kontextua": { + "$": 2489 + }, + "sociomantic": { + "$": 1385 + }, + "inferclick": { + "$": 2491 + }, + "simply": { + "$": 1383 + }, + "rpxnow": { + "$": 2493 + }, + "contactatonce": { + "$": 1382 + }, + "janrainbackplane": { + "$": 2493 + }, + "extensionfactory": { + "builder": { + "$": 1381 + } + }, + "accmgr": { + "$": 2494 + }, + "buzzparadise": { + "$": 1380 + }, + "adzhub": { + "$": 2495 + }, + "branica": { + "$": 1378 + }, + "amxdt": { + "$": 2496 + }, + "admost": { + "run": { + "$": 1375 + } + }, + "eqads": { + "$": 2497 + }, + "delivery47": { + "$": 1372 + }, + "eyeviewads": { + "$": 2498 + }, + "addelive": { + "$": 1372 + }, + "bm23": { + "$": 2499 + }, + "afdads": { + "$": 1372 + }, + "strangeloopnetworks": { + "$": 2500 + }, + "activemeter": { + "$": 1369 + }, + "trw12": { + "$": 2503 + }, + "cbproads": { + "$": 1368 + }, + "tuberewards": { + "$": 2503 + }, + "turnto": { + "$": 1367 + }, + "audienceamplify": { + "ads": { + "$": 2504 + } + }, + "clickwinks": { + "$": 1365 + }, + "shoprunner": { + "$": 2507 + }, + "nextstat": { + "$": 1358 + }, + "adsrpt": { + "$": 2511 + }, + "clickmanage": { + "$": 1357 + }, + "footar": { + "$": 2511 + }, + "intergi": { + "ads": { + "$": 1356 + } + }, + "postrelease": { + "$": 2512 + }, + "etrigue": { + "$": 1353 + }, + "music-tags": { + "$": 2513 + }, + "ratevoice": { + "$": 1352 + }, + "sundaysky": { + "vop": { + "$": 2514 + } + }, + "engineseeker": { + "$": 1351 + }, + "qualtrics": { + "$": 2517 + }, + "adverline": { + "ads": { + "$": 1349 + }, + "ads2": { + "$": 1349 + } + }, + "monster": { + "jdn": { + "$": 2520 + } + }, + "shopzilla": { + "adserve": { + "$": 1348 + } + }, + "cookiereports": { + "$": 2522 + }, + "motigo": { + "webstats": { + "$": 1346 + } + }, + "boldchat": { + "$": 2523 + }, + "coremotives": { + "$": 1345 + }, + "userecho": { + "$": 2525 + }, + "singlefeed": { + "reporting": { + "$": 1344 + } + }, + "troveread": { + "$": 2526 + }, + "amazonaws": { + "s3": { + "convertglobal": { + "$": 1343 + }, + "sdsbucket": { + "$": 1550 + }, + "admarvel": { + "$": 1690 + }, + "rich-agent": { + "$": 1700 + }, + "inpref": { + "$": 2333 + }, + "livechat": { + "$": 2614 + }, + "getbarometer": { + "$": 2845 + }, + "cd-ladsp-com": { + "$": 2890 + }, + "yoapp": { + "$": 3295 + }, + "filamentapp": { + "$": 3933 + } + }, + "s3-external-3": { + "inpref": { + "$": 2333 + } + }, + "s3-eu-west-1": { + "userlike-cdn-widgets": { + "$": 4919 + } + } + }, + "pubsqrd": { + "$": 2533 + }, + "convertglobal": { + "$": 1342 + }, + "directavenue": { + "$": 2538 + }, + "collserve": { + "$": 1340 + }, + "veinteractive": { + "$": 2539 + }, + "istrack": { + "ts": { + "$": 1331 + } + }, + "dwin1": { + "$": 2540 + }, + "instantservice": { + "$": 1329 + }, + "hotkeys": { + "$": 2541 + }, + "merchantadvantage": { + "$": 1328 + }, + "ist-track": { + "$": 2543 + }, + "clickdimensions": { + "analytics": { + "$": 1327 + } + }, + "resultspage": { + "$": 2544 + }, + "appmetrx": { + "$": 1326 + }, + "1phads": { + "$": 2546 + }, + "urtbk": { + "$": 1324 + }, + "adexprt": { + "$": 2546 + }, + "sdfje": { + "$": 1324 + }, + "adexprts": { + "$": 2546 + }, + "popcde": { + "$": 1324 + }, + "adshostnet": { + "$": 2546 + }, + "mygeek": { + "$": 1324 + }, + "serve-sys": { + "$": 2546 + }, + "cpvtgt": { + "$": 1324 + }, + "locayta": { + "$": 2547 + }, + "cpvfeed": { + "$": 1324 + }, + "wipmania": { + "api": { + "$": 2548 + } + }, + "cptgt": { + "$": 1324 + }, + "confirmit": { + "$": 2550 + }, + "bannertgt": { + "$": 1324 + }, + "paypal": { + "offers": { + "$": 2551 + } + }, + "adtrgt": { + "$": 1324 + }, + "hellosociety": { + "$": 2554 + }, + "addlvr": { + "$": 1324 + }, + "convertlanguage": { + "analytics": { + "$": 2555 + } + }, + "adcde": { + "$": 1324 + }, + "solvemedia": { + "pixel": { + "$": 2556 + } + }, + "adfeedstrk": { + "$": 1324 + }, + "siteapps": { + "a": { + "$": 2557 + }, + "ae": { + "$": 2557 + } + }, + "avantlink": { + "$": 1323 + }, + "captifymedia": { + "$": 2558 + }, + "feedperfect": { + "tracking": { + "$": 1321 + } + }, + "flite": { + "$": 2559 + }, + "mongoosemetrics": { + "$": 1320 + }, + "rightaction": { + "$": 2560 + }, + "cxense": { + "$": 1318 + }, + "coroflot": { + "jobfeeds": { + "$": 2561 + } + }, + "intercomcdn": { + "$": 1316 + }, + "adshost1": { + "$": 2562 + }, + "vdopia": { + "$": 1310 + }, + "adshost2": { + "$": 2562 + }, + "adclickmedia": { + "$": 1304 + }, + "epom": { + "$": 2562 + }, + "atoomic": { + "$": 1301 + }, + "yieldsquare": { + "$": 2563 + }, + "free-pagerank": { + "$": 1300 + }, + "baidu": { + "cpro": { + "$": 2565 + }, + "cbjs": { + "$": 2565 + }, + "hm": { + "$": 2565 + } + }, + "sspcash": { + "$": 1299 + }, + "weibo": { + "widget": { + "$": 2566 + } + }, + "advertstream": { + "$": 1299 + }, + "sociablelabs": { + "$": 2568 + }, + "bubblestat": { + "in": { + "$": 1298 + } + }, + "triplelift": { + "$": 2569 + }, + "activengage": { + "go": { + "$": 1296 + } + }, + "3lift": { + "$": 2569 + }, + "grvcdn": { + "$": 1294 + }, + "agilone": { + "$": 2570 + }, + "gravity": { + "$": 1294 + }, + "freshplum": { + "$": 2579 + }, + "reachlocallivechat": { + "$": 1291 + }, + "tagcommander": { + "$": 2581 + }, + "reachlocal": { + "$": 1291 + }, + "commander1": { + "$": 2581 + }, + "linezing": { + "tongji": { + "$": 1288 + } + }, + "emailretargeting": { + "$": 2582 + }, + "toboads": { + "$": 1287 + }, + "hopscore": { + "apiae": { + "$": 2584 + } + }, + "httpool": { + "$": 1287 + }, + "ometria": { + "$": 2585 + }, + "centraliprom": { + "$": 1286 + }, + "onswipe": { + "$": 2588 + }, + "gestionpub": { + "$": 1281 + }, + "madadsmedia": { + "$": 2589 + }, + "punchtab": { + "$": 1279 + }, + "skinected": { + "$": 2590 + }, + "adfunky": { + "ad": { + "$": 1277 + } + }, + "adyoulike": { + "$": 2591 + }, + "ltassrv": { + "$": 1274 + }, + "omnitagjs": { + "adyoulike": { + "$": 2591 + } + }, + "600z": { + "$": 1272 + }, + "umbel": { + "api": { + "$": 2593 + } + }, + "listrak": { + "st": { + "$": 1269 + } + }, + "atomz": { + "$": 2594 + }, + "listrakbi": { + "$": 1268 + }, + "aerisapi": { + "$": 2597 + }, + "ubertags": { + "app": { + "$": 1267 + } + }, + "virtusize": { + "$": 2598 + }, + "techlightenment": { + "$": 1495 + }, + "adextent": { + "$": 2599 + }, + "audienceiq": { + "$": 1495 + }, + "speakpipe": { + "$": 2600 + }, + "traffiliate": { + "$": 1257 + }, + "piclens": { + "lite": { + "$": 2605 + } + }, + "rovion": { + "$": 1254 + }, + "channeliq": { + "$": 2608 + }, + "tidaltv": { + "$": 1250 + }, + "callrail": { + "$": 2613 + }, + "adfusion": { + "$": 1246 + }, + "livechatinc": { + "$": 2614 + }, + "adversaldisplay": { + "$": 1245 + }, + "salespidermedia": { + "$": 2617 + }, + "adversal": { + "go": { + "$": 1245 + } + }, + "yotpo": { + "$": 2618 + }, + "adversalservers": { + "$": 1245 + }, + "brainsins": { + "$": 2619 + }, + "auditude": { + "$": 1241 + }, + "avenseo": { + "$": 2620 + }, + "tubemogul": { + "rtd": { + "$": 2501 + }, + "rtb": { + "$": 2501 + } + }, + "netbooster": { + "$": 2621 + }, + "crsspxl": { + "$": 1264 + }, + "blockmetrics": { + "$": 2625 + }, + "liverail": { + "$": 1536 + }, + "pagefair": { + "$": 2625 + }, + "creative-serving": { + "ads": { + "$": 1480 + } + }, + "clickcertain": { + "$": 2626 + }, + "bnmla": { + "ad": { + "$": 1455 + } + }, + "remarketstats": { + "$": 2626 + }, + "ib-ibi": { + "$": 1211 + }, + "passionfruitads": { + "$": 2627 + }, + "optmd": { + "$": 1202 + }, + "yieldsoftware": { + "track": { + "$": 2628 + } + }, + "adotube": { + "$": 1848 + }, + "autonomycloud": { + "oc-track": { + "$": 2628 + } + }, + "veoxa": { + "$": 1195 + }, + "skysa": { + "$": 2629 + }, + "himediadx": { + "$": 2446 + }, + "tracelytics": { + "$": 2630 + }, + "hi-mediaserver": { + "$": 2446 + }, + "cdn-cs": { + "$": 2632 + }, + "himediads": { + "$": 2446 + }, + "siftscience": { + "$": 2634 + }, + "comclick": { + "$": 1190 + }, + "fluidsurveys": { + "$": 2635 + }, + "sophus3": { + "$": 1189 + }, + "pingagenow": { + "$": 2636 + }, + "hishaku": { + "$": 1187 + }, + "monetize-me": { + "$": 2639 + }, + "cho-chin": { + "$": 1187 + }, + "adklip": { + "$": 2640 + }, + "donburako": { + "$": 1187 + }, + "atedra": { + "$": 2643 + }, + "plista": { + "$": 1184 + }, + "xrea": { + "ax": { + "$": 2645 + } + }, + "nxtck": { + "$": 1179 + }, + "adspynet": { + "$": 2648 + }, + "cnzz": { + "$": 1174 + }, + "adframesrc": { + "$": 2649 + }, + "exdynsrv": { + "syndication": { + "$": 5025 + } + }, + "chatango": { + "$": 2652 + }, + "exoclick": { + "$": 1171 + }, + "skyglue": { + "$": 2653 + }, + "spectate": { + "$": 1166 + }, + "aimediagroup": { + "$": 2655 + }, + "cmmeglobal": { + "$": 1162 + }, + "77tracking": { + "$": 2656 + }, + "cognitivematch": { + "$": 1162 + }, + "scastnet": { + "$": 2657 + }, + "linkedin": { + "platform": { + "$": 1161 + }, + "ads": { + "imp2": { + "$": 4796 + } + } + }, + "intentiq": { + "$": 2658 + }, + "hotwords": { + "$": 1159 + }, + "splurgi": { + "$": 2661 + }, + "visualrevenue": { + "$": 1153 + }, + "splurgy": { + "$": 2661 + }, + "advertise": { + "$": 1150 + }, + "socialamp": { + "$": 2663 + }, + "unthem": { + "$": 1146 + }, + "lcxdigital": { + "$": 2664 + }, + "microadinc": { + "$": 1146 + }, + "flxpxl": { + "$": 2665 + }, + "adjug": { + "$": 1143 + }, + "shopping-flux": { + "tracking": { + "$": 2666 + } + }, + "p-advg": { + "c": { + "$": 1138 + } + }, + "beezup": { + "tracker": { + "$": 2667 + } + }, + "adplan-ds": { + "$": 1137 + }, + "sitewit": { + "analytics": { + "$": 2670 + } + }, + "carbonads": { + "$": 1134 + }, + "beanstalkdata": { + "$": 2671 + }, + "entireweb": { + "admarket": { + "$": 3082 + }, + "affiliate": { + "$": 3082 + } + }, + "opinionbar": { + "$": 2672 + }, + "adonion": { + "$": 1130 + }, + "mogointeractive": { + "$": 2674 + }, + "networkedblogs": { + "nwidget": { + "$": 1129 + } + }, + "searchlinks": { + "js": { + "$": 4886 + }, + "results": { + "$": 4889 + }, + "api": { + "$": 4890 + } + }, + "2leep": { + "$": 1128 + }, + "worthathousandwords": { + "$": 2677 + }, + "w3roi": { + "$": 1125 + }, + "exactag": { + "$": 2678 + }, + "peerius": { + "$": 1124 + }, + "zappos": { + "track": { + "$": 2681 + } + }, + "theblogfrog": { + "$": 1123 + }, + "natpal": { + "$": 2684 + }, + "wahoha": { + "$": 1122 + }, + "co2stats": { + "$": 2685 + }, + "investingchannel": { + "$": 1121 + }, + "jivosite": { + "$": 2686 + }, + "topsy": { + "cdn": { + "$": 1120 + }, + "otter": { + "$": 1120 + } + }, + "clickandchat": { + "$": 2687 + }, + "indieclick": { + "$": 1119 + }, + "adimpact": { + "$": 2691 + }, + "scribol": { + "$": 1118 + }, + "jivox": { + "$": 2692 + }, + "tailsweep": { + "$": 1116 + }, + "perfectmarket": { + "$": 2693 + }, + "nuffnang": { + "$": 1114 + }, + "speedshiftmedia": { + "$": 2694 + }, + "persianstat": { + "$": 1112 + }, + "amobee": { + "$": 2695 + }, + "parsely": { + "static": { + "$": 1111 + }, + "$": 1509 + }, + "netavenir": { + "$": 2698 + }, + "olark": { + "$": 1109 + }, + "syn-api": { + "siena1": { + "$": 2700 + } + }, + "radarurl": { + "$": 1108 + }, + "reachjunction": { + "$": 2701 + }, + "dynamicoxygen": { + "$": 1104 + }, + "sojern": { + "$": 2703 + }, + "exitjunction": { + "$": 1103 + }, + "conversionsondemand": { + "$": 2704 + }, + "prosperent": { + "$": 1102 + }, + "provenpixel": { + "$": 2705 + }, + "admedia": { + "$": 1099 + }, + "mmadsgadget": { + "$": 2706 + }, + "linkconnector": { + "$": 1097 + }, + "qadabra": { + "$": 2706 + }, + "activeconversion": { + "$": 1096 + }, + "qadserve": { + "$": 2706 + }, + "springmetrics": { + "$": 1094 + }, + "qadservice": { + "$": 2706 + }, + "admaym": { + "$": 3607 + }, + "propellerads": { + "$": 2707 + }, + "atemda": { + "$": 1092 + }, + "propellerpops": { + "$": 2707 + }, + "impdesk": { + "$": 1089 + }, + "oclaserver": { + "$": 2707 + }, + "impressiondesk": { + "$": 1089 + }, + "onclkds": { + "$": 4165 + }, + "hitsniffer": { + "$": 1088 + }, + "webstat": { + "$": 2710 + }, + "expo-max": { + "$": 1087 + }, + "sitemaji": { + "ad": { + "$": 2711 + } + }, + "pocketcents": { + "$": 1084 + }, + "admaxim": { + "$": 2712 + }, + "complex": { + "$": 1083 + }, + "doogleonduty": { + "$": 2713 + }, + "complexmedianetwork": { + "$": 1082 + }, + "clickreport": { + "$": 2713 + }, + "adbull": { + "$": 1081 + }, + "broadstreetads": { + "$": 2714 + }, + "kmdisplay": { + "$": 1079 + }, + "ad2games": { + "$": 2715 + }, + "brainient": { + "$": 1077 + }, + "conmio": { + "analytics": { + "$": 2722 + } + }, + "zopim": { + "$": 1076 + }, + "moceanads": { + "ads": { + "$": 2723 + } + }, + "unbounce": { + "t": { + "$": 1075 + } + }, + "superpages": { + "impr": { + "$": 2724 + } + }, + "freeonlineusers": { + "$": 1069 + }, + "atti": { + "g": { + "display-img": { + "$": 2728 + } + } + }, + "meteorsolutions": { + "$": 1068 + }, + "sepyra": { + "$": 2729 + }, + "waterfrontmedia": { + "$": 1024 + }, + "googlesyndiscation": { + "$": 2730 + }, + "adreactor": { + "$": 1018 + }, + "jquery-framework": { + "$": 2730 + }, + "footprintlive": { + "img": { + "$": 1017 + }, + "script": { + "$": 1017 + } + }, + "jquerye": { + "$": 2730 + }, + "clickfuse": { + "srv": { + "$": 1013 + } + }, + "jqueryc": { + "$": 2730 + }, + "newrelic": { + "$": 1009 + }, + "juquery": { + "$": 2730 + }, + "adorika": { + "$": 1622 + }, + "antventure": { + "ad": { + "$": 2732 + } + }, + "clickotmedia": { + "ad": { + "$": 1005 + } + }, + "adgile": { + "ad": { + "$": 2732 + } + }, + "adition": { + "$": 1004 + }, + "deliads": { + "ads": { + "$": 2733 + } + }, + "clipsyndicate": { + "eplayer": { + "$": 1003 + } + }, + "researchnow": { + "$": 2735 + }, + "netseer": { + "$": 994 + }, + "d-msquared": { + "$": 2736 + }, + "dinclinx": { + "$": 989 + }, + "iflychat": { + "api": { + "$": 2739 + } + }, + "advertisespace": { + "$": 988 + }, + "pixelinteractivemedia": { + "$": 2745 + }, + "technoratimedia": { + "$": 980 + }, + "devatics": { + "$": 2747 + }, + "board-books": { + "$": 3013 + }, + "apptegic": { + "$": 2748 + }, + "amigos": { + "$": 1140 + }, + "evergage": { + "$": 2748 + }, + "facebookofsex": { + "$": 976 + }, + "eum-appdynamics": { + "$": 2749 + }, + "adultfriendfinder": { + "$": 974 + }, + "moontoast": { + "$": 2750 + }, + "getiton": { + "$": 973 + }, + "adacado": { + "$": 2751 + }, + "nostringsattached": { + "$": 972 + }, + "gpm-digital": { + "$": 2760 + }, + "cams": { + "$": 971 + }, + "veeseo": { + "$": 2762 + }, + "pop6": { + "$": 970 + }, + "lanistaads": { + "$": 2764 + }, + "streamray": { + "$": 969 + }, + "getsentry": { + "app": { + "$": 3765 + }, + "api": { + "$": 3766 + } + }, + "adsafeprotected": { + "$": 967 + }, + "a-ads": { + "$": 2767 + }, + "smowtion": { + "$": 960 + }, + "adjal": { + "$": 2768 + }, + "etology": { + "pages": { + "$": 958 + } + }, + "envolve": { + "$": 2769 + }, + "shareasale": { + "$": 957 + }, + "breakingburner": { + "widget": { + "$": 2823 + } + }, + "matchbin": { + "analytics": { + "$": 955 + } + }, + "uadx": { + "$": 2825 + }, + "pntrs": { + "$": 951 + }, + "onscroll": { + "$": 2828 + }, + "pntrac": { + "$": 951 + }, + "dotandad": { + "$": 2829 + }, + "pntra": { + "$": 951 + }, + "usabilla": { + "w": { + "$": 2831 + } + }, + "pjtra": { + "$": 951 + }, + "kmi-us": { + "$": 2832 + }, + "pjatr": { + "$": 951 + }, + "econa": { + "data": { + "$": 2840 + } + }, + "gopjn": { + "$": 951 + }, + "gravatar": { + "$": 2841 + }, + "kissinsights": { + "j": { + "$": 940 + } + }, + "adparlor": { + "$": 2843 + }, + "dmtry": { + "$": 937 + }, + "adparlour": { + "$": 2843 + }, + "adperium": { + "$": 931 + }, + "yieldify": { + "$": 2847 + }, + "convertro": { + "sp1": { + "$": 926 + } + }, + "q1mediahydraplatform": { + "$": 2848 + }, + "hurra": { + "$": 1205 + }, + "q1media": { + "ads": { + "$": 2848 + } + }, + "ptp33": { + "$": 919 + }, + "paperg": { + "$": 2849 + }, + "ptp22": { + "$": 919 + }, + "projectsunblock": { + "$": 2850 + }, + "777seo": { + "$": 919 + }, + "justpremium": { + "$": 2854 + }, + "liftdna": { + "rt": { + "$": 917 + } + }, + "ipfingerprint": { + "dust": { + "$": 2855 + } + }, + "dedicatedmedia": { + "ads": { + "$": 906 + } + }, + "adtrustmedia": { + "$": 2856 + }, + "akncdn": { + "a": { + "$": 903 + } + }, + "ibillboard": { + "$": 2861 + }, + "conviva": { + "livepass": { + "$": 898 + }, + "livepassdl": { + "$": 898 + } + }, + "goadservices": { + "$": 2861 + }, + "geoads": { + "js": { + "$": 891 + } + }, + "e-viral": { + "net": { + "$": 2862 + } + }, + "afcyhf": { + "$": 3066 + }, + "tapcommerce": { + "$": 2863 + }, + "tkqlhce": { + "$": 2696 + }, + "uk": { + "search123": { + "$": 2866 + } + }, + "awltovhc": { + "$": 2373 + }, + "wrating": { + "$": 2867 + }, + "emjcd": { + "$": 1906 + }, + "feedsportal": { + "$": 2873 + }, + "apmebf": { + "$": 1439 + }, + "ads-digitalkeys": { + "$": 2878 + }, + "tqlkg": { + "$": 953 + }, + "livechatnow": { + "$": 2879 + }, + "ftjcfx": { + "$": 952 + }, + "crankyads": { + "$": 2881 + }, + "ad4game": { + "ads": { + "$": 883 + } + }, + "pub-fit": { + "$": 2882 + }, + "pheedo": { + "ads": { + "$": 880 + } + }, + "userdive": { + "$": 2883 + }, + "juicyads": { + "$": 879 + }, + "affiliate-b": { + "track": { + "$": 2886 + } + }, + "sparkstudios": { + "rts": { + "$": 878 + } + }, + "ladsp": { + "$": 2890 + }, + "zanox": { + "$": 874 + }, + "ladmp": { + "$": 2890 + }, + "saymedia": { + "ads": { + "$": 1531 + } + }, + "behavioralengine": { + "$": 2891 + }, + "backbeatmedia": { + "$": 867 + }, + "coull": { + "$": 2893 + }, + "5min": { + "$": 864 + }, + "usercycle": { + "api": { + "$": 2895 + } + }, + "veruta": { + "$": 908 + }, + "purechat": { + "$": 2896 + }, + "qservz": { + "$": 1545 + }, + "yieldmo": { + "$": 2897 + }, + "quisma": { + "tracking": { + "$": 1545 + } + }, + "slingpic": { + "$": 2898 + }, + "redplum": { + "vdrn": { + "$": 890 + } + }, + "reactful": { + "plugin": { + "$": 2903 + } + }, + "tradedoubler": { + "$": 968 + }, + "media-clic": { + "$": 2904 + }, + "adrcntr": { + "$": 2138 + }, + "tinypass": { + "$": 2909 + }, + "adrcdn": { + "$": 2138 + }, + "yengo": { + "$": 2910 + }, + "mplxtms": { + "$": 137 + }, + "yengointernational": { + "$": 2910 + }, + "mediaplex": { + "$": 4092 + }, + "gittip": { + "$": 2912 + }, + "heias": { + "$": 1459 + }, + "adslot": { + "$": 2915 + }, + "spongecell": { + "$": 850 + }, + "numbate": { + "$": 2918 + }, + "adsbwm": { + "$": 848 + }, + "effiliation": { + "$": 2920 + }, + "adconnexa": { + "$": 848 + }, + "etgdta": { + "$": 2923 + }, + "domdex": { + "$": 927 + }, + "hubrus": { + "$": 2924 + }, + "mythings": { + "$": 843 + }, + "psyma": { + "$": 2927 + }, + "eyereturn": { + "$": 841 + }, + "vntsm": { + "$": 2930 + }, + "raasnet": { + "$": 839 + }, + "crossss": { + "$": 2935 + }, + "ctnsnet": { + "$": 1572 + }, + "trafmag": { + "$": 2937 + }, + "ctpsnet": { + "$": 2262 + }, + "ohmystats": { + "$": 2941 + }, + "ctasnet": { + "$": 2262 + }, + "developermedia": { + "$": 2948 + }, + "struq": { + "$": 1470 + }, + "countby": { + "$": 2955 + }, + "proximic": { + "$": 2734 + }, + "granify": { + "$": 2960 + }, + "thebrighttag": { + "s": { + "$": 959 + } + }, + "12mnkys": { + "$": 2961 + }, + "btstatic": { + "$": 817 + }, + "mpnrs": { + "$": 2962 + }, + "truste": { + "choices-or": { + "$": 3529 + }, + "privacy-policy": { + "$": 2576 + }, + "consent": { + "$": 2638 + } + }, + "tradepub": { + "cts": { + "$": 2965 + } + }, + "tealiumiq": { + "$": 1359 + }, + "revresponse": { + "$": 2965 + }, + "tiqcdn": { + "$": 1359 + }, + "creativecdn": { + "$": 2967 + }, + "tealium": { + "$": 813 + }, + "mentad": { + "$": 2968 + }, + "spotxcdn": { + "aka": { + "$": 3840 + } + }, + "mediapass": { + "$": 2969 + }, + "spotxchange": { + "$": 1583 + }, + "traforet": { + "$": 2970 + }, + "sascdn": { + "ak": { + "$": 3923 + }, + "ec-ns": { + "$": 4073 + } + }, + "caspion": { + "$": 2972 + }, + "styria-digital": { + "$": 3316 + }, + "valuead": { + "$": 2973 + }, + "yoc-adserver": { + "$": 2427 + }, + "populis": { + "$": 2974 + }, + "smartadserver": { + "$": 982 + }, + "populisengage": { + "$": 2974 + }, + "choicestream": { + "$": 1892 + }, + "adperfect": { + "$": 2975 + }, + "btrll": { + "$": 807, + "cache": { + "$": 3616 + } + }, + "coinurl": { + "$": 2976 + }, + "dmmotion": { + "$": 1154 + }, + "webleads-tracker": { + "$": 2978 + }, + "nspmotion": { + "$": 1154 + }, + "flurry": { + "data": { + "$": 2980 + } + }, + "adcentriconline": { + "$": 1023 + }, + "applifier": { + "$": 2981 + }, + "acxiom-online": { + "$": 2478, + "p-eu": { + "$": 3637 + } + }, + "socialcash": { + "$": 2983 + }, + "acxiom": { + "$": 2478 + }, + "irs09": { + "$": 2984 + }, + "adxpose": { + "servedby": { + "$": 773 + }, + "ads": { + "$": 773 + }, + "event": { + "$": 773 + } + }, + "acs86": { + "$": 2984 + }, + "flashtalking": { + "servedby": { + "$": 771 + }, + "stat": { + "$": 771 + }, + "cdn": { + "$": 771 + }, + "a": { + "$": 771 + }, + "fdz": { + "$": 771 + } + }, + "csbew": { + "$": 2984 + }, + "adshuffle": { + "$": 769 + }, + "admasterapi": { + "$": 2985 + }, + "wtp101": { + "$": 768 + }, + "mlt01": { + "$": 2986 + }, + "gwallet": { + "$": 766 + }, + "webterren": { + "$": 2988 + }, + "interpolls": { + "hs": { + "$": 763 + }, + "sw": { + "$": 763 + } + }, + "optaim": { + "$": 2989 + }, + "c3tag": { + "$": 1230 + }, + "miaozhen": { + "$": 2990 + }, + "c3metrics": { + "$": 751 + }, + "meltdsp": { + "$": 2993 + }, + "csdata1": { + "dsa": { + "$": 477 + } + }, + "widespace": { + "$": 2994 + }, + "collarity": { + "service": { + "$": 129 + } + }, + "reachforce": { + "$": 2995 + }, + "cubics": { + "$": 143 + }, + "insightera": { + "$": 2996 + }, + "marketo": { + "$": 159 + }, + "getdrip": { + "$": 2997 + }, + "coremetrics": { + "$": 163 + }, + "exactdrive": { + "ads": { + "$": 2998 + } + }, + "adrevolver": { + "$": 148 + }, + "mrskincash": { + "$": 3000 + }, + "media6degrees": { + "$": 145 + }, + "genesismedia": { + "$": 3001 + }, + "fetchback": { + "pixel": { + "$": 161 + } + }, + "adgorithms": { + "$": 3002 + }, + "imiclk": { + "$": 3428 + }, + "mobicow": { + "$": 3003 + }, + "twittercounter": { + "$": 115 + }, + "readrboard": { + "$": 3004 + }, + "smrtlnks": { + "$": 130 + }, + "rumanalytics": { + "$": 3006 + }, + "bidsystem": { + "$": 143 + }, + "metalyzer": { + "$": 3008 + }, + "mktoresp": { + "$": 159 + }, + "cpmterra": { + "$": 3014 + }, + "burstbeacon": { + "$": 141 + }, + "clickmeter": { + "$": 3018 + }, + "brealtime": { + "$": 106 + }, + "9nl": { + "$": 3018 + }, + "technorati": { + "$": 76 + }, + "adespresso": { + "$": 3019 + }, + "mkt912": { + "$": 1313 + }, + "visibility-stats": { + "$": 3020 + }, + "pantherssl": { + "clicktale": { + "$": 1012 + } + }, + "abtasty": { + "$": 3338 + }, + "dtmpub": { + "$": 339 + }, + "ringrevenue": { + "$": 3025 + }, + "casalemedia": { + "$": 133 + }, + "ekmpinpoint": { + "$": 3026 + }, + "adkengage": { + "$": 143 + }, + "inside-graph": { + "$": 3027 + }, + "onestat": { + "stat": { + "$": 123 + } + }, + "leadid": { + "create": { + "$": 3028 + } + }, + "gumgum": { + "$": 315, + "c": { + "$": 3296 + } + }, + "kameleoon": { + "$": 3029 + }, + "doublepimp": { + "$": 70 + }, + "breezeads": { + "adsby": { + "$": 3031 + } + }, + "formalyzer": { + "$": 140 + }, + "h12-media": { + "$": 3032 + }, + "bigfineads": { + "$": 106 + }, + "cpvadvertise": { + "$": 3034 + }, + "cpxinteractive": { + "$": 106 + }, + "klixfeed": { + "$": 3035 + }, + "dotomi": { + "$": 339 + }, + "gloadmarket": { + "$": 3036 + }, + "echoenabled": { + "$": 3012 + }, + "vcommission": { + "tracking": { + "$": 3038 + } + }, + "kanoodle": { + "$": 111 + }, + "rundsp": { + "match": { + "$": 3039 + } + }, + "sixapart": { + "ads": { + "$": 80 + } + }, + "runadtag": { + "$": 3039 + }, + "bing": { + "bat": { + "$": 3340 + } + }, + "captora": { + "pixel": { + "$": 3040 + } + }, + "w3counter": { + "$": 121 + }, + "orange142": { + "ads": { + "$": 3041 + } + }, + "atlassbx": { + "cdn": { + "$": 3568 + } + }, + "live2support": { + "$": 3042 + }, + "racingpost": { + "ads": { + "$": 2385 + }, + "delivery": { + "$": 2385 + } + }, + "valuepubmedia": { + "$": 3045 + }, + "roimediadigital": { + "$": 2950 + }, + "green-red": { + "$": 3046 + }, + "hitslink": { + "$": 120 + }, + "nplexmedia": { + "$": 3047 + }, + "zedo": { + "$": 97 + }, + "blueadvertise": { + "my": { + "$": 3048 + } + }, + "lzjl": { + "$": 72 + }, + "linkbucks": { + "$": 3049 + }, + "chartbeat": { + "$": 47 + }, + "xertivemedia": { + "$": 3053 + }, + "insightexpressai": { + "$": 110 + }, + "cpmrocket": { + "$": 3055 + }, + "disqus": { + "$": 977 + }, + "ngdata": { + "uts": { + "$": 3058 + } + }, + "bluelithium": { + "$": 148 + }, + "nirror": { + "static": { + "$": 3059 + } + }, + "hitsprocessor": { + "$": 1311 + }, + "leadsius": { + "tracker": { + "$": 3061 + } + }, + "overture": { + "$": 86 + }, + "crowdprocess": { + "ss": { + "$": 3062 + } + }, + "atwola": { + "$": 1058 + }, + "prospecteye": { + "tr": { + "$": 3063 + } + }, + "adultadworld": { + "$": 68 + }, + "adbooth": { + "$": 3064 + }, + "webtrendslive": { + "$": 1046 + }, + "bet365affiliates": { + "$": 3065 + }, + "digg": { + "widgets": { + "$": 978 + } + }, + "iasbetaffiliates": { + "$": 3065 + }, + "sexinyourcity": { + "ads": { + "$": 71 + } + }, + "webengage": { + "widgets": { + "$": 3067 + } + }, + "burstnet": { + "$": 141 + }, + "ad-sys": { + "$": 3068 + }, + "cpxadroit": { + "$": 106 + }, + "clickdesk": { + "$": 3069 + }, + "tribalfusion": { + "$": 78 + }, + "1sponsor": { + "$": 3072 + }, + "myroitracking": { + "$": 1766 + }, + "clicktripz": { + "$": 3073 + }, + "mobsmith": { + "$": 2422 + }, + "iqnomy": { + "$": 3076 + }, + "vizu": { + "$": 655 + }, + "smaclick": { + "$": 4573 + }, + "advertising": { + "$": 1057 + }, + "toroadvertising": { + "$": 3081 + }, + "adbrite": { + "$": 67 + }, + "toroadvertisingmedia": { + "$": 3081 + }, + "bmmetrix": { + "$": 126 + }, + "kiosked": { + "widgets": { + "$": 3083 + } + }, + "triggit": { + "$": 94 + }, + "mooxar": { + "$": 3084 + }, + "redcourtside": { + "$": 70 + }, + "sprinkletxt": { + "widgets": { + "$": 3087 + } + }, + "zerezas": { + "$": 70 + }, + "spklw": { + "widgets": { + "$": 4868 + } + }, + "addthis": { + "$": 1049 + }, + "skype": { + "mystatus": { + "$": 3093 + } + }, + "interclick": { + "idcs": { + "$": 3613 + }, + "$": 175 + }, + "adservinginternational": { + "$": 3099 + }, + "hatid": { + "$": 72 + }, + "adservinghost": { + "$": 3099 + }, + "rubiconproject": { + "$": 50 + }, + "puboclic": { + "$": 3103 + }, + "bluekai": { + "stags": { + "$": 112 + }, + "tags": { + "$": 112 + } + }, + "allotraffic": { + "$": 3104 + }, + "blogherads": { + "ads": { + "$": 81 + } + }, + "leady": { + "$": 3109 + }, + "outbrain": { + "widgets": { + "$": 59 + }, + "sync": { + "$": 4738 + } + }, + "e-generator": { + "$": 3110 + }, + "criteo": { + "$": 54 + }, + "pay-hit": { + "$": 3117 + }, + "rmxads": { + "$": 37 + }, + "uptolike": { + "$": 3118 + }, + "cetrk": { + "$": 9 + }, + "advidi": { + "$": 3119 + }, + "gunggo": { + "$": 69 + }, + "adspdbl": { + "$": 3122 + }, + "sharethis": { + "$": 41 + }, + "aim4media": { + "$": 3123 + }, + "intellitxt": { + "$": 98 + }, + "thoughtleadr": { + "$": 3125 + }, + "clicksor": { + "$": 72 + }, + "yeabble": { + "$": 3126 + }, + "uservoice": { + "widget": { + "$": 1165 + } + }, + "sub2tech": { + "$": 3127 + }, + "targetingmarketplace": { + "ad": { + "$": 1052 + } + }, + "keywordsconnect": { + "$": 3128 + }, + "assoc-amazon": { + "$": 25 + }, + "kinxcdn": { + "xcache": { + "cjmooter": { + "$": 3131 + } + } + }, + "getclicky": { + "in": { + "$": 48 + }, + "static": { + "$": 48 + } + }, + "dianomi": { + "$": 3133 + }, + "dpclk": { + "cm": { + "$": 3559 + } + }, + "nimblecommerce": { + "us2widget": { + "$": 3135 + }, + "us3widget": { + "$": 3135 + } + }, + "yieldmanager": { + "rm": { + "$": 37 + }, + "ad": { + "$": 37 + } + }, + "apple": { + "itunes": { + "autolinkmaker": { + "$": 3136 + } + } + }, + "aol": { + "mads": { + "$": 2423 + } + }, + "appendad": { + "$": 3138 + }, + "adworldmedia": { + "$": 68 + }, + "widerplanet": { + "$": 3142 + }, + "xiti": { + "$": 40 + }, + "linkprice": { + "$": 3143 + }, + "questionmarket": { + "$": 38 + }, + "amoad": { + "$": 3144 + }, + "wordpress": { + "stats": { + "$": 16 + } + }, + "socdm": { + "$": 3147 + }, + "adohana": { + "$": 2063 + }, + "ad-stir": { + "$": 3148 + }, + "addthisedge": { + "$": 4799 + }, + "flexlinks": { + "$": 3154 + }, + "servedbyopenx": { + "$": 1880 + }, + "mousestats": { + "$": 3155 + }, + "adsonar": { + "$": 74 + }, + "micropoll": { + "$": 3157 + }, + "nearbyad": { + "$": 2422 + }, + "ijento": { + "$": 3161 + }, + "glanceguide": { + "dz": { + "$": 1158 + } + }, + "optimahub": { + "$": 3163 + }, + "crowdscience": { + "static": { + "$": 22 + } + }, + "integral-marketing": { + "$": 3164 + }, + "mybloglog": { + "$": 3 + }, + "aumago": { + "$": 3165 + }, + "3jmcwio": { + "$": 4491 + }, + "ktcpxl": { + "$": 3166 + }, + "dl-rms": { + "content": { + "$": 38 + } + }, + "answerbook": { + "ping": { + "$": 3168 + } + }, + "statcounter": { + "$": 11 + }, + "bizible": { + "$": 3172 + }, + "xeontopa": { + "$": 70 + }, + "adsnative": { + "$": 3173 + }, + "addthiscdn": { + "l": { + "$": 1050 + } + }, + "id-visitors": { + "$": 3175 + }, + "openxenterprise": { + "$": 1880 + }, + "spokenlayer": { + "embed": { + "$": 3176 + } + }, + "hs-scripts": { + "js": { + "$": 5018 + } + }, + "bannerplay": { + "$": 3180 + }, + "dpmsrv": { + "$": 2005 + }, + "recruitics": { + "analytics": { + "$": 3181 + } + }, + "mmstat": { + "$": 2027 + }, + "tacticalrepublic": { + "$": 3184 + }, + "feedjit": { + "log": { + "$": 981 + } + }, + "adizio": { + "$": 3185 + }, + "live": { + "analytics": { + "$": 154 + } + }, + "adcrowd": { + "$": 3186 + }, + "msn": { + "r": { + "bat": { + "$": 3340 + } + } + }, + "ad4max": { + "$": 3187 + }, + "thewheelof": { + "$": 1418 + }, + "adwebster": { + "$": 3188 + }, + "crazyegg": { + "$": 3329 + }, + "industrybrains": { + "$": 2792 + }, + "lijit": { + "$": 979 + }, + "206solutions": { + "$": 3190 + }, + "getsmartcontent": { + "$": 1984 + }, + "yllix": { + "$": 3191 + }, + "akavita": { + "$": 1995 + }, + "usersnap": { + "api": { + "$": 3193 + } + }, + "hubspot": { + "track": { + "$": 17 + }, + "leadin": { + "$": 3962 + }, + "forms": { + "$": 3970 + } + }, + "poponclick": { + "$": 3194 + }, + "adsame": { + "$": 2030 + }, + "fidelity-media": { + "$": 3195 + }, + "pointroll": { + "$": 46 + }, + "smartertrack": { + "$": 3196 + }, + "amazon-adsystem": { + "$": 1580, + "aax-eu": { + "$": 3897 + } + }, + "misterbell": { + "$": 3197 + }, + "gmodules": { + "$": 101 + }, + "altitude-arena": { + "arena": { + "$": 3198 + } + }, + "andomedia": { + "$": 1956 + }, + "video-loader": { + "$": 3200 + }, + "c-on-text": { + "$": 1962 + }, + "kelkoo": { + "widget": { + "$": 3201 + } + }, + "jeetyetmedia": { + "edge": { + "$": 1980 + } + }, + "heyos": { + "$": 3202 + }, + "quantserve": { + "$": 4, + "secure": { + "$": 3520 + } + }, + "mopub": { + "ads": { + "$": 3203 + } + }, + "adhitzads": { + "$": 1997 + }, + "clickpoint": { + "$": 3204 + }, + "webtrends": { + "optimize": { + "$": 922 + }, + "m": { + "$": 922 + } + }, + "statsanalytics": { + "$": 3205 + }, + "wp": { + "pixel": { + "$": 3324 + } + }, + "trafficforce": { + "$": 3206 + }, + "revenuemantra": { + "$": 2038 + }, + "wisepops": { + "$": 3209 + }, + "alenty": { + "$": 1941 + }, + "emailaptitude": { + "tracker": { + "$": 3213 + } + }, + "brightedge": { + "analytics": { + "$": 1949 + } + }, + "propelad": { + "$": 3214 + }, + "fhserve": { + "$": 1958 + }, + "refersion": { + "$": 3215 + }, + "isocket": { + "$": 1966 + }, + "agcdn": { + "$": 3216 + }, + "userzoom": { + "$": 1983 + }, + "tailtarget": { + "$": 3218 + }, + "imrworldwide": { + "$": 34 + }, + "bidtheatre": { + "adsby": { + "$": 3219 + } + }, + "quantcast": { + "widget": { + "$": 4 + } + }, + "petametrics": { + "api": { + "$": 3220 + }, + "cdn": { + "$": 3220 + } + }, + "caanalytics": { + "$": 2027 + }, + "m-pathy": { + "$": 3222 + }, + "audiencefuel": { + "$": 1872 + }, + "trbo": { + "$": 3225 + }, + "mokonocdn": { + "mpn-analytics": { + "$": 1895 + }, + "mpn": { + "analytics": { + "$": 1895 + } + } + }, + "hsoub": { + "$": 3226 + }, + "supercounters": { + "$": 1944 + }, + "digicert": { + "seal": { + "$": 3227 + } + }, + "keynote": { + "webeffective": { + "$": 1953 + } + }, + "geotrust": { + "seal": { + "$": 3228 + }, + "smarticon": { + "$": 3228 + } + }, + "powermarketing": { + "$": 1960 + }, + "polarmobile": { + "$": 3230 + }, + "yahoo": { + "analytics": { + "$": 18 + }, + "webhosting": { + "visit": { + "$": 1101 + } + }, + "yads": { + "$": 3160 + }, + "ads": { + "$": 3160, + "na": { + "$": 4031 + } + }, + "ybp": { + "pr-bh": { + "$": 3555 + } + } + }, + "celtra": { + "$": 3231 + }, + "prismamediadigital": { + "$": 1989 + }, + "audtd": { + "$": 3232 + }, + "adswizz": { + "$": 1996 + }, + "picreel": { + "system": { + "$": 3234 + } + }, + "evisitcs": { + "$": 1856 + }, + "contactme": { + "static": { + "$": 3235 + } + }, + "tracking100": { + "$": 1862 + }, + "leaddyno": { + "$": 3237 + }, + "sekindo": { + "$": 1884 + }, + "viralmint": { + "$": 3239 + }, + "simplereach": { + "$": 1923 + }, + "verticalscope": { + "$": 3240 + }, + "12mlbe": { + "$": 1947 + }, + "ads-xtreme": { + "$": 3242 + }, + "hitbox": { + "$": 1034 + }, + "hypercomments": { + "widget": { + "$": 3243 + }, + "w": { + "$": 3243 + } + }, + "adsbyisocket": { + "$": 1966 + }, + "mdotlabs": { + "$": 3244 + }, + "herokuapp": { + "gooal": { + "$": 1981 + }, + "adstage-analytics": { + "$": 2876 + } + }, + "seewhy": { + "saas": { + "$": 3251 + } + }, + "adnetinteractive": { + "$": 1847 + }, + "localytics": { + "web": { + "$": 3254 + } + }, + "kontactor": { + "$": 1854 + }, + "gdmdigital": { + "hfp": { + "$": 3257 + } + }, + "adpv": { + "ads": { + "$": 1858 + } + }, + "a2pub": { + "$": 3258 + }, + "servebom": { + "$": 1864 + }, + "curancience": { + "$": 3258 + }, + "tapad": { + "$": 1889 + }, + "interestably": { + "$": 3258 + }, + "way2traffic": { + "$": 1943 + }, + "theadex": { + "dmp": { + "$": 3261 + } + }, + "teroti": { + "watch": { + "$": 1952 + } + }, + "adforgames": { + "js": { + "$": 3262 + } + }, + "webspectator": { + "$": 1960 + }, + "email-match": { + "asset": { + "$": 3264 + }, + "atout": { + "$": 3264 + } + }, + "creafi-online-media": { + "$": 1825 + }, + "mainadv": { + "$": 3265 + }, + "contentabc": { + "$": 1841 + }, + "govmetric": { + "$": 3268 + }, + "copacet": { + "$": 1851 + }, + "servmetric": { + "$": 3268 + }, + "evisitanalyst": { + "$": 1856 + }, + "adpushup": { + "engine": { + "$": 3272 + } + }, + "socialannex": { + "$": 1861 + }, + "clrstm": { + "tag": { + "$": 3373 + }, + "track": { + "$": 3374 + }, + "video": { + "$": 3375 + }, + "view": { + "$": 3376 + } + }, + "affinity": { + "$": 1881 + }, + "trackjs": { + "usage": { + "$": 3291 + } + }, + "i2idata": { + "$": 1898 + }, + "powerreviews": { + "$": 3292 + }, + "wikia-beacon": { + "$": 1945 + }, + "amplitude": { + "api": { + "$": 3297 + } + }, + "adcash": { + "$": 1805 + }, + "callhunter": { + "cdn": { + "$": 3907 + } + }, + "nytimes": { + "up": { + "$": 1818 + }, + "tagx": { + "$": 3534 + } + }, + "sumome": { + "$": 3299 + }, + "adflan": { + "$": 1827 + }, + "rapidape": { + "tracking": { + "$": 3301 + } + }, + "lfstmedia": { + "$": 1845 + }, + "natoms": { + "$": 3302 + }, + "typekit": { + "$": 1853 + }, + "adadyn": { + "$": 3308 + }, + "websiteperform": { + "$": 1856 + }, + "dataxpand": { + "tc": { + "$": 4146 + } + }, + "toptenreviews": { + "api": { + "$": 1864 + } + }, + "sohu": { + "images": { + "$": 3318 + } + }, + "refinedads": { + "$": 1887 + }, + "revcontent": { + "$": 3320 + }, + "getglue": { + "widgets": { + "$": 1769 + } + }, + "cygnus": { + "$": 3321 + }, + "m2pub": { + "$": 1801 + }, + "hotjar": { + "$": 3326 + }, + "nrelate": { + "$": 1812 + }, + "launchbit": { + "$": 3333 + }, + "plugrush": { + "$": 1821 + }, + "getrooster": { + "$": 3334 + }, + "visitortracklog": { + "$": 1836 + }, + "trackuity": { + "$": 3341 + }, + "yabuka": { + "$": 1849 + }, + "zaloapp": { + "$": 3343 + }, + "leadforensics": { + "$": 2337 + }, + "gumroad": { + "$": 3349 + }, + "rsspump": { + "$": 1860 + }, + "genoo": { + "$": 3350 + }, + "yb0t": { + "$": 1740 + }, + "trustev": { + "$": 3353 + }, + "komoona": { + "$": 1747 + }, + "pulseinsights": { + "$": 3354 + }, + "apex-ad": { + "$": 1780 + }, + "nowinteract": { + "$": 3355 + }, + "inviziads": { + "$": 1803 + }, + "reevoo": { + "$": 3356 + }, + "msgapp": { + "$": 1817 + }, + "pushbullet": { + "zebra": { + "$": 3359 + } + }, + "fruitflan": { + "$": 1827 + }, + "turboadv": { + "adagio": { + "$": 3360 + } + }, + "mofos": { + "ads": { + "$": 1842 + } + }, + "rhythmxchange": { + "$": 3390, + "sync": { + "$": 3554 + } + }, + "flagcounter": { + "$": 1852 + }, + "bebi": { + "redir": { + "$": 3834 + } + }, + "pturt": { + "$": 1722 + }, + "micpn": { + "6gpwkrxh": { + "$": 3398 + } + }, + "brandreachsys": { + "$": 1732 + }, + "botscanner": { + "scan": { + "$": 3411 + } + }, + "referlocal": { + "ads": { + "$": 1744 + } + }, + "elasticbeanstalk": { + "omni-acttag": { + "$": 3470 + }, + "$": 3517 + }, + "geovisite": { + "$": 1759 + }, + "designbloxlive": { + "$": 3428 + }, + "magnetisemedia": { + "$": 1794 + }, + "modernimpact": { + "intelligentpixel": { + "$": 3476 + } + }, + "vmmpxl": { + "$": 1808 + }, + "ipinfodb": { + "$": 3483 + }, + "salecycle": { + "app": { + "$": 1819 + } + }, + "ignitionone": { + "$": 3513 + }, + "strikead": { + "rtb": { + "$": 1834 + } + }, + "answerscloud": { + "gateway": { + "$": 3515 + } + }, + "jyawd": { + "$": 1722 + }, + "norton": { + "websecurity": { + "seal": { + "$": 3530 + }, + "trustsealinfo": { + "$": 3632 + } + } + }, + "orpae": { + "$": 1722 + }, + "verisign": { + "seal": { + "$": 3631 + } + }, + "predictiveintent": { + "$": 1724 + }, + "mediamath": { + "sync": { + "$": 3532 + } + }, + "yldbt": { + "$": 1740 + }, + "loop11": { + "cdn": { + "$": 3541 + } + }, + "ppjol": { + "$": 1746 + }, + "georama": { + "$": 3543 + }, + "featurelink": { + "$": 1776 + }, + "googletraveladservices": { + "$": 3544 + }, + "adsmarket": { + "$": 1801 + }, + "gridsumdissector": { + "recv-wd": { + "$": 3545 + } + }, + "clickshift": { + "rd": { + "$": 1814 + } + }, + "webdissector": { + "$": 3546 + }, + "eurts": { + "$": 1722 + }, + "invodo": { + "$": 3549 + }, + "japum": { + "$": 1722 + }, + "aolcdn": { + "o": { + "$": 3560 + } + }, + "kyarm": { + "$": 1722 + }, + "relestar": { + "$": 3564 + }, + "psyng": { + "$": 1722 + }, + "tcgtrkr": { + "$": 3570 + }, + "traffichaus": { + "$": 1728 + }, + "banner-rotation": { + "$": 3572 + }, + "jetpackdigital": { + "$": 1743 + }, + "webmasterplan": { + "$": 3573 + }, + "kliksaya": { + "scr": { + "$": 1757 + } + }, + "supplyframe": { + "ads": { + "$": 3586, + "fake-entry_images": { + "$": 3599 + } + }, + "analytics": { + "$": 4935 + } + }, + "publishflow": { + "data": { + "$": 1792 + } + }, + "wistia": { + "distillery": { + "$": 3590 + }, + "pipedream": { + "$": 3591 + } + }, + "switchadhub": { + "$": 2335, + "g": { + "delivery": { + "$": 3467 + }, + "$": 3468 + }, + "h": { + "$": 3480 + }, + "nbc": { + "$": 3953 + } + }, + "twitter": { + "syndication": { + "$": 3592 + }, + "analytics": { + "$": 4180 + } + }, + "zetabbs": { + "$": 2385 + }, + "stickyadstv": { + "ads": { + "$": 3606 + } + }, + "hfunt": { + "$": 1722 + }, + "immanalytics": { + "$": 3611 + }, + "jyaby": { + "$": 1722 + }, + "optimatic": { + "sync": { + "$": 3634 + } + }, + "ocyss": { + "$": 1722 + }, + "crm4d": { + "p": { + "$": 3656 + } + }, + "wredint": { + "$": 1722 + }, + "flipp": { + "us": { + "$": 4008 + } + }, + "ghmedia": { + "$": 1735 + }, + "propelmarketing": { + "calls": { + "$": 3799 + }, + "responsive": { + "$": 3800 + } + }, + "buzzdeck": { + "$": 1745 + }, + "optimonk": { + "front": { + "$": 3801 + } + }, + "chinesean": { + "$": 2259 + }, + "monarchads": { + "rtb": { + "$": 3815 + } + }, + "somastackads": { + "$": 2335 + }, + "fuelx": { + "tr": { + "$": 4323 + } + }, + "w00tads": { + "$": 2385 + }, + "fuel451": { + "fsr": { + "$": 4324 + } + }, + "dutrus": { + "$": 1722 + }, + "p0": { + "link": { + "$": 3820 + } + }, + "hinsm": { + "$": 1722 + }, + "motrixi": { + "t": { + "$": 3822 + } + }, + "kwobj": { + "$": 1722 + }, + "naver": { + "search": { + "$": 3845 + } + }, + "owpas": { + "$": 1722 + }, + "canddi": { + "cdns": { + "$": 3853 + }, + "i": { + "$": 3854 + } + }, + "hiconversion": { + "$": 1727 + }, + "bannersnack": { + "cdn": { + "$": 3855 + } + }, + "adcito": { + "$": 2239 + }, + "pushengage": { + "$": 3856 + }, + "respondhq": { + "$": 2258 + }, + "spoutable": { + "cdn": { + "$": 3864 + }, + "s": { + "$": 4940 + } + }, + "heavyhearted": { + "$": 2950 + }, + "advertserve": { + "$": 3924 + }, + "switchads": { + "$": 2385 + }, + "wwwpromoter": { + "$": 3929 + }, + "spotify": { + "embed": { + "$": 1709 + } + }, + "earnify": { + "cdn": { + "$": 3931 + } + }, + "fanefo": { + "$": 1722 + }, + "adprotected": { + "core": { + "$": 3938 + } + }, + "jhame": { + "$": 1722 + }, + "uponit": { + "$": 3951 + }, + "lbein": { + "$": 1722 + }, + "mercadoclics": { + "$": 3957 + }, + "volumtrk": { + "$": 4727 + }, + "mlstatic": { + "analytics": { + "$": 3960 + } + }, + "inskinmedia": { + "$": 2237 + }, + "hodes": { + "d": { + "$": 3965 + } + }, + "scupio": { + "$": 2252 + }, + "storify": { + "$": 4058 + }, + "enigmaadserver": { + "$": 2262 + }, + "unbxdapi": { + "tracker": { + "$": 4291 + } + }, + "switchafrica": { + "$": 2335 + }, + "treasuredata": { + "in": { + "$": 4004 + } + }, + "sradserver": { + "$": 2385 + }, + "jsrdn": { + "i": { + "$": 4790 + } + }, + "djers": { + "$": 1722 + }, + "webmecanik": { + "automation": { + "$": 4021 + } + }, + "hfutz": { + "$": 1722 + }, + "ooyala": { + "player": { + "$": 4028 + } + }, + "admitad": { + "$": 2185 + }, + "jumplead": { + "cdn": { + "$": 4035 + } + }, + "yazcash": { + "$": 2217 + }, + "admanmedia": { + "$": 4045 + }, + "inskinad": { + "$": 2237 + }, + "letreach": { + "$": 4046 + }, + "hiiir": { + "$": 2250 + }, + "sddan": { + "ct": { + "$": 4087 + }, + "js": { + "$": 4088 + } + }, + "bluefinmediaads": { + "$": 2262 + }, + "ancoraplatform": { + "adserving": { + "$": 4091 + } + }, + "m80marketing": { + "serve": { + "$": 2335 + } + }, + "mmtro": { + "$": 4095 + }, + "emergedigital": { + "$": 2385 + }, + "pof": { + "$": 4111 + }, + "Rdsa2013": { + "$": 3930 + }, + "europacash": { + "newpromo": { + "$": 4184 + } + }, + "innovid": { + "$": 2158 + }, + "pickytime": { + "$": 4115 + }, + "adinch": { + "$": 2487 + }, + "edigitalsurvey": { + "$": 4130 + }, + "zeusclicks": { + "$": 2217 + }, + "king": { + "adtrack": { + "$": 4131 + } + }, + "impactradius": { + "$": 2414 + }, + "opicle": { + "track": { + "$": 4159 + } + }, + "securedvisit": { + "$": 2246 + }, + "proadsnet": { + "$": 4160 + }, + "adstheaa": { + "$": 2262 + }, + "proformics": { + "tracking": { + "$": 4161 + } + }, + "ptdserver": { + "$": 2335 + }, + "go2cloud": { + "optimedia": { + "$": 4163 + } + }, + "racingpostads": { + "$": 2385 + }, + "acloudimages": { + "$": 4213 + }, + "googletagmanager": { + "$": 2127 + }, + "univide": { + "$": 4218 + }, + "game-advertising-online": { + "$": 2151 + }, + "liadm": { + "$": 4223 + }, + "ipromote": { + "$": 2180 + }, + "whizmarketing": { + "screen": { + "$": 4230 + } + }, + "promoserv": { + "$": 2217 + }, + "oaserve": { + "$": 179 + }, + "tyroodirect": { + "$": 2232 + }, + "realmediadigital": { + "$": 179 + }, + "igodigital": { + "$": 2244 + }, + "realmedia": { + "$": 179 + }, + "adseekmedia": { + "$": 2262 + }, + "247realmedia": { + "$": 179 + }, + "manutd": { + "adserver": { + "$": 2335 + } + }, + "adxprts": { + "traffic": { + "$": 4261 + } + }, + "piximedia": { + "$": 2095 + }, + "driftt": { + "js": { + "$": 4893 + } + }, + "adgoto": { + "$": 2119 + }, + "wiqhit": { + "col1": { + "$": 4301 + } + }, + "adsymptotic": { + "$": 2149 + }, + "silktide": { + "cookieconsent": { + "$": 4579 + } + }, + "powerlinks": { + "$": 2178 + }, + "foxpush": { + "js": { + "$": 4328 + } + }, + "dothads": { + "$": 2217 + }, + "ixiaa": { + "kr": { + "$": 4337 + } + }, + "tyroodr": { + "$": 2232 + }, + "y-track": { + "$": 4863 + }, + "pubgears": { + "$": 2241 + }, + "xmediaclicks": { + "$": 4410 + }, + "ads-creativesyndicator": { + "$": 2262 + }, + "prwidgets": { + "$": 4447 + }, + "performgroup": { + "$": 2746 + }, + "prscripts": { + "$": 4448 + }, + "publicidees": { + "$": 2091 + }, + "prstatics": { + "$": 4449 + }, + "mediagra": { + "$": 2117 + }, + "boxever": { + "api": { + "$": 4456 + } + }, + "trafficbroker": { + "$": 2144 + }, + "visioncriticalpanels": { + "$": 4461 + }, + "justrelevant": { + "$": 2172 + }, + "sphereup": { + "zdwidget3-bs": { + "$": 4494 + } + }, + "advivi": { + "$": 2217 + }, + "pozvonim": { + "api": { + "$": 4495 + } + }, + "vivistats": { + "$": 2221 + }, + "multiscreensite": { + "px": { + "$": 4517 + } + }, + "adcitomedia": { + "$": 2239 + }, + "mbww": { + "tt": { + "$": 4526 + } + }, + "adsupply": { + "engine": { + "cdn": { + "$": 2036 + } + } + }, + "zmags": { + "p": { + "$": 4661 + }, + "statsd": { + "$": 4662 + } + }, + "chaordicsystems": { + "$": 2057 + }, + "xapads": { + "$": 4572 + }, + "adfrontiers": { + "$": 2086 + }, + "launchdarkly": { + "events": { + "$": 4582 + } + }, + "shopify": { + "s": { + "$": 2103 + }, + "stats": { + "$": 2103 + } + }, + "onaudience": { + "$": 4588 + }, + "intelliad": { + "$": 2141 + }, + "deadlinefunnel": { + "$": 4590 + }, + "unrulymedia": { + "$": 2170 + }, + "crownpeak": { + "omm": { + "snippet": { + "$": 4602 + } + } + }, + "adsbookie": { + "$": 2217 + }, + "cquotient": { + "p": { + "$": 4605 + } + }, + "adagionet": { + "$": 2219 + }, + "avmws": { + "$": 4635 + }, + "allyes": { + "$": 2025 + }, + "rambler": { + "sync": { + "$": 4644 + } + }, + "trklnks": { + "$": 2036 + }, + "tarafdari": { + "$": 4683 + }, + "lomadee": { + "$": 2055 + }, + "247sports": { + "analytics": { + "$": 4701 + } + }, + "meaningtool": { + "$": 2083 + }, + "adrunnr": { + "$": 4705 + }, + "semilo": { + "$": 2100 + }, + "netdna-ssl": { + "voxus-targeting-voxusmidia": { + "$": 4861 + } + }, + "centraltag": { + "$": 2136 + }, + "mediawallahscript": { + "partner": { + "$": 4734 + } + }, + "yashi": { + "$": 2168 + }, + "makazi": { + "$": 4753 + }, + "admulti": { + "$": 2194 + }, + "beopinion": { + "t": { + "$": 4768 + } + }, + "craktraffic": { + "$": 1993 + }, + "convertexperiments": { + "$": 4785 + }, + "admaxserver": { + "$": 2023 + }, + "cmbestsrv": { + "$": 4801 + }, + "4dsply": { + "$": 2036 + }, + "adomik": { + "hb-endpoint-elb-307841411": { + "$": 4846 + } + }, + "adxion": { + "$": 2045 + }, + "adswithsalt": { + "$": 4850 + }, + "linkwithin": { + "$": 2077 + }, + "jeeng": { + "widget": { + "$": 4854 + } + }, + "r42tag": { + "tdn": { + "$": 4242 + } + }, + "adasiaholdings": { + "adnetwork": { + "$": 4875 + } + }, + "martiniadnetwork": { + "$": 2131 + }, + "cohesionapps": { + "analytics": { + "$": 4926 + } + }, + "sokrati": { + "$": 2161 + }, + "glomex": { + "player": { + "$": 4915 + } + }, + "iadvize": { + "$": 1972 + }, + "userlike": { + "api": { + "$": 4920 + } + }, + "crakmedia": { + "ads": { + "$": 1993 + } + }, + "gigaonclick": { + "$": 4921 + }, + "iogous": { + "$": 2011 + }, + "permutive": { + "api": { + "$": 4942 + } + }, + "mediav": { + "$": 2034 + }, + "bankrate": { + "widgets": { + "$": 4944 + } + }, + "acuityplatform": { + "$": 2043 + }, + "bd4travel": { + "tracking": { + "$": 4945 + } + }, + "vizury": { + "$": 2073 + }, + "zadarma": { + "api": { + "$": 4947 + } + }, + "svtrd": { + "$": 2099 + }, + "vicomi": { + "api": { + "$": 4982 + } + }, + "googletagservices": { + "$": 2907 + }, + "mediarithmics": { + "cookie-matching": { + "$": 5005 + } + }, + "tritondigital": { + "$": 1956 + }, + "pepsia": { + "player": { + "$": 5023 + } + }, + "lengow": { + "$": 1970 + }, + "proxistore": { + "abs": { + "$": 5039 + } + }, + "mousetrace": { + "s": { + "$": 1990 + } + }, + "contentinsights": { + "ingestion": { + "$": 5046 + } + }, + "adgent007": { + "$": 2007 + }, + "wigzopush": { + "tracker": { + "$": 5050 + } + }, + "tanx": { + "$": 2032 + }, + "serviceplan": { + "bi": { + "tag": { + "$": 5058 + } + } + }, + "ozonemedia": { + "$": 2042 + }, + "friendbuy": { + "ws": { + "$": 5063 + } + }, + "dgmatix": { + "$": 2065 + }, + "matheranalytics": { + "$": 5087 + }, + "synovite-scripts": { + "$": 2099 + } + }, + "chat": { + "crisp": { + "client": { + "$": 4936 + }, + "settings": { + "$": 4937 + } + } + }, + "la": { + "51": { + "$": 1901 + } + } + }, + "host_path": { + "28": { + "199": { + "73": { + "184": { + "$": [ + { + "path": "tracker/event", + "id": 902 + } + ] + } + } + } + }, + "pl": { + "nk": { + "$": [ + { + "path": "script/sledzik/widgets/sledzik_widget_shout", + "id": 3378 + }, + { + "path": "script/nk_widgets", + "id": 1520 + }, + { + "path": "img/nk_widgets", + "id": 1520 + }, + { + "path": "card/js", + "id": 1521 + } + ] + }, + "wykop": { + "$": [ + { + "path": "dataprovider/diggerwidget/", + "id": 3052 + } + ] + }, + "imgwykop": { + "$": [ + { + "path": "static/wykoppl/img/tools/wykop_", + "id": 3052 + } + ] + }, + "quartic": { + "qjs": { + "$": [ + { + "path": "qjs", + "id": 4560 + } + ] + } + }, + "salesmanago": { + "$": [ + { + "path": "static/sm.js", + "id": 3764 + } + ], + "files": { + "$": [ + { + "path": "mainPageAssets/blockadblock.js", + "id": 4355 + } + ] + } + } + }, + "dk": { + "livecounter": { + "$": [ + { + "path": "counter", + "id": 1571 + } + ] + }, + "leadscoreapp": { + "www": { + "$": [ + { + "path": "js/ls.js", + "id": 5013 + } + ] + } + } + }, + "se": { + "vizzit": { + "$": [ + { + "path": "vizzittag/", + "id": 1655 + } + ] + }, + "linkwi": { + "$": [ + { + "path": "delivery", + "id": 3273 + } + ] + }, + "myvisitors": { + "t": { + "$": [ + { + "path": "js/", + "id": 3756 + }, + { + "path": "t", + "id": 3755 + } + ] + } + }, + "expressen": { + "assets": { + "$": [ + { + "path": "bundles/advertisment", + "id": 4552 + } + ] + } + } + }, + "im": { + "ity": { + "$": [ + { + "path": "ad", + "id": 2343 + } + ] + }, + "grouvi": { + "pub": { + "$": [ + { + "path": "embed.min.js", + "id": 4065 + } + ] + } + } + }, + "io": { + "vemba": { + "embed": { + "$": [ + { + "path": "jwplayercustom/jwplayer7.5.2.js", + "id": 4383 + }, + { + "path": "jwplayercustom/jwplayer7.js", + "id": 3964 + } + ] + }, + "videos-by": { + "$": [ + { + "path": "v2/placements/8212.js", + "id": 4240 + } + ] + } + }, + "onthe": { + "t": { + "$": [ + { + "path": "media", + "id": 4051 + } + ] + }, + "cdn": { + "$": [ + { + "path": "io.js", + "id": 4078 + } + ] + } + }, + "carrotquest": { + "cdn": { + "$": [ + { + "path": "api.min.js", + "id": 4067 + } + ] + } + }, + "smooch": { + "cdn": { + "$": [ + { + "path": "smooch.min.js", + "id": 4077 + } + ] + } + }, + "crossengage": { + "app": { + "$": [ + { + "path": "analytics.min.js", + "id": 4042 + } + ] + } + }, + "sweettooth": { + "cdn": { + "$": [ + { + "path": "assets/storefront.js", + "id": 4122 + } + ] + } + }, + "doorbell": { + "embed": { + "$": [ + { + "path": "button", + "id": 4361 + } + ] + } + }, + "karte": { + "static": { + "$": [ + { + "path": "libs/tracker.js", + "id": 4393 + } + ] + } + }, + "connectad": { + "connected-by": { + "$": [ + { + "path": "adview.php", + "id": 4524 + } + ] + } + }, + "isitelab": { + "$": [ + { + "path": "ite_sitecoreV1.min.js", + "id": 4530 + } + ] + }, + "litix": { + "src": { + "$": [ + { + "path": "videojs/2/videojs-mux.js", + "id": 4041 + } + ] + } + }, + "appcast": { + "click": { + "$": [ + { + "path": "pixels/br2-48.js", + "id": 4548 + }, + { + "path": "pixels/br3-48.js", + "id": 4546 + }, + { + "path": "pixels/br1-48.js", + "id": 4547 + } + ] + } + }, + "connecto": { + "cdn": { + "$": [ + { + "path": "javascripts/notification.prod.min.js", + "id": 4015 + }, + { + "path": "javascripts/connect.prod.min.js", + "id": 4014 + } + ] + } + }, + "productsup": { + "lib": { + "$": [ + { + "path": "engine/load.js", + "id": 4549 + } + ] + } + }, + "ktxlytics": { + "tagit": { + "$": [ + { + "path": "containers/30.js", + "id": 3976 + } + ] + }, + "trackit": { + "$": [ + { + "path": "ktx.js", + "id": 3987 + } + ] + } + }, + "pipz": { + "app": { + "$": [ + { + "path": "v3/js/pipz.min.js", + "id": 4653 + } + ] + } + }, + "clerk": { + "api": { + "$": [ + { + "path": "static/clerk.js", + "id": 3940 + } + ] + } + }, + "relap": { + "$": [ + { + "path": "api/v6/head.js", + "id": 4671 + } + ] + }, + "lytics": { + "c": { + "$": [ + { + "path": "static/io.min.js", + "id": 4996 + } + ] + } + }, + "pprl": { + "cdn": { + "$": [ + { + "path": "js/salmat.js", + "id": 4682 + }, + { + "path": "js/", + "id": 4681 + } + ] + } + }, + "tribl": { + "$": [ + { + "path": "analytics.js", + "id": 3829 + } + ], + "p0": { + "$": [ + { + "path": "h.js", + "id": 3830 + } + ] + } + }, + "cointraffic": { + "appsha1": { + "$": [ + { + "path": "js/", + "id": 5042 + } + ] + } + }, + "pers": { + "code": { + "$": [ + { + "path": "persio.js", + "id": 3835 + } + ] + } + }, + "onfocus": { + "iq": { + "$": [ + { + "path": "hudactive.html", + "id": 4763 + } + ] + } + }, + "rtk": { + "thor": { + "$": [ + { + "path": "cqkO/jita.js", + "id": 3811 + } + ] + } + }, + "1dmp": { + "sync": { + "$": [ + { + "path": "pixel.gif", + "id": 4834 + } + ] + } + }, + "sspinc": { + "chicos": { + "$": [ + { + "path": "v1/ssp.js", + "id": 3750 + } + ] + } + }, + "polyfill": { + "cdn": { + "$": [ + { + "path": "v2/polyfill.min.js", + "id": 4855 + } + ] + } + }, + "bidr": { + "prod": { + "match": { + "$": [ + { + "path": "cookie-sync/foursquare", + "id": 3746 + } + ] + } + } + }, + "adlive": { + "publishers": { + "api": { + "$": [ + { + "path": "js/client_request.min.js", + "id": 4870 + } + ] + } + } + }, + "raygun": { + "api": { + "$": [ + { + "path": "entries", + "id": 3653 + } + ] + } + }, + "chatbeacon": { + "cloud": { + "$": [ + { + "path": "chatbeacon/scripts/chatbeacon.js", + "id": 4876 + } + ] + } + }, + "dsp": { + "pix": { + "$": [ + { + "path": "pix.dsp.io", + "id": 3538 + } + ] + }, + "eicm-global": { + "$": [ + { + "path": "gax", + "id": 4793 + } + ] + } + }, + "belco": { + "cdn": { + "$": [ + { + "path": "widget.min.js", + "id": 4927 + } + ] + } + }, + "github": { + "aloodo": { + "$": [ + { + "path": "bowser/bowser.min.js", + "id": 3410 + } + ] + } + }, + "callpage": { + "cdn-widget": { + "$": [ + { + "path": "build/js/callpage.js", + "id": 4961 + } + ] + } + }, + "firstimpression": { + "cdn": { + "$": [ + { + "path": "delivery/spc_fi.php", + "id": 4817 + }, + { + "path": "apd_client.js", + "id": 3401 + } + ] + } + }, + "castle": { + "t": { + "$": [ + { + "path": "v1", + "id": 4985 + } + ] + } + }, + "mailtrack": { + "$": [ + { + "path": "trace", + "id": 3210 + } + ] + }, + "astronomer": { + "cdn": { + "$": [ + { + "path": "analytics.js", + "id": 4991 + } + ] + } + }, + "suggest": { + "$": [ + { + "path": "js", + "id": 2822 + } + ] + }, + "augur": { + "cdn": { + "$": [ + { + "path": "augur.min.js", + "id": 4995 + } + ] + } + }, + "customer": { + "assets": { + "$": [ + { + "path": "assets/track.js", + "id": 2683 + } + ] + } + }, + "click360": { + "script": { + "$": [ + { + "path": "wai_digi.js", + "id": 5027 + } + ] + } + }, + "ethn": { + "$": [ + { + "path": "85330.js", + "id": 4973 + }, + { + "path": "remotes", + "id": 2592 + } + ] + }, + "funnelytics": { + "track": { + "$": [ + { + "path": "trackers", + "id": 5044 + } + ] + } + }, + "ntv": { + "s": { + "$": [ + { + "path": "serve/load.js", + "id": 4506 + } + ] + } + }, + "sessionly": { + "$": [ + { + "path": "plugin/", + "id": 5054 + } + ] + }, + "exceptional": { + "js": { + "$": [ + { + "path": "exceptional.js", + "id": 1752 + } + ] + } + }, + "chatra": { + "call": { + "$": [ + { + "path": "chatra.js", + "id": 5064 + } + ] + } + }, + "mintsapp": { + "$": [ + { + "path": "poll/view/", + "id": 4104 + } + ] + } + }, + "au": { + "com": { + "alluremedia": { + "edge": { + "$": [ + { + "path": "s/au.js", + "id": 2457 + } + ] + } + } + }, + "gov": { + "advertising": { + "$": [ + { + "path": "ad/bom/www/", + "id": 4473 + } + ] + } + } + }, + "ga": { + "kaloo": { + "publishing": { + "$": [ + { + "path": "mod/widgetloader", + "id": 4608 + }, + { + "path": "mod/wid", + "id": 4607 + }, + { + "path": "acct", + "id": 4609 + } + ] + }, + "geo": { + "$": [ + { + "path": "json", + "id": 4610 + } + ] + } + } + }, + "pe": { + "shop": { + "$": [ + { + "path": "widget", + "id": 2633 + } + ] + } + }, + "mobi": { + "mdcn": { + "$": [ + { + "path": "phx.", + "id": 2726 + } + ] + }, + "loganmedia": { + "pixel": { + "$": [ + { + "path": "pixel/c/", + "id": 4257 + } + ] + } + }, + "pushapps": { + "code": { + "$": [ + { + "path": "pushapps-sdk.js", + "id": 4837 + } + ] + } + } + }, + "pt": { + "sl": { + "js": { + "$": [ + { + "path": "snippets/sas.js", + "id": 2741 + } + ] + } + } + }, + "nl": { + "belstat": { + "$": [ + { + "path": "regstat", + "id": 1447 + } + ] + }, + "hyves": { + "$": [ + { + "path": "precompiled/hyvesconnect.js", + "id": 1579 + }, + { + "path": "respect/button", + "id": 1578 + } + ] + }, + "ilsemedia": { + "$": [ + { + "path": "tag", + "id": 3056 + }, + { + "path": "get", + "id": 3056 + } + ] + }, + "beslist": { + "pt1": { + "$": [ + { + "path": "pt/", + "id": 3255 + } + ] + } + }, + "knoopstat": { + "$": [ + { + "path": "stat/knoopstat.cgi", + "id": 3367 + } + ] + }, + "inpagevideo": { + "$": [ + { + "path": "adserv/placement/", + "id": 4281 + } + ] + }, + "vpscash": { + "tools": { + "$": [ + { + "path": "webcams/promo/", + "id": 4296 + } + ] + } + } + }, + "co": { + "pubble": { + "$": [ + { + "path": "resources/javascript/qainit.js", + "id": 2944 + } + ] + }, + "idio": { + "s": { + "$": [ + { + "path": "ia.js", + "id": 3663 + } + ] + } + }, + "tiller": { + "optimizedby": { + "$": [ + { + "path": "global.js", + "id": 3762 + } + ] + } + }, + "smartsupp": { + "static": { + "$": [ + { + "path": "assets/js/main.js", + "id": 3847 + } + ] + } + }, + "d41": { + "cdn-0": { + "$": [ + { + "path": "tags/dnb_coretag_v3.min.js", + "id": 4285 + } + ] + }, + "api1367": { + "$": [ + { + "path": "sync/", + "id": 4286 + } + ] + } + }, + "bunchbox": { + "core": { + "$": [ + { + "path": "geo.js", + "id": 3643 + } + ] + } + }, + "ayads": { + "sac": { + "$": [ + { + "path": "sublime", + "id": 4562 + } + ] + } + }, + "smct": { + "$": [ + { + "path": "tag", + "id": 4565 + } + ] + }, + "t": { + "$": [ + { + "path": "i/adsct", + "id": 4650 + } + ] + }, + "erne": { + "green": { + "$": [ + { + "path": "tags", + "id": 4815 + } + ] + } + }, + "fresh8": { + "cdn": { + "$": [ + { + "path": "assets/analytics/", + "id": 4904 + } + ] + } + }, + "benchtag": { + "$": [ + { + "path": "benchmarketingsmarttag/get", + "id": 3366 + } + ] + }, + "datadome": { + "js": { + "$": [ + { + "path": "tags.js", + "id": 5072 + } + ] + } + }, + "pixelpop": { + "app": { + "$": [ + { + "path": "api/client/instances", + "id": 4377 + } + ] + } + } + }, + "be": { + "belstat": { + "$": [ + { + "path": "regstat", + "id": 1447 + } + ] + }, + "adhesecdn": { + "1": { + "$": [ + { + "path": "pool/lib/", + "id": 3051 + } + ] + } + }, + "metriweb": { + "$": [ + { + "path": "dyn/", + "id": 2934 + } + ] + } + }, + "cl": { + "adserver": { + "$": [ + { + "path": "ad", + "id": 2966 + } + ] + }, + "retargeting": { + "$": [ + { + "path": "pixel", + "id": 4034 + } + ] + } + }, + "ly": { + "adf": { + "$": [ + { + "path": "js/entry", + "id": 1423 + }, + { + "path": "js/link", + "id": 1423 + }, + { + "path": "conv", + "id": 1437 + } + ] + }, + "minute": { + "snippet": { + "$": [ + { + "path": "mi-ynet-prod.js", + "id": 4814 + }, + { + "path": "mi-time-prod.js", + "id": 3851 + } + ] + } + }, + "warp": { + "static": { + "$": [ + { + "path": "data/warplysdk_v2.0.js", + "id": 3884 + } + ] + } + } + }, + "br": { + "com": { + "ocioso": { + "$": [ + { + "path": "troca-de-links", + "id": 3098 + }, + { + "path": "compartilhe", + "id": 3098 + } + ] + }, + "shoptarget": { + "app": { + "$": [ + { + "path": "js/tracking.js", + "id": 3916 + } + ] + } + }, + "mercadolivre": { + "mercadoads": { + "$": [ + { + "path": "main", + "id": 3959 + } + ] + }, + "$": [ + { + "path": "jm/ml.track.me", + "id": 3958 + } + ] + }, + "btg360": { + "i": { + "$": [ + { + "path": "btg360-2.0.1.min.js", + "id": 4061 + } + ] + } + }, + "afilio": { + "v2": { + "$": [ + { + "path": "lead.php", + "id": 4072 + }, + { + "path": "sale.php", + "id": 4071 + } + ] + } + }, + "soclminer": { + "plugins": { + "$": [ + { + "path": "v3/sdk/all.min.js", + "id": 4241 + } + ] + } + }, + "boostbox": { + "$": [ + { + "path": "scripts/send_data.js", + "id": 5020 + } + ] + } + }, + "gov": { + "brasil": { + "barra": { + "$": [ + { + "path": "barra.js", + "id": 4531 + } + ] + } + } + } + }, + "vn": { + "vcmedia": { + "$": [ + { + "path": "ads", + "id": 1411 + } + ], + "admicro1": { + "$": [ + { + "path": "ads_codes/ads_box_225.ads", + "id": 3439 + }, + { + "path": "ads_codes/ads_box_221.ads", + "id": 3438 + }, + { + "path": "fingerprint/figp.js", + "id": 4102 + } + ] + }, + "logdantri": { + "$": [ + { + "path": "scripts/log.js", + "id": 3436 + } + ] + }, + "dantri3": { + "$": [ + { + "path": "scripts/lib/html5.js", + "id": 3437 + } + ] + } + }, + "chinmedia": { + "tracker": { + "$": [ + { + "path": "chintracker.js", + "id": 3823 + } + ] + } + }, + "easyvideo": { + "gao": { + "p": { + "$": [ + { + "path": "gaotracker.js", + "id": 3824 + } + ] + } + } + }, + "yomedia": { + "delivery": { + "$": [ + { + "path": "vast", + "id": 4054 + } + ] + } + } + }, + "me": { + "roost": { + "get": { + "$": [ + { + "path": "js/", + "id": 3169 + } + ] + } + }, + "dotter": { + "apps": { + "$": [ + { + "path": "proClinical/proClinical.js", + "id": 3489 + } + ] + } + }, + "contentexchange": { + "adria": { + "$": [ + { + "path": "static/tracker.js", + "id": 4049 + } + ], + "tracker": { + "$": [ + { + "path": "in/", + "id": 4050 + } + ] + } + } + }, + "handtalk": { + "api": { + "$": [ + { + "path": "assets/webgl/public/js/handtalk-webgl-complemento.min.js", + "id": 4066 + } + ] + } + }, + "download-for": { + "apps": { + "$": [ + { + "path": "games/new/", + "id": 4475 + } + ] + } + }, + "thevideo": { + "analytics": { + "$": [ + { + "path": "t.js", + "id": 4706 + } + ] + } + }, + "youcanbook": { + "$": [ + { + "path": "resources/scripts/", + "id": 4952 + } + ] + } + }, + "hu": { + "iwiw": { + "$": [ + { + "path": "like.jsp", + "id": 1194 + } + ] + }, + "ad": { + "$": [ + { + "path": "g3.js", + "id": 1831 + } + ] + } + }, + "eu": { + "forestview": { + "affiliates": { + "$": [ + { + "path": "z", + "id": 3274 + } + ] + } + }, + "zoho": { + "salesiq": { + "$": [ + { + "path": "atbrivacalzoni/float.ls", + "id": 4459 + } + ] + } + }, + "zohostatic": { + "js": { + "$": [ + { + "path": "salesiq/", + "id": 4460 + } + ] + } + }, + "unibet": { + "welcome": { + "$": [ + { + "path": "media/bannerflow/data/unibet/landingpage/", + "id": 3954 + } + ] + } + }, + "tradeads": { + "ads": { + "$": [ + { + "path": "tradeadscaller.js", + "id": 4462 + } + ] + } + }, + "m6r": { + "cdn": { + "$": [ + { + "path": "sync", + "id": 5004 + } + ] + } + }, + "pushnews": { + "cdn": { + "$": [ + { + "path": "push/ilabspush.min.js", + "id": 5048 + } + ] + } + } + }, + "pr": { + "su": { + "$": [ + { + "path": "hosted_js", + "id": 1484 + } + ] + } + }, + "pimcore": { + "$": [ + { + "path": "static/js/frontend/geoip.js", + "id": 3383 + } + ] + }, + "st": { + "yandex": { + "$": [ + { + "path": "share/", + "id": 1127 + } + ] + } + }, + "tr": { + "com": { + "admatic": { + "cdn2": { + "$": [ + { + "path": "showad/showad.js", + "id": 3842 + } + ] + }, + "ads5": { + "$": [ + { + "path": "showad", + "id": 4023 + } + ] + } + }, + "star": { + "$": [ + { + "path": "analytic/count.asp", + "id": 3989 + } + ] + } + } + }, + "tw": { + "com": { + "sitebro": { + "$": [ + { + "path": "track", + "id": 992 + } + ] + } + }, + "sitebro": { + "$": [ + { + "path": "track", + "id": 992 + } + ] + } + }, + "cz": { + "heureka": { + "$": [ + { + "path": "direct/i/gjs.php", + "id": 3885 + } + ] + }, + "imedia": { + "c": { + "$": [ + { + "path": "js/retargeting.js", + "id": 4166 + } + ] + } + }, + "performax": { + "delivery": { + "$": [ + { + "path": "sklik/extrastory", + "id": 4554 + } + ] + } + } + }, + "ir": { + "webgozar": { + "$": [ + { + "path": "c.aspx", + "id": 944 + } + ] + }, + "adpulse": { + "adserve": { + "$": [ + { + "path": "banner.js", + "id": 4463 + } + ] + } + }, + "adtube": { + "ad": { + "$": [ + { + "path": "adtube.js", + "id": 4654 + } + ] + } + } + }, + "vi": { + "grou": { + "$": [ + { + "path": "embed.min.js", + "id": 3991 + } + ] + } + }, + "ua": { + "at": { + "$": [ + { + "path": "stat/", + "id": 1066 + } + ] + } + }, + "la": { + "carambo": { + "route": { + "$": [ + { + "path": "inimage/getlayer", + "id": 4068 + } + ] + } + }, + "rocket": { + "$": [ + { + "path": "pixel", + "id": 4432 + } + ] + } + }, + "am": { + "do": { + "$": [ + { + "path": "stat/", + "id": 1066 + } + ] + } + }, + "services": { + "id": { + "cdn": { + "$": [ + { + "path": "m/run.js", + "id": 4121 + } + ] + } + } + }, + "ws": { + "cbox": { + "$": [ + { + "path": "box", + "id": 881 + } + ] + } + }, + "ch": { + "adquality": { + "api": { + "$": [ + { + "path": "keyValues", + "id": 4592 + }, + { + "path": "bc.js", + "id": 4138 + } + ] + }, + "$": [ + { + "path": "recommendations/tag/", + "id": 4591 + } + ] + }, + "admeira": { + "tr1": { + "$": [ + { + "path": "tr1.admeira.ch/v1/tagger.js", + "id": 5088 + } + ] + } + } + }, + "tv": { + "videohub": { + "dt": { + "$": [ + { + "path": "v1/usync/tt", + "id": 4807 + } + ] + } + }, + "spotx": { + "js": { + "$": [ + { + "path": "directsdk/v1/236177.js", + "id": 5069 + }, + { + "path": "easi/v1", + "id": 4507 + } + ] + } + }, + "admo": { + "meetic": { + "$": [ + { + "path": "script/script-min.js", + "id": 4208 + } + ] + }, + "assu2000": { + "$": [ + { + "path": "config.js", + "id": 4974 + } + ] + } + }, + "dogannet": { + "s": { + "$": [ + { + "path": "q/s/stats/init.min.js", + "id": 4280 + } + ] + } + }, + "samba": { + "mtrcs": { + "pixel": { + "$": [ + { + "path": "v2/vtr/starcom/nbaprimetime/espndfp/impression", + "id": 4370 + } + ] + } + } + }, + "nativeroll": { + "cdn01": { + "$": [ + { + "path": "js/seedr-player.min.js", + "id": 4670 + } + ] + } + }, + "voxus": { + "embed": { + "$": [ + { + "path": "player/midcontent/", + "id": 4724 + } + ] + } + } + }, + "md": { + "push": { + "get": { + "$": [ + { + "path": "js/integration.js", + "id": 4151 + } + ] + } + }, + "numbers": { + "$": [ + { + "path": "loader.js", + "id": 4206 + } + ] + } + }, + "info": { + "netupdater": { + "live1": { + "$": [ + { + "path": "live.php", + "id": 638 + } + ] + } + }, + "napata": { + "$": [ + { + "path": "conect", + "id": 3060 + } + ] + }, + "bitrix": { + "$": [ + { + "path": "ba.js", + "id": 3887 + } + ] + } + }, + "in": { + "catalystrendz": { + "tracking": { + "$": [ + { + "path": "aff", + "id": 4158 + } + ] + } + }, + "smxindia": { + "$": [ + { + "path": "p.ashx", + "id": 4190 + } + ] + }, + "sensedigital": { + "track": { + "$": [ + { + "path": "conversion.php", + "id": 4191 + } + ] + } + }, + "digicolada": { + "$": [ + { + "path": "Admin/callback.php", + "id": 4274 + } + ] + }, + "co": { + "adgebra": { + "$": [ + { + "path": "adserving/spot.js", + "id": 4964 + }, + { + "path": "adserving/spot.js", + "id": 4968 + }, + { + "path": "afph/afph.js", + "id": 4436 + } + ] + } + }, + "ctnet2": { + "$": [ + { + "path": "pub", + "id": 4718 + } + ] + } + }, + "cc": { + "netflame": { + "hints": { + "$": [ + { + "path": "service/script/", + "id": 554 + } + ] + } + } + }, + "cn": { + "360": { + "lianmeng": { + "s": { + "$": [ + { + "path": "so/inlay.js", + "id": 4185 + } + ] + }, + "so": { + "api": { + "$": [ + { + "path": "searchthrow/api/ads/throw", + "id": 4186 + } + ] + } + } + } + } + }, + "us": { + "nr7": { + "$": [ + { + "path": "apps/", + "id": 512 + } + ] + }, + "adfoc": { + "$": [ + { + "path": "js/siteoverlay/script.js", + "id": 3102 + }, + { + "path": "js/fullpage/script.js", + "id": 3102 + } + ] + }, + "clicken": { + "$": [ + { + "path": "tag/clientset.html", + "id": 3927 + } + ] + }, + "synapsys": { + "w1": { + "$": [ + { + "path": "images/", + "id": 3939 + } + ] + } + }, + "samplicio": { + "tracker": { + "$": [ + { + "path": "tracker/", + "id": 3982 + } + ] + } + } + }, + "at": { + "eduscho": { + "tracking": { + "$": [ + { + "path": "265328718441342/cc", + "id": 4205 + } + ] + } + } + }, + "ru": { + "yandex": { + "$": [ + { + "path": "resource/watch", + "id": 191 + }, + { + "path": "metrika/watch", + "id": 191 + }, + { + "path": "cycounter", + "id": 882 + }, + { + "path": "informer", + "id": 882 + } + ], + "mc": { + "$": [ + { + "path": "metrika/watch.js", + "id": 4379 + }, + { + "path": "metrika/watch.js", + "id": 3550 + } + ] + }, + "an": { + "$": [ + { + "path": "resource/context_static_r_2000.js", + "id": 4487 + }, + { + "path": "resource/context.js", + "id": 1770 + }, + { + "path": "system/context.js", + "id": 1770 + }, + { + "path": "code/", + "id": 1771 + } + ] + }, + "bs": { + "$": [ + { + "path": "code/", + "id": 1771 + } + ] + }, + "kiks": { + "$": [ + { + "path": "system/fc07.swf", + "id": 4116 + } + ] + } + }, + "cleversite": { + "$": [ + { + "path": "cleversite/widget2/widget.php", + "id": 3914 + }, + { + "path": "cleversite/widget_new.php", + "id": 3913 + }, + { + "path": "widget.js", + "id": 3912 + } + ] + }, + "admeo": { + "static": { + "$": [ + { + "path": "assets/build/widget-core-lite.js", + "id": 3944 + } + ] + } + }, + "dumedia": { + "ad": { + "$": [ + { + "path": "dmd/underclick/tr", + "id": 4085 + }, + { + "path": "uid/sync", + "id": 4689 + }, + { + "path": "click", + "id": 4685 + } + ] + } + }, + "venyoo": { + "api": { + "$": [ + { + "path": "wnew.js", + "id": 3904 + } + ] + }, + "static": { + "$": [ + { + "path": "widget/js/placeholders.jquery.min.js", + "id": 3905 + } + ] + } + }, + "go8me": { + "$": [ + { + "path": "click/tizer.php", + "id": 4288 + } + ] + }, + "callibri": { + "$": [ + { + "path": "api/module/js/v1/callibri.js", + "id": 4407 + } + ] + }, + "nominaltechno": { + "new": { + "$": [ + { + "path": "chistuiruchei.js", + "id": 4411 + } + ] + } + }, + "hhcdn": { + "$": [ + { + "path": "nposter/", + "id": 4484 + } + ] + }, + "leadback": { + "$": [ + { + "path": "js/leadback.js", + "id": 4542 + } + ] + }, + "retailrocket": { + "cdn": { + "$": [ + { + "path": "content/javascript/tracking.js", + "id": 4628 + }, + { + "path": "content/javascript/api.js", + "id": 3444 + } + ] + } + }, + "prostor-lite": { + "$": [ + { + "path": "gtm", + "id": 4555 + } + ] + }, + "mediametrics": { + "$": [ + { + "path": "inject/inject.js", + "id": 3386 + } + ] + }, + "sputnik": { + "stat": { + "$": [ + { + "path": "cnt.js", + "id": 4559 + } + ] + } + }, + "redhelper": { + "web": { + "$": [ + { + "path": "service/", + "id": 3246 + } + ] + } + }, + "mango-office": { + "widgets": { + "$": [ + { + "path": "widgets/mango.js", + "id": 4626 + } + ] + } + }, + "surfingbird": { + "$": [ + { + "path": "share/share", + "id": 2472 + } + ] + }, + "chaser": { + "$": [ + { + "path": "widget/1.1/js/widget.js", + "id": 4629 + } + ] + }, + "list": { + "$": [ + { + "path": "tracker", + "id": 1064 + }, + { + "path": "counter", + "id": 1064 + } + ] + }, + "orelsite": { + "$": [ + { + "path": "widget/js/w.app.r.min.js", + "id": 4636 + } + ] + }, + "utarget": { + "$": [ + { + "path": "jsclck", + "id": 2206 + } + ] + }, + "eyenewton": { + "$": [ + { + "path": "scripts/callback.min.js", + "id": 4665 + } + ] + }, + "odnoklassniki": { + "stg": { + "$": [ + { + "path": "share/odkl_share.js", + "id": 2791 + } + ] + } + }, + "sspicy": { + "static": { + "$": [ + { + "path": "theme/sspicy/adload_async.js", + "id": 4673 + } + ] + }, + "adv": { + "$": [ + { + "path": "load", + "id": 4674 + } + ] + } + }, + "mail": { + "connect": { + "$": [ + { + "path": "js/loader.js", + "id": 1420 + }, + { + "path": "share", + "id": 1420 + } + ] + }, + "top-fwz1": { + "$": [ + { + "path": "js/code.js", + "id": 4039 + }, + { + "path": "tracker", + "id": 3995 + } + ] + }, + "$": [ + { + "path": "tracker", + "id": 1063 + }, + { + "path": "counter", + "id": 1063 + } + ], + "top": { + "$": [ + { + "path": "jump", + "id": 4040 + } + ] + } + }, + "idntfy": { + "$": [ + { + "path": "token", + "id": 4836 + } + ] + }, + "vkontakte": { + "$": [ + { + "path": "widget_community.php", + "id": 3413 + }, + { + "path": "widget_comments.php", + "id": 2947 + }, + { + "path": "js/api/openapi.js", + "id": 1244 + }, + { + "path": "widget_groups.php", + "id": 2369 + }, + { + "path": "js/api/share.js", + "id": 1244 + }, + { + "path": "widget_like.php", + "id": 3174 + } + ] + }, + "ntvk1": { + "p1": { + "$": [ + { + "path": "nv.js", + "id": 4997 + } + ] + } + }, + "hotlog": { + "$": [ + { + "path": "cgi-bin/hotlog", + "id": 947 + } + ] + }, + "sendsay": { + "$": [ + { + "path": "js/target/tracking.js", + "id": 5052 + } + ] + }, + "rambler": { + "counter": { + "$": [ + { + "path": "top100.cnt", + "id": 4519 + } + ] + }, + "ssp": { + "$": [ + { + "path": "file.jsp", + "id": 4994 + } + ] + }, + "comments": { + "$": [ + { + "path": "widget/v2/sdk.js", + "id": 4520 + } + ] + }, + "kraken": { + "$": [ + { + "path": "cnt/", + "id": 4645 + } + ] + } + }, + "calltracking": { + "$": [ + { + "path": "dynamic/", + "id": 5053 + } + ] + }, + "metabar": { + "dl": { + "$": [ + { + "path": "static/api/v2/sovetnik.js", + "id": 4960 + }, + { + "path": "static/api/v2/sovetnik.js", + "id": 4912 + } + ] + } + } + }, + "is": { + "ipaddress": { + "$": [ + { + "path": "widget", + "id": 4234 + } + ] + } + }, + "fi": { + "netmonitor": { + "stat": { + "$": [ + { + "path": "js/", + "id": 158 + } + ] + } + }, + "yle": { + "analytics-sdk": { + "$": [ + { + "path": "yle-analytics.min.js", + "id": 4063 + } + ] + } + } + }, + "ms": { + "rbl": { + "static": { + "$": [ + { + "path": "static/js-build/lazy_libs.js", + "id": 4390 + } + ] + } + } + }, + "ro": { + "trafic": { + "storage": { + "$": [ + { + "path": "js/trafic.js", + "id": 150 + } + ] + } + }, + "gtop": { + "fx": { + "$": [ + { + "path": "js/gtop.js", + "id": 701 + } + ] + } + }, + "profitshare": { + "$": [ + { + "path": "advertiseri/emag", + "id": 4056 + }, + { + "path": "tgt/js/", + "id": 4238 + } + ] + } + }, + "kz": { + "smartcall": { + "$": [ + { + "path": "js/smartcall.js", + "id": 4667 + } + ] + } + }, + "org": { + "yarpp": { + "$": [ + { + "path": "pixels/", + "id": 3095 + } + ] + }, + "browser-update": { + "$": [ + { + "path": "update.js", + "id": 1283 + } + ] + }, + "tracemyip": { + "$": [ + { + "path": "tracker/", + "id": 1363 + } + ] + }, + "slashdot": { + "$": [ + { + "path": "slashdot-it.pl", + "id": 1519 + } + ] + }, + "webvisor": { + "an": { + "$": [ + { + "path": "count", + "id": 4719 + } + ] + } + }, + "bbb": { + "seal-network": { + "$": [ + { + "path": "seals/", + "id": 3934 + } + ] + } + }, + "go2cloud": { + "adcanopus": { + "$": [ + { + "path": "aff_1", + "id": 4192 + } + ] + }, + "icubes": { + "$": [ + { + "path": "SL2rf", + "id": 4275 + } + ] + }, + "digitalads": { + "$": [ + { + "path": "aff_1", + "id": 4276 + } + ] + }, + "inboxlabs": { + "$": [ + { + "path": "aff_c", + "id": 4373 + } + ] + } + }, + "tiaa-cref": { + "$": [ + { + "path": "public/js/boomerang.js", + "id": 4340 + } + ] + }, + "flowplayer": { + "releases": { + "$": [ + { + "path": "6.0.5/commercial/flowplayer.min.js", + "id": 4443 + } + ] + } + }, + "mediaad": { + "s1": { + "$": [ + { + "path": "serve/aryabazar.com/loader.js", + "id": 5045 + } + ] + } + } + }, + "run": { + "bid": { + "spb": { + "$": [ + { + "path": "sync/", + "id": 4672 + } + ] + } + } + }, + "dotomi": { + "$": [ + { + "path": ".com/ucm", + "id": 3372 + } + ] + }, + "my": { + "com": { + "lazada": { + "tracker": { + "$": [ + { + "path": "pt_my", + "id": 4783 + } + ] + } + } + } + }, + "pro": { + "piwik": { + "xs4all": { + "$": [ + { + "path": "ppms.js", + "id": 5026 + } + ] + } + }, + "sbox": { + "tracker": { + "$": [ + { + "path": "track.js", + "id": 3497 + } + ] + } + }, + "bilgin": { + "ad-cdn": { + "$": [ + { + "path": "app/ad-2.0.1.js", + "id": 4550 + }, + { + "path": "app/ad.min.js", + "id": 4956 + } + ] + } + }, + "ledsitling": { + "$": [ + { + "path": "got", + "id": 4634 + } + ] + }, + "adtags": { + "cdn": { + "$": [ + { + "path": "adtagsLoader_with_placeholde", + "id": 4676 + } + ] + } + }, + "usocial": { + "$": [ + { + "path": "usocial/usocial.js", + "id": 4716 + } + ] + }, + "cryptoloot": { + "$": [ + { + "path": "lib/crlt.js", + "id": 4933 + } + ] + } + }, + "rocks": { + "octavius": { + "service": { + "$": [ + { + "path": "v55/send/", + "id": 4838 + } + ] + } + } + }, + "jp": { + "co": { + "amazon": { + "rcm-jp": { + "$": [ + { + "path": "e/cm", + "id": 1391 + } + ] + } + }, + "yahoo": { + "$": [ + { + "path": "js/s_retargeting.js", + "id": 2887 + } + ] + }, + "rakuten": { + "affiliate": { + "xml": { + "$": [ + { + "path": "widget/js/rakuten_widget.js", + "id": 4641 + } + ] + }, + "log": { + "$": [ + { + "path": "mw/imp/a.gif", + "id": 4642 + } + ] + } + } + }, + "geeen": { + "gntm": { + "$": [ + { + "path": "onetag/", + "id": 4896 + } + ] + } + } + }, + "gmossp-sp": { + "sp": { + "adn-d": { + "$": [ + { + "path": "rt/beacon.gif", + "id": 3732 + } + ] + } + } + }, + "atown": { + "ad": { + "$": [ + { + "path": "adserver/ap", + "id": 4003 + } + ] + } + }, + "sitest": { + "$": [ + { + "path": "tracking/sitest_js", + "id": 4080 + } + ] + }, + "mixi": { + "$": [ + { + "path": "js/plugins.js", + "id": 3152 + }, + { + "path": "js/share.js", + "id": 3152 + }, + { + "path": "share", + "id": 3153 + } + ] + }, + "rtoaster": { + "s": { + "$": [ + { + "path": "Rtoaster", + "id": 4418 + } + ] + } + }, + "admatrix": { + "lib-3pas": { + "$": [ + { + "path": "3pas/js/admatrixanalyze.min.js", + "id": 4564 + } + ] + } + }, + "uliza": { + "aka-uae-dl": { + "$": [ + { + "path": "ulizassp/0/video", + "id": 4842 + } + ] + }, + "ad-api-v01": { + "$": [ + { + "path": "preview.php", + "id": 5015 + } + ] + } + }, + "impact-ad": { + "dw": { + "aw": { + "$": [ + { + "path": "ut/rep", + "id": 5014 + } + ] + } + } + }, + "x-lift": { + "cdn": { + "$": [ + { + "path": "js/site/", + "id": 5056 + } + ] + } + }, + "zimg": { + "net": { + "zucks": { + "j": { + "$": [ + { + "path": "j", + "id": 4247 + } + ] + } + } + } + } + }, + "hr": { + "linker": { + "$": [ + { + "path": "lw.js", + "id": 5077 + }, + { + "path": "w.js", + "id": 4909 + } + ] + } + }, + "it": { + "amazon": { + "rcm-it": { + "$": [ + { + "path": "e/cm", + "id": 1390 + } + ] + } + }, + "tzetze": { + "$": [ + { + "path": "banner-tzetze.png", + "id": 2709 + }, + { + "path": "tzetze_external.", + "id": 2709 + } + ] + }, + "knotch": { + "$": [ + { + "path": "extern/survey", + "id": 3628 + } + ] + }, + "eurosw": { + "$": [ + { + "path": "wp-content/plugins/cta/shared/assets/js/frontend/analytics/inboundAnalytics.min.js", + "id": 4082 + } + ] + } + }, + "pw": { + "minero": { + "$": [ + { + "path": "miner.min.js", + "id": 4934 + } + ] + } + }, + "fr": { + "amazon": { + "rcm-fr": { + "$": [ + { + "path": "e/cm", + "id": 1389 + } + ] + } + }, + "pagesjaunes": { + "at": { + "logc257": { + "$": [ + { + "path": "hit.xiti", + "id": 3486 + } + ] + } + } + }, + "sfr": { + "elr": { + "$": [ + { + "path": "FRFRE5421.js", + "id": 4631 + } + ] + } + }, + "belstat": { + "$": [ + { + "path": "regstat", + "id": 1447 + } + ] + }, + "early-birds": { + "cdn": { + "$": [ + { + "path": "earlybirds-full.min.js", + "id": 3925 + } + ] + } + } + }, + "id": { + "props": { + "st-a": { + "$": [ + { + "path": "ai.js", + "id": 4998 + } + ] + } + } + }, + "es": { + "amazon": { + "rcm-es": { + "$": [ + { + "path": "e/cm", + "id": 1388 + } + ] + } + }, + "gaug": { + "$": [ + { + "path": "track", + "id": 1282 + } + ] + } + }, + "network": { + "capturemedia": { + "edge": { + "$": [ + { + "path": "sess.js", + "id": 5019 + } + ] + } + } + }, + "de": { + "amazon": { + "rcm-de": { + "$": [ + { + "path": "e/cm", + "id": 964 + } + ] + } + }, + "smartredirect": { + "js": { + "$": [ + { + "path": "js/", + "id": 1903 + } + ] + } + }, + "vertriebsassistent": { + "stats": { + "$": [ + { + "path": "track/count.js", + "id": 4202 + } + ] + } + }, + "tfag": { + "$": [ + { + "path": "js_ng/js_ng_", + "id": 3241 + } + ] + }, + "browser-statistik": { + "$": [ + { + "path": "browser.png", + "id": 3290 + } + ] + }, + "belstat": { + "$": [ + { + "path": "regstat", + "id": 1447 + } + ] + }, + "addvalue": { + "b2btracking": { + "$": [ + { + "path": "trs.js", + "id": 3790 + } + ] + } + }, + "snacktv": { + "player": { + "$": [ + { + "path": "vid/keywordbestmatch.html", + "id": 3879 + }, + { + "path": "vid/widget.html", + "id": 3881 + }, + { + "path": "pub/js/sd.js", + "id": 3877 + }, + { + "path": "player", + "id": 3883 + } + ] + }, + "events": { + "$": [ + { + "path": "count.js", + "id": 3878 + } + ] + }, + "$": [ + { + "path": "snacktag/snacktag.js", + "id": 3880 + } + ] + }, + "steuerberater-eigen": { + "neu": { + "$": [ + { + "path": "typo3conf/ext/cs_seo/resources/public/javascript/jquery.cs_seo.ga.1469105178.js", + "id": 3963 + } + ] + } + }, + "tdh": { + "$": [ + { + "path": "statistik/piwik.php", + "id": 4245 + } + ] + }, + "uptain": { + "app": { + "$": [ + { + "path": "js/uptain.js", + "id": 4356 + } + ] + } + }, + "anormal-tracker": { + "$": [ + { + "path": "countv2.php", + "id": 911 + }, + { + "path": "tracker.js", + "id": 910 + } + ] + }, + "gerlinger": { + "$": [ + { + "path": "js/factfinder/tracking.js", + "id": 4408 + } + ] + }, + "zanox-affiliate": { + "www": { + "$": [ + { + "path": "ppv/", + "id": 876 + } + ] + } + }, + "dskfv": { + "static": { + "$": [ + { + "path": "js/plugin_interstitial.js", + "id": 4435 + } + ] + }, + "content": { + "$": [ + { + "path": "js.js", + "id": 4476 + } + ] + } + }, + "wiredminds": { + "$": [ + { + "path": "track", + "id": 819 + } + ] + }, + "ruhrgebiet-onlineservices": { + "tracker": { + "$": [ + { + "path": "tracker.js", + "id": 4477 + } + ] + } + }, + "ioam": { + "script": { + "$": [ + { + "path": "iam.js", + "id": 4397 + } + ] + } + }, + "matelso": { + "rns": { + "$": [ + { + "path": "webtracking.js", + "id": 4971 + } + ] + } + }, + "bayreuth": { + "piwik": { + "$": [ + { + "path": "js/index.php", + "id": 4295 + } + ] + } + }, + "nativendo": { + "d": { + "$": [ + { + "path": "d/", + "id": 5009 + } + ] + }, + "c": { + "$": [ + { + "path": "assets/js/loader.js", + "id": 5010 + } + ] + }, + "t": { + "$": [ + { + "path": "t/", + "id": 5011 + } + ] + } + }, + "emetriq": { + "dyn": { + "$": [ + { + "path": "loader/97578/default.js", + "id": 3601 + }, + { + "path": "loader/86497/default.js", + "id": 3510 + }, + { + "path": "loader", + "id": 3511 + } + ] + }, + "cdn": { + "$": [ + { + "path": "adp/profiling/0.1.13/p.min.js", + "id": 4589 + } + ] + } + } + }, + "bi": { + "deep": { + "api": { + "$": [ + { + "path": "scripts/v1/track.js", + "id": 5021 + } + ] + } + } + }, + "uk": { + "co": { + "amazon": { + "rcm-uk": { + "$": [ + { + "path": "e/cm", + "id": 963 + } + ] + } + }, + "trovus": { + "revelations": { + "$": [ + { + "path": "tracker/", + "id": 108 + } + ] + } + }, + "webforensics": { + "$": [ + { + "path": "js", + "id": 2690 + } + ] + }, + "click4assistance": { + "prod3si": { + "$": [ + { + "path": "JS/ChatWidget.js", + "id": 4140 + } + ] + } + }, + "sykescottages": { + "analytics-cdn": { + "$": [ + { + "path": "rest/md/", + "id": 4262 + } + ] + } + } + } + }, + "ag": { + "script": { + "deluxe": { + "$": [ + { + "path": "tag.js", + "id": 5034 + } + ] + } + } + }, + "ca": { + "amazon": { + "rcm-ca": { + "$": [ + { + "path": "e/cm", + "id": 962 + } + ] + } + } + }, + "gr": { + "skroutz": { + "analytics": { + "$": [ + { + "path": "analytics.min.js", + "id": 5051 + } + ] + } + } + }, + "net": { + "statisfy": { + "$": [ + { + "path": "javascripts/stats.js", + "id": 57 + } + ] + }, + "invoca": { + "js12": { + "$": [ + { + "path": "12/integration.js", + "id": 3782 + } + ] + } + }, + "rs6": { + "$": [ + { + "path": "on.jsp", + "id": 3092 + } + ] + }, + "comodo": { + "secure": { + "$": [ + { + "path": "trustlogo/javascript", + "id": 3120 + } + ] + } + }, + "fastly": { + "ssl": { + "a": { + "assets-polarb-com": { + "$": [ + { + "path": "assets-polarb-com.a.ssl.fastly.net", + "id": 3250 + } + ] + } + }, + "global": { + "cdn-rawr-production": { + "$": [ + { + "path": "api/v2/embed/rawr/auto.js", + "id": 4623 + } + ] + } + } + } + }, + "taggify": { + "$": [ + { + "path": "banners/", + "id": 3011 + }, + { + "path": "view.", + "id": 3011 + }, + { + "path": "va/", + "id": 3011 + }, + { + "path": "v2/", + "id": 3011 + } + ] + }, + "decibelinsight": { + "cdn": { + "$": [ + { + "path": "i/13498/di.js", + "id": 3368 + } + ] + } + }, + "elasticad": { + "cdn": { + "$": [ + { + "path": "native/serve/js/nativeEmbed.gz.js", + "id": 3403 + } + ] + } + }, + "acint": { + "$": [ + { + "path": "aci.js", + "id": 3416 + }, + { + "path": "mc/", + "id": 4709 + } + ] + }, + "webcollage": { + "$": [ + { + "path": "smart-button", + "id": 3422 + } + ] + }, + "spendcrazy": { + "$": [ + { + "path": "sc.html", + "id": 3424 + } + ], + "cloud": { + "$": [ + { + "path": "ab/rt_sidebar_2.html", + "id": 3425 + }, + { + "path": "ab/160.php", + "id": 3426 + } + ] + } + }, + "viafoura": { + "$": [ + { + "path": "vf.js", + "id": 2951 + } + ] + }, + "wishpond": { + "cdn": { + "$": [ + { + "path": "connect.js", + "id": 3433 + } + ] + } + }, + "netdna-ssl": { + "$": [ + { + "path": "js/gittip-widget.js", + "id": 3908 + } + ] + }, + "cogocast": { + "$": [ + { + "path": "tag/partner/", + "id": 3503 + } + ] + }, + "myfonts": { + "hello": { + "$": [ + { + "path": "count", + "id": 2631 + } + ] + } + }, + "admarketplace": { + "tracking": { + "$": [ + { + "path": "tracking.admarketplace.net", + "id": 3527 + } + ] + } + }, + "sociablelabs": { + "api": { + "$": [ + { + "path": "integration/api", + "id": 3781 + } + ] + } + }, + "audienceinsights": { + "static": { + "$": [ + { + "path": "t.js", + "id": 4906 + } + ] + } + }, + "a3cloud": { + "t": { + "$": [ + { + "path": "AM-141112/tag.js", + "id": 4725 + } + ] + } + }, + "financeads": { + "tools": { + "$": [ + { + "path": "girokontorechner.php", + "id": 3657 + } + ] + } + }, + "webstat": { + "$": [ + { + "path": "cgi-bin", + "id": 2396 + } + ] + }, + "livehelpnow": { + "$": [ + { + "path": "lhn/js/internal/lhn-smsbutton.js", + "id": 3794 + } + ], + "www": { + "$": [ + { + "path": "lhn/widgets/chatbutton/lhnchatbutton-current.min.js", + "id": 5067 + } + ] + }, + "developer": { + "$": [ + { + "path": "js/lhn-jquery-1.11.0.min.js", + "id": 5068 + } + ] + } + }, + "content-ad": { + "rtb-px": { + "$": [ + { + "path": "p/cm/bsw", + "id": 4810 + } + ] + } + }, + "naver": { + "wcs": { + "$": [ + { + "path": "wcslog.js", + "id": 3846 + } + ] + } + }, + "trailbox": { + "$": [ + { + "path": "js", + "id": 2690 + } + ] + }, + "pages04": { + "sc": { + "$": [ + { + "path": "lp/static/js/imawebcookie.js", + "id": 3896 + } + ] + } + }, + "trackinvestigate": { + "$": [ + { + "path": "js", + "id": 2690 + } + ] + }, + "leadpages": { + "my": { + "$": [ + { + "path": "static/all/js/can-i-show.js", + "id": 3971 + }, + { + "path": "leadbox", + "id": 3973 + } + ] + }, + "thinkific": { + "$": [ + { + "path": "leadbox/", + "id": 3972 + } + ] + } + }, + "trackercloud": { + "$": [ + { + "path": "js", + "id": 2690 + } + ] + }, + "hwcdn": { + "ssl": { + "c5x8i7c7": { + "$": [ + { + "path": "vplayer-parallel/20170721_1043/ds_vplayer_detached.min.js", + "id": 4789 + } + ] + }, + "$": [ + { + "path": "videojs", + "id": 4026 + } + ] + } + }, + "trackdiscovery": { + "$": [ + { + "path": "js", + "id": 2690 + } + ] + }, + "zencdn": { + "vjs": { + "$": [ + { + "path": "c/video.js", + "id": 4020 + } + ] + } + }, + "finger-info": { + "$": [ + { + "path": "js", + "id": 2690 + } + ] + }, + "livejournal": { + "l-stat": { + "$": [ + { + "path": "js", + "id": 4029 + } + ] + } + }, + "discovertrail": { + "$": [ + { + "path": "js", + "id": 2690 + } + ] + }, + "urosario": { + "ck": { + "$": [ + { + "path": "gtm.js", + "id": 4079 + } + ] + } + }, + "ip-route": { + "$": [ + { + "path": "js", + "id": 2690 + } + ] + }, + "trafex": { + "tex": { + "$": [ + { + "path": "check", + "id": 4084 + } + ] + } + }, + "track-web": { + "$": [ + { + "path": "js", + "id": 2689 + } + ] + }, + "hsleadflows": { + "js": { + "$": [ + { + "path": "leadin.js", + "id": 4283 + } + ] + } + }, + "site-research": { + "$": [ + { + "path": "js", + "id": 2689 + } + ] + }, + "cya2": { + "$": [ + { + "path": "js/stat", + "id": 4103 + } + ] + }, + "domainanalytics": { + "$": [ + { + "path": "js", + "id": 2689 + } + ] + }, + "kitcode": { + "src": { + "$": [ + { + "path": "fp2.js", + "id": 4108 + } + ] + } + }, + "online-metrix": { + "$": [ + { + "path": "fp/check.js", + "id": 3753 + }, + { + "path": "fp", + "id": 1702 + } + ] + }, + "irs01": { + "$": [ + { + "path": "MTFlashStore.swf", + "id": 4113 + } + ] + }, + "targetix": { + "st": { + "$": [ + { + "path": "script/publisherssp", + "id": 3363 + } + ] + } + }, + "yandex": { + "sovetnik": { + "static": { + "$": [ + { + "path": "static/js/sovetnik.webpartner.min.js", + "id": 4427 + } + ] + } + } + }, + "channelfinder": { + "$": [ + { + "path": "js/embed_cf", + "id": 1541 + } + ] + }, + "yastatic": { + "$": [ + { + "path": "pcode/adfox/loader.js", + "id": 5016 + }, + { + "path": "sovetnik/", + "id": 4900 + } + ] + }, + "gb-world": { + "js": { + "$": [ + { + "path": "lib/ga_social_tracking.js", + "id": 1427 + } + ] + } + }, + "calls": { + "adtrack": { + "cendyn": { + "$": [ + { + "path": "euinc/getnumdata.js", + "id": 4188 + } + ] + } + } + }, + "linkz": { + "$": [ + { + "path": "linkz/linkz.js", + "id": 1393 + } + ] + }, + "spoteffects": { + "trck": { + "$": [ + { + "path": "analytics/spef.min.js", + "id": 4269 + } + ] + } + }, + "thesearchagency": { + "$": [ + { + "path": "tsawaypoint.php", + "id": 1319 + } + ] + }, + "persgroep": { + "static2": { + "$": [ + { + "path": "volkskrant/static/js/main.js", + "id": 4290 + } + ] + } + }, + "addynamo": { + "$": [ + { + "path": "ad/", + "id": 1271 + } + ] + }, + "bf-ad": { + "a": { + "$": [ + { + "path": "makabo/js_ng/adplayer/js/adplayer.min.js", + "id": 4297 + } + ] + } + }, + "lfov": { + "$": [ + { + "path": "webrecorder/", + "id": 1248 + } + ] + }, + "d-agency": { + "$": [ + { + "path": "go", + "id": 4302 + } + ] + }, + "mxcdn": { + "$": [ + { + "path": "bb", + "id": 1183 + } + ] + }, + "windows": { + "core": { + "blob": { + "optanon": { + "$": [ + { + "path": "consent/", + "id": 4310 + } + ] + } + } + } + }, + "meetrics": { + "$": [ + { + "path": "bb", + "id": 1183 + } + ] + }, + "lkqd": { + "ad": { + "$": [ + { + "path": "vpaid/vpaid.js", + "id": 4343 + } + ] + }, + "v": { + "$": [ + { + "path": "ad", + "id": 4698 + } + ] + } + }, + "mypagerank": { + "$": [ + { + "path": "services", + "id": 1168 + } + ] + }, + "adnegah": { + "s": { + "$": [ + { + "path": "engine.js", + "id": 4414 + } + ] + }, + "t": { + "$": [ + { + "path": "script/trck.js", + "id": 4881 + } + ] + } + }, + "adform": { + "track": { + "$": [ + { + "path": "serving/scripts/trackpoint/async", + "id": 4126 + } + ] + } + }, + "facebook": { + "connect": { + "$": [ + { + "path": "en_US/fbevents.js", + "id": 4441 + } + ] + } + }, + "sitebro": { + "$": [ + { + "path": "track", + "id": 992 + } + ] + }, + "myvisualiq": { + "vt": { + "$": [ + { + "path": "1", + "id": 4657 + }, + { + "path": "2", + "id": 4465 + } + ] + }, + "t": { + "$": [ + { + "path": "sync", + "id": 4466 + } + ] + } + }, + "paid-to-promote": { + "$": [ + { + "path": "images/ptp.gif", + "id": 918 + } + ] + }, + "appier": { + "jscdn": { + "$": [ + { + "path": "aa.js", + "id": 4514 + } + ] + } + }, + "fbcdn": { + "$": [ + { + "path": "connect.php/js/fb.loader", + "id": 1030 + }, + { + "path": "connect.php/js/fb.share", + "id": 1030 + } + ] + }, + "digidip": { + "forum-fok": { + "$": [ + { + "path": "js", + "id": 4528 + } + ] + } + }, + "tumri": { + "$": [ + { + "path": "ads", + "id": 2782 + } + ] + }, + "gravitec": { + "cdn": { + "$": [ + { + "path": "storage/", + "id": 4541 + } + ] + } + }, + "ixs1": { + "link": { + "$": [ + { + "path": "s/at", + "id": 651 + } + ] + } + }, + "akamaized": { + "speee-ad": { + "$": [ + { + "path": "jstag/v1.3/create-frame.min.js", + "id": 4633 + } + ] + } + }, + "adspeed": { + "$": [ + { + "path": "ad.php", + "id": 636 + } + ] + }, + "slatic": { + "ph-live": { + "$": [ + { + "path": "original", + "id": 4781 + } + ] + } + }, + "networldmedia": { + "vitamine": { + "$": [ + { + "path": "bts/", + "id": 630 + } + ] + } + }, + "boldapps": { + "qb": { + "$": [ + { + "path": "get_suggestions.php", + "id": 4788 + } + ] + } + }, + "ibsrv": { + "static": { + "$": [ + { + "path": "travel/issearchvisitor.min.js", + "id": 3776 + } + ] + }, + "$": [ + { + "path": "forumsponsor", + "id": 2824 + }, + { + "path": "linkshare", + "id": 2824 + }, + { + "path": "sponsors", + "id": 2824 + }, + { + "path": "sponsor", + "id": 2824 + }, + { + "path": "ads", + "id": 2824 + } + ] + }, + "iageengineering": { + "test-adlive24": { + "$": [ + { + "path": "js/client_request.min.js", + "id": 4871 + } + ] + } + }, + "fwmrm": { + "$": [ + { + "path": "ad/", + "id": 599 + }, + { + "path": "p/", + "id": 599 + }, + { + "path": "g/", + "id": 599 + } + ] + }, + "trackcmp": { + "$": [ + { + "path": "visit", + "id": 4873 + } + ] + }, + "clickable": { + "cn": { + "$": [ + { + "path": "js/cct.js", + "id": 583 + } + ] + } + }, + "sc-static": { + "$": [ + { + "path": "scevent.min.js", + "id": 4874 + } + ] + }, + "srtk": { + "$": [ + { + "path": "www/delivery/", + "id": 551 + } + ] + }, + "azureedge": { + "sitebooster-fjfmworld-production": { + "$": [ + { + "path": "sitebooster.min.js", + "id": 4883 + } + ] + } + }, + "wbtrk": { + "cdn": { + "$": [ + { + "path": "js/geid.min.js", + "id": 4575 + } + ] + }, + "geid": { + "$": [ + { + "path": "cc", + "id": 4574 + } + ] + } + }, + "lpomax": { + "$": [ + { + "path": "efocube/js/efocube.js", + "id": 4897 + } + ] + }, + "vizisense": { + "$": [ + { + "path": "pixel.js", + "id": 1265 + } + ] + }, + "zbcdn3": { + "static": { + "$": [ + { + "path": "__ocjenfi/bundle.js", + "id": 4908 + } + ] + } + }, + "openstat": { + "$": [ + { + "path": "sync/p.gif", + "id": 4777 + }, + { + "path": "cnt.js", + "id": 1496 + } + ] + }, + "melissadata": { + "webvisitor": { + "$": [ + { + "path": "js", + "id": 4922 + } + ] + } + }, + "omtrdc": { + "$": [ + { + "path": "m2/", + "id": 2833 + } + ] + }, + "contentpass": { + "api": { + "$": [ + { + "path": "stats", + "id": 4941 + } + ] + }, + "get": { + "$": [ + { + "path": "now.js", + "id": 4958 + } + ] + } + }, + "crwdcntrl": { + "tags": { + "$": [ + { + "path": "c/8753/cc_af.js", + "id": 4195 + } + ] + } + }, + "opta": { + "cloud": { + "widget": { + "$": [ + { + "path": "v3/bin/subscriptions_3.js", + "id": 4980 + }, + { + "path": "data/tz/europe-zurich.js", + "id": 4979 + }, + { + "path": "v3/v3.opta-widgets.js", + "id": 4978 + } + ] + } + } + }, + "yieldmanager": { + "e": { + "$": [ + { + "path": "script.js", + "id": 2799 + } + ] + } + }, + "tifbs": { + "uim": { + "$": [ + { + "path": "js/2690.js", + "id": 5001 + } + ] + } + }, + "2mdn": { + "s0": { + "$": [ + { + "path": "instream/video/client.js", + "id": 3588 + } + ] + } + }, + "uimserv": { + "uir": { + "$": [ + { + "path": "id", + "id": 5002 + } + ] + } + }, + "cloudfront": { + "d3pkae9owd2lcf": { + "$": [ + { + "path": "mb105.gz.js", + "id": 3843 + } + ] + }, + "d3mvnvhjmkxpjz": { + "$": [ + { + "path": "js/", + "id": 3771 + } + ] + }, + "d1stxfv94hrhia": { + "$": [ + { + "path": "waves/v2/w.js", + "id": 3768 + } + ] + }, + "d1aug3dv5magti": { + "$": [ + { + "path": "e/241.js", + "id": 3783 + } + ] + }, + "d39se0h2uvfakd": { + "$": [ + { + "path": "js/acs.js", + "id": 3784 + } + ] + }, + "d12ulf131zb0yj": { + "$": [ + { + "path": "smartforms3-0/smartforms.js", + "id": 3775 + } + ] + }, + "d21rhj7n383afu": { + "$": [ + { + "path": "jwplayer/jwplayerconfig.js", + "id": 4406 + } + ] + }, + "d21gpk1vhmjuf5": { + "$": [ + { + "path": "jquery-unbxdautosuggest.js", + "id": 3984 + }, + { + "path": "unbxdanalytics.js", + "id": 3985 + } + ] + }, + "dcniko1cv0rz": { + "$": [ + { + "path": "realytics-1.2.min.js", + "id": 4076 + } + ] + }, + "dc8xl0ndzn2cb": { + "$": [ + { + "path": "sp.js", + "id": 4199 + } + ] + }, + "d346whrrklhco7": { + "$": [ + { + "path": "sa-tracker-2-7-0.js", + "id": 4282 + } + ] + }, + "d37gvrvc0wt4s1": { + "$": [ + { + "path": "js/", + "id": 2902 + } + ] + }, + "d78fikflryjgj": { + "$": [ + { + "path": "lib/snowplow/2.0.0.js", + "id": 4322 + } + ] + }, + "dc8na2hxrj29i": { + "$": [ + { + "path": "code/keen-", + "id": 2894 + } + ] + }, + "d1lp05q4sghme9": { + "$": [ + { + "path": "tpbsite/tpb160-fact-redalert.gif", + "id": 4129 + } + ] + }, + "d33wq5gej88ld6": { + "$": [ + { + "path": "code_revisions/000/000/118/original/yieldify_1472724462.js", + "id": 4226 + } + ] + }, + "d31y97ze264gaa": { + "$": [ + { + "path": "assets/st/js/st.js", + "id": 4287 + } + ] + }, + "d2ibutkotxl0ax": { + "$": [ + { + "path": "prod/sociable-tag.js", + "id": 3780 + } + ] + }, + "d2hkbi3gan6yg6": { + "$": [ + { + "path": "visscore.tag.min.js", + "id": 4446 + } + ] + }, + "d1n00d49gkbray": { + "$": [ + { + "path": "truereligion/truereligion.js", + "id": 3770 + } + ] + }, + "d1mj578wat5n4o": { + "$": [ + { + "path": "boxever-1.3.1.min.js", + "id": 4457 + } + ] + }, + "dhxtx5wtu812h": { + "$": [ + { + "path": "js/finishline.js", + "id": 3769 + } + ] + }, + "d2hs8ttxghu9n5": { + "$": [ + { + "path": "0.6.0.js", + "id": 4478 + } + ] + }, + "d2ft2mgd1hddln": { + "$": [ + { + "path": "site/ethno/lazyoaf505/minewhat.js", + "id": 3774 + } + ] + }, + "d335luupugsy2": { + "$": [ + { + "path": "js/loader-scripts/b82d276b-0fdf-4874-9d19-97122e7d213f-loader.js", + "id": 4515 + } + ] + }, + "dtym7iokkjlif": { + "$": [ + { + "path": "dough/1.0/", + "id": 2387 + }, + { + "path": "media/js/", + "id": 2387 + } + ] + }, + "d1d8vn0fpluuz7": { + "$": [ + { + "path": "js/adsbyneytiv.js", + "id": 4536 + } + ] + }, + "d2bgg7rjywcwsy": { + "$": [ + { + "path": "js/", + "id": 1533 + } + ] + }, + "d3ir0rz7vxwgq5": { + "$": [ + { + "path": "mwData.min.js", + "id": 4735 + } + ] + }, + "d3io1k5o0zdpqr": { + "$": [ + { + "path": "js/pinit.js", + "id": 1417 + } + ] + }, + "duu8lzqdm8tsz": { + "$": [ + { + "path": "websites/sb.js", + "id": 4894 + } + ] + }, + "d5nxst8fruw4z": { + "$": [ + { + "path": "atrk.gif", + "id": 2366 + } + ] + }, + "desv383oqqc0": { + "$": [ + { + "path": "lib/v2.2/popcornlib.min.js", + "id": 5055 + } + ] + }, + "d31qbv1cthcecs": { + "$": [ + { + "path": "atrk.js", + "id": 2366 + } + ] + }, + "$": [ + { + "path": "advalo-bt6gpr3ks.js", + "id": 5070 + } + ], + "d31j93rd8oukbv": { + "$": [ + { + "path": "metrika/watch.js", + "id": 4913 + }, + { + "path": "metrika/watch.js", + "id": 4959 + } + ] + }, + "d3sjgucddk68ji": { + "$": [ + { + "path": "convertfox.min.js", + "id": 5073 + } + ] + }, + "d3m83gvgzupli": { + "$": [ + { + "path": "webevent/browse.js", + "id": 3787 + } + ] + } + }, + "perimeterx": { + "client": { + "$": [ + { + "path": "main.min.js", + "id": 5036 + } + ] + } + }, + "doubleclick": { + "g": { + "stats": { + "$": [ + { + "path": "dc.js", + "id": 1982 + } + ] + }, + "googleads": { + "$": [ + { + "path": "pagead/viewthroughconversion", + "id": 3280 + }, + { + "path": "pagead/id", + "id": 4147 + } + ] + }, + "securepubads": { + "$": [ + { + "path": "pcs/view", + "id": 4149 + } + ] + }, + "bid": { + "$": [ + { + "path": "xbbe", + "id": 2482 + } + ] + } + }, + "static": { + "$": [ + { + "path": "instream/ad_status.js", + "id": 4136 + } + ] + }, + "$": [ + { + "path": "activityi", + "id": 517 + }, + { + "path": "activity;", + "id": 85 + } + ], + "gan": { + "$": [ + { + "path": "gan", + "id": 598 + } + ] + } + }, + "line-scdn": { + "d": { + "$": [ + { + "path": "n/line_tag/public/release/v1/lt.js", + "id": 5092 + } + ] + } + }, + "geekchart": { + "req": { + "$": [ + { + "path": "req.php", + "id": 3275 + } + ] + } + } + }, + "media": { + "stat": { + "$": [ + { + "path": "counter/api", + "id": 5060 + } + ] + } + }, + "com": { + "163": { + "analytics": { + "$": [ + { + "path": "ntes.js", + "id": 3731 + } + ] + } + }, + "trendemon": { + "$": [ + { + "path": "apis/loadflame/mainflamejs", + "id": 3388 + } + ] + }, + "bebi": { + "$": [ + { + "path": "public/js/bebi_v1.js", + "id": 3391 + } + ], + "st": { + "$": [ + { + "path": "bebi_v3.js", + "id": 3935 + } + ] + }, + "go": { + "$": [ + { + "path": "w/1.1/", + "id": 3936 + } + ] + } + }, + "indexww": { + "js": { + "$": [ + { + "path": "ht/cur3.js", + "id": 3399 + } + ] + }, + "js-sec": { + "$": [ + { + "path": "ht/", + "id": 4556 + } + ] + } + }, + "ngageinc": { + "ads": { + "$": [ + { + "path": "index_ci.php/pxl/fire/testin49660", + "id": 3400 + }, + { + "path": "index_ci.php", + "id": 3595 + } + ] + } + }, + "sendtonews": { + "$": [ + { + "path": "player/sidebar.php", + "id": 3385 + } + ] + }, + "pubexchange": { + "cdn": { + "$": [ + { + "path": "modules/partner/the_good_men_project", + "id": 3406 + } + ] + }, + "cdn2": { + "$": [ + { + "path": "modules/display/popsugar_moms/477/rail_by_partner/f", + "id": 3407 + } + ] + }, + "traffic": { + "$": [ + { + "path": "m/1433545629/bc247b13-7e42-4b98-96d1-a90066909bef", + "id": 3408 + } + ] + } + }, + "nextclickads": { + "cdn": { + "$": [ + { + "path": "nextclickads/tags/xbanner/xbanner.js", + "id": 3409 + } + ] + } + }, + "bankrate": { + "$": [ + { + "path": "jsfeeds/cnbc-maintab-mtg-avgs.js", + "id": 3414 + } + ], + "as": { + "$": [ + { + "path": "RealMedia/ads/adstream.cap/123", + "id": 3415 + } + ] + } + }, + "boomtrain": { + "cdn": { + "$": [ + { + "path": "analyticstrain/", + "id": 3417 + } + ] + } + }, + "elasticbeanstalk": { + "$": [ + { + "path": "toysrus/m/sidekick.js", + "id": 3419 + } + ], + "sidekick-toysrus": { + "$": [ + { + "path": "sidekick/sidetrack.js", + "id": 3602 + }, + { + "path": "toysrus/m/sidekick.js", + "id": 3469 + } + ] + } + }, + "microsoft": { + "c": { + "$": [ + { + "path": "ms.js", + "id": 3384 + } + ] + } + }, + "btttag": { + "$": [ + { + "path": "btt.js", + "id": 3420 + } + ] + }, + "adinton": { + "$": [ + { + "path": "script.3.1/adinton.js", + "id": 3471 + }, + { + "path": "script/adinton.js", + "id": 3380 + } + ] + }, + "iovation": { + "ci-mpsnare": { + "$": [ + { + "path": "script/logo.js", + "id": 3431 + }, + { + "path": "snare.js", + "id": 3430 + } + ] + } + }, + "manycontacts": { + "$": [ + { + "path": "assets/js/manycontacts.min.js", + "id": 3362 + } + ] + }, + "iesnare": { + "$": [ + { + "path": "e/iovation_sync.xgi", + "id": 3736 + }, + { + "path": "snare.js", + "id": 3735 + }, + { + "path": "script/", + "id": 3737 + } + ] + }, + "targetfuel": { + "cdn": { + "$": [ + { + "path": "client.js", + "id": 3361 + } + ] + } + }, + "leadexposer": { + "$": [ + { + "path": "analytics", + "id": 3435 + } + ] + }, + "genoo": { + "api": { + "$": [ + { + "path": "js/gtrack.js", + "id": 3451 + } + ] + } + }, + "ad120m": { + "creative": { + "$": [ + { + "path": "ad120m/scripts/smart/smart.js", + "id": 3445 + } + ] + } + }, + "gumroad": { + "$": [ + { + "path": "js/gumroad.js", + "id": 3450 + } + ] + }, + "ad-center": { + "ads": { + "$": [ + { + "path": "smart_ad/display", + "id": 3446 + } + ] + } + }, + "pressly": { + "api": { + "$": [ + { + "path": "metrix", + "id": 3347 + } + ] + } + }, + "trustpilot": { + "widget": { + "$": [ + { + "path": "bootstrap/v5/tp.widget.bootstrap.min.js", + "id": 3465 + } + ] + }, + "api": { + "$": [ + { + "path": "v1/product-reviews/business-units", + "id": 4256 + } + ] + }, + "invitejs": { + "$": [ + { + "path": "tp.min.js", + "id": 4954 + } + ] + } + }, + "springboardplatform": { + "cdn": { + "$": [ + { + "path": "storage", + "id": 3315 + } + ] + } + }, + "emagazines": { + "$": [ + { + "path": "insight/javascript/emags_fingerprint.js", + "id": 3466 + } + ] + }, + "sumo": { + "$": [ + { + "path": "api/load/", + "id": 4606 + } + ] + }, + "adosia": { + "$": [ + { + "path": "adscroll/iscroll-min.js", + "id": 3472 + } + ] + }, + "callbackhunter": { + "$": [ + { + "path": "_hunter/", + "id": 3906 + }, + { + "path": "widget", + "id": 3298 + } + ] + }, + "ml314": { + "$": [ + { + "path": "utsync.ashx", + "id": 4227 + }, + { + "path": "tag.aspx", + "id": 3474 + } + ] + }, + "addinto": { + "$": [ + { + "path": "ai/ai2_bkmk.js", + "id": 3289 + }, + { + "path": "logos/", + "id": 3289 + } + ] + }, + "lockerdome": { + "cdn2": { + "$": [ + { + "path": "_js/ajs.js", + "id": 3475 + } + ] + } + }, + "hupso": { + "static": { + "$": [ + { + "path": "share/", + "id": 3287 + } + ] + }, + "$": [ + { + "path": "share/img/services/", + "id": 3287 + } + ] + }, + "kixer": { + "$": [ + { + "path": "ad/load.js", + "id": 3477 + } + ] + }, + "webcontadores": { + "$": [ + { + "path": "private/counter.js", + "id": 3281 + } + ] + }, + "imonomy": { + "$": [ + { + "path": "script/preload.js", + "id": 3507 + } + ] + }, + "statcounterfree": { + "$": [ + { + "path": "private/counter.js", + "id": 3281 + } + ] + }, + "survicate": { + "api": { + "$": [ + { + "path": "assets/survicate.js", + "id": 3496 + } + ] + } + }, + "freecounterstat": { + "$": [ + { + "path": "private/counter.js", + "id": 3281 + } + ] + }, + "connatix": { + "cdn": { + "$": [ + { + "path": "min/connatix.renderer.infeed.min.js", + "id": 4012 + }, + { + "path": "min/connatix.handler.dfp.min.js", + "id": 3500 + } + ] + } + }, + "contatoreaccessi": { + "$": [ + { + "path": "private/counter.js", + "id": 3281 + } + ] + }, + "revee": { + "analytics": { + "$": [ + { + "path": "analytics-v1.js", + "id": 3501 + } + ] + } + }, + "contadorvisitasgratis": { + "$": [ + { + "path": "private/counter.js", + "id": 3281 + } + ] + }, + "adcmps": { + "$": [ + { + "path": "services/tag/js/2779.js", + "id": 3509 + } + ] + }, + "compteurdevisite": { + "$": [ + { + "path": "private/counter.js", + "id": 3281 + } + ] + }, + "shopperapproved": { + "$": [ + { + "path": "widgets", + "id": 3536 + } + ] + }, + "besucherstatistiken": { + "$": [ + { + "path": "private/counter.js", + "id": 3281 + } + ] + }, + "apxlv": { + "tag": { + "$": [ + { + "path": "tag/partner", + "id": 3553 + } + ] + } + }, + "mi725": { + "$": [ + { + "path": "content", + "id": 3271 + } + ] + }, + "rubiconproject": { + "tap": { + "$": [ + { + "path": "partner/agent/rubicon/channels.js", + "id": 3563 + } + ] + } + }, + "forcetrac": { + "$": [ + { + "path": "euinc", + "id": 3270 + } + ] + }, + "vox-cdn": { + "cdn0": { + "$": [ + { + "path": "javascripts/vox_body.vccce586c191e0822.js", + "id": 3575 + } + ] + } + }, + "akanoo": { + "$": [ + { + "path": "tracker", + "id": 3269 + }, + { + "path": "aa", + "id": 3269 + }, + { + "path": "t", + "id": 3269 + } + ] + }, + "voxmedia": { + "phonograph-static": { + "$": [ + { + "path": "beacon-min.js", + "id": 3576 + } + ] + } + }, + "indeed": { + "$": [ + { + "path": "pagead/conv", + "id": 3260 + }, + { + "path": "p/jobs", + "id": 3260 + }, + { + "path": "ads/", + "id": 3260 + } + ] + }, + "googleusercontent": { + "oauth": { + "$": [ + { + "path": "gadgets/js", + "id": 3582 + } + ] + } + }, + "intilery-analytics": { + "$": [ + { + "path": "rest/", + "id": 3259 + } + ] + }, + "trb": { + "m": { + "$": [ + { + "path": "b/ss/tribnglobal/1/JS-1.3.1", + "id": 3587 + } + ] + } + }, + "adskom": { + "ssp": { + "$": [ + { + "path": "ak-dcopriv.js", + "id": 3890 + }, + { + "path": "vads", + "id": 3256 + }, + { + "path": "ads", + "id": 3256 + } + ] + } + }, + "wistia": { + "fast": { + "$": [ + { + "path": "assets/external/popover-v1.js", + "id": 4357 + } + ] + } + }, + "cartstack": { + "api": { + "$": [ + { + "path": "js/cs.js", + "id": 4308 + } + ] + } + }, + "nytimes": { + "$": [ + { + "path": "adx/bin/adxrun.html", + "id": 3627 + } + ] + }, + "fonts": { + "fast": { + "$": [ + { + "path": "t/trackingcode.js", + "id": 3537 + }, + { + "path": "t/trackingcode.js", + "id": 3249 + } + ] + } + }, + "appattern": { + "$": [ + { + "path": "enterprise/tracker", + "id": 3629 + } + ] + }, + "tenderapp": { + "$": [ + { + "path": "tender_widget.js", + "id": 3248 + } + ] + }, + "trackerpattern": { + "$": [ + { + "path": "enterprise/tracker", + "id": 3630 + } + ] + }, + "mediavoice": { + "plugin": { + "$": [ + { + "path": "mediaconductor/mc.js", + "id": 4595 + }, + { + "path": "plugin.js", + "id": 3238 + } + ] + }, + "cdn": { + "$": [ + { + "path": "nativeads/script/jpress/native-ads-live.js", + "id": 4594 + } + ] + } + }, + "statmonitoring": { + "nodes": { + "$": [ + { + "path": "scripts/tracking_clic.php", + "id": 3633 + } + ] + } + }, + "getsignals": { + "app": { + "$": [ + { + "path": "img.gif", + "id": 3217 + } + ] + } + }, + "vidora": { + "assets": { + "$": [ + { + "path": "js/", + "id": 3638 + } + ] + } + }, + "dianomi": { + "$": [ + { + "path": "click.ep", + "id": 4196 + } + ] + }, + "getmetrical": { + "content": { + "bankrate": { + "$": [ + { + "path": "js/metrical.js", + "id": 3639 + } + ] + } + } + }, + "appspot": { + "mailfoogae": { + "$": [ + { + "path": "t", + "id": 3132 + } + ] + } + }, + "datanyze": { + "tr": { + "$": [ + { + "path": "visit.php", + "id": 3640 + } + ] + } + }, + "trustlogo": { + "$": [ + { + "path": "trustlogo/javascript", + "id": 3120 + } + ] + }, + "edkay": { + "s": { + "$": [ + { + "path": "api/sync/1/", + "id": 3642 + } + ] + } + }, + "skypeassets": { + "$": [ + { + "path": "i/scom/", + "id": 3094 + } + ] + }, + "adrta": { + "q": { + "$": [ + { + "path": "aa.js", + "id": 3646 + } + ] + } + }, + "skype": { + "download": { + "$": [ + { + "path": "share/skypebuttons/", + "id": 3094 + } + ] + }, + "dev": { + "cdn": { + "$": [ + { + "path": "uri/", + "id": 3094 + } + ] + } + } + }, + "applovin": { + "assets": { + "$": [ + { + "path": "js/applovin-mw-min.js", + "id": 3647 + } + ] + } + }, + "sprinklecontent": { + "widgets": { + "$": [ + { + "path": "v2/sprinkle.js", + "id": 4869 + } + ] + } + }, + "kickfactory": { + "ping": { + "$": [ + { + "path": "ping", + "id": 3648 + } + ] + } + }, + "kiosked": { + "scripts": { + "$": [ + { + "path": "loader/kiosked-loader.js", + "id": 3505 + } + ] + } + }, + "recopick": { + "api": { + "$": [ + { + "path": "v1/logs/visit/", + "id": 3649 + } + ] + }, + "static": { + "$": [ + { + "path": "dist/production.min.js", + "id": 3650 + } + ] + } + }, + "toro-tags": { + "$": [ + { + "path": "_tags/jstags.js", + "id": 4490 + } + ] + }, + "fullstory": { + "$": [ + { + "path": "s/fs.js", + "id": 3652 + } + ] + }, + "youtube": { + "$": [ + { + "path": "subscribe_widget", + "id": 3080 + } + ] + }, + "virool": { + "api": { + "$": [ + { + "path": "widgets/inline/", + "id": 3751 + } + ] + }, + "ssp": { + "$": [ + { + "path": "rubicon/player.js", + "id": 4455 + } + ] + } + }, + "affiliation-france": { + "$": [ + { + "path": "pooltag", + "id": 3071 + }, + { + "path": "scripts", + "id": 3071 + }, + { + "path": "bans", + "id": 3071 + } + ] + }, + "jumpstarttaggingsolutions": { + "$": [ + { + "path": "tags/", + "id": 3664 + } + ] + }, + "cuelinks": { + "$": [ + { + "path": "js/", + "id": 3043 + } + ] + }, + "socdm": { + "ssl": { + "$": [ + { + "path": "sa/img", + "id": 3733 + } + ] + }, + "tg": { + "$": [ + { + "path": "so-async.js", + "id": 3734 + } + ] + } + }, + "captora": { + "$": [ + { + "path": "js/", + "id": 3757 + } + ] + }, + "advarkads": { + "s3": { + "$": [ + { + "path": "modules/cr.js", + "id": 3738 + } + ] + } + }, + "vertoz": { + "ads": { + "$": [ + { + "path": "scripts/pageads.js", + "id": 3915 + } + ] + } + }, + "live800": { + "$": [ + { + "path": "live800/chatclient/staticbutton.js", + "id": 3742 + } + ] + }, + "vrtzads": { + "banner": { + "$": [ + { + "path": "scripts/pageads.js", + "id": 3037 + } + ] + } + }, + "afsanalytics": { + "$": [ + { + "path": "cgi-bin/afstracka.cg", + "id": 3744 + } + ] + }, + "adonly": { + "t": { + "$": [ + { + "path": "core/tag.js", + "id": 3364 + } + ] + } + }, + "beeketing": { + "$": [ + { + "path": "dist/js/front/loader/shopify.js", + "id": 3758 + } + ], + "t": { + "$": [ + { + "path": "bk/api/count_visitor.json", + "id": 4726 + } + ] + }, + "sdk": { + "$": [ + { + "path": "js/beeketing.js", + "id": 4749 + } + ] + }, + "api": { + "$": [ + { + "path": "rest-api/v1/abtest/active", + "id": 4750 + } + ] + } + }, + "flickr": { + "$": [ + { + "path": "apps/badge/badge_iframe.gne", + "id": 3021 + }, + { + "path": "badge_code_v2.gne", + "id": 3021 + } + ] + }, + "adthrive": { + "cloud": { + "$": [ + { + "path": "ads/v1/js/adthrive.min.js", + "id": 3747 + } + ] + } + }, + "conversionsbox": { + "$": [ + { + "path": "cb.js", + "id": 3005 + } + ] + }, + "retentionscience": { + "waves": { + "$": [ + { + "path": "wave", + "id": 3748 + } + ] + } + }, + "pathful": { + "$": [ + { + "path": "js/scripts/", + "id": 2992 + } + ] + }, + "medio": { + "events": { + "$": [ + { + "path": "jssdk", + "id": 3761 + } + ] + } + }, + "flurry": { + "cdn": { + "$": [ + { + "path": "js/", + "id": 2979 + } + ] + } + }, + "everstring": { + "listener": { + "$": [ + { + "path": "web/estrack.js", + "id": 3767 + } + ] + } + }, + "viafoura": { + "$": [ + { + "path": "app/js/vf.js", + "id": 2952 + } + ] + }, + "module-videodesk": { + "$": [ + { + "path": "js/videodesk.js", + "id": 3786 + } + ] + }, + "learnpipe": { + "$": [ + { + "path": "javascript/widget/search/pubblesearchinit.js", + "id": 2945 + }, + { + "path": "javascript/widget/qa/qainit.js", + "id": 2945 + } + ] + }, + "groupbycloud": { + "tracker": { + "$": [ + { + "path": "js/gb-tracker.js", + "id": 3788 + } + ] + } + }, + "yottos": { + "$": [ + { + "path": "getmyad", + "id": 2928 + } + ] + }, + "hatchbuck": { + "app": { + "$": [ + { + "path": "trackwebpage", + "id": 3789 + } + ] + } + }, + "statuscake": { + "$": [ + { + "path": "app/", + "id": 2913 + } + ] + }, + "vuukle": { + "$": [ + { + "path": "js/vuukle.js", + "id": 3791 + } + ] + }, + "informer": { + "$": [ + { + "path": "favorites-button.js", + "id": 2874 + } + ] + }, + "engagesciences": { + "track": { + "$": [ + { + "path": "track.ngx", + "id": 4857 + } + ] + } + }, + "richmedia247": { + "$": [ + { + "path": "sync", + "id": 2869 + } + ] + }, + "sheerid": { + "services": { + "$": [ + { + "path": "jsapi/sheerid.js", + "id": 3793 + } + ] + } + }, + "heybubble": { + "$": [ + { + "path": "vchat/content/", + "id": 2865 + }, + { + "path": "vchat/frame/", + "id": 2865 + } + ] + }, + "temails": { + "api": { + "$": [ + { + "path": "cs/", + "id": 3796 + } + ] + } + }, + "videostep": { + "kweb": { + "$": [ + { + "path": "getlink", + "id": 2864 + } + ] + }, + "s": { + "$": [ + { + "path": "StatV1", + "id": 4756 + } + ] + }, + "content": { + "$": [ + { + "path": "VideoAd/VideoAdContent", + "id": 4757 + } + ] + }, + "u": { + "$": [ + { + "path": "User/GetIvId", + "id": 4758 + } + ] + } + }, + "wanelo": { + "cdn-saveit": { + "$": [ + { + "path": "bookmarklet/3/save.js", + "id": 3803 + } + ] + } + }, + "yesware": { + "app": { + "$": [ + { + "path": "t/", + "id": 2842 + } + ] + } + }, + "mozoo": { + "storage": { + "$": [ + { + "path": "publisher_scripts/mz_pubscript.js", + "id": 3804 + } + ] + } + }, + "crowdynews": { + "widget": { + "$": [ + { + "path": "js/widget.js", + "id": 3365 + } + ] + } + }, + "zoho": { + "salesiq": { + "$": [ + { + "path": "yupbrands/float.ls", + "id": 4250 + } + ] + } + }, + "carrierzone": { + "$": [ + { + "path": "app/count", + "id": 2765 + } + ] + }, + "opensharecount": { + "$": [ + { + "path": "count.json", + "id": 3807 + } + ] + }, + "getpocket": { + "widgets": { + "$": [ + { + "path": "v1/j/btn.js", + "id": 2753 + }, + { + "path": "v1/button", + "id": 4800 + } + ] + } + }, + "radio": { + "player": { + "$": [ + { + "path": "player/javascript/launchplayer.js", + "id": 3808 + } + ] + } + }, + "appdynamics": { + "cdn": { + "$": [ + { + "path": "adrum", + "id": 3997 + } + ] + } + }, + "adscoops": { + "send": { + "$": [ + { + "path": "tracking.js", + "id": 3809 + } + ] + } + }, + "maploco": { + "www": { + "$": [ + { + "path": "vm", + "id": 2742 + } + ] + } + }, + "truefitcorp": { + "kat-cdns": { + "$": [ + { + "path": "fitrec/kat/js/fitrec.js", + "id": 3810 + } + ] + }, + "und-cdns": { + "$": [ + { + "path": "fitrec/und/js/fitrec.js", + "id": 4309 + } + ] + } + }, + "kargo": { + "$": [ + { + "path": "ad/network/tag/kargo-", + "id": 2740 + } + ] + }, + "feefo": { + "$": [ + { + "path": "reviewjs", + "id": 3812 + } + ] + }, + "ypcdn": { + "c": { + "$": [ + { + "path": "2/i/rtd", + "id": 2812 + } + ] + }, + "i1": { + "$": [ + { + "path": "hyperlocal/", + "id": 2812 + } + ] + } + }, + "clickback": { + "software": { + "$": [ + { + "path": "scripts/cbintegrations.js", + "id": 3813 + } + ] + } + }, + "vrvm": { + "go": { + "$": [ + { + "path": "t", + "id": 2727 + } + ] + }, + "c": { + "$": [ + { + "path": "pass/vrv/", + "id": 2727 + } + ] + }, + "adcel": { + "$": [ + { + "path": "adtag.js", + "id": 2727 + } + ] + } + }, + "bdex": { + "exchange": { + "$": [ + { + "path": "bdex/bdexIdentity.jsp", + "id": 3816 + } + ] + } + }, + "velti": { + "$": [ + { + "path": "phx.", + "id": 2726 + } + ] + }, + "fuel451": { + "cookie": { + "$": [ + { + "path": "tracksa.min.js", + "id": 3817 + } + ] + } + }, + "lucidmedia": { + "$": [ + { + "path": "images/adchoices", + "id": 2721 + } + ] + }, + "target2sell": { + "$": [ + { + "path": "t2s.min.js", + "id": 3818 + } + ] + }, + "exitmonetization": { + "$": [ + { + "path": "js", + "id": 2717 + } + ] + }, + "exponea": { + "api": { + "$": [ + { + "path": "js/infinario", + "id": 3825 + } + ] + } + }, + "deloton": { + "$": [ + { + "path": "apu", + "id": 5028 + } + ] + }, + "yozio": { + "impression": { + "$": [ + { + "path": "lk.c.cf", + "id": 3826 + } + ] + } + }, + "validclick": { + "$": [ + { + "path": "api/census", + "id": 4888 + } + ] + }, + "linkup": { + "$": [ + { + "path": "employers/track/conversion.js", + "id": 3827 + } + ] + }, + "getvero": { + "$": [ + { + "path": "assets/m.js", + "id": 2807 + } + ] + }, + "jobs2careers": { + "$": [ + { + "path": "conversion2.php", + "id": 3828 + } + ] + }, + "flx1": { + "go": { + "$": [ + { + "path": "uid", + "id": 4334 + }, + { + "path": "px", + "id": 4335 + } + ] + } + }, + "gravity4": { + "pixel": { + "$": [ + { + "path": "retargetingScript/", + "id": 3837 + } + ] + } + }, + "groovehq": { + "$": [ + { + "path": "widgets/", + "id": 2660 + } + ] + }, + "siteimproveanalytics": { + "$": [ + { + "path": "js", + "id": 3841 + } + ] + }, + "stocktwits": { + "$": [ + { + "path": "addon/widget", + "id": 2650 + }, + { + "path": "networkbar", + "id": 2650 + } + ] + }, + "googletagservices": { + "$": [ + { + "path": "tag/js/gpt.js", + "id": 3577 + } + ] + }, + "heapanalytics": { + "$": [ + { + "path": "js/heap.js", + "id": 3107 + }, + { + "path": "api", + "id": 3107 + }, + { + "path": "h", + "id": 3107 + } + ] + }, + "clicks4ads": { + "clk": { + "$": [ + { + "path": "click.php", + "id": 3844 + } + ] + } + }, + "addshoppers": { + "$": [ + { + "path": "widget", + "id": 2633 + } + ] + }, + "capturly": { + "cdn": { + "$": [ + { + "path": "js/track.js", + "id": 3848 + } + ] + } + }, + "contactusplus": { + "$": [ + { + "path": "toolbar.js", + "id": 2624 + } + ] + }, + "adpop-1": { + "n": { + "$": [ + { + "path": "click", + "id": 3849 + } + ] + } + }, + "userpulse": { + "$": [ + { + "path": "toolbar.js", + "id": 2624 + } + ] + }, + "popmyads": { + "cdn": { + "$": [ + { + "path": "pma.js", + "id": 3850 + } + ] + } + }, + "scribit": { + "$": [ + { + "path": "vat/mon/vts.js", + "id": 2622 + } + ] + }, + "adnymics": { + "$": [ + { + "path": "piwik.js", + "id": 3852 + } + ] + }, + "shopsocially": { + "$": [ + { + "path": "js", + "id": 2615 + } + ] + }, + "sharpspring": { + "$": [ + { + "path": "client/ss.js", + "id": 4950 + }, + { + "path": "koi", + "id": 4949 + } + ] + }, + "craftkeys": { + "$": [ + { + "path": "track.js", + "id": 2604 + } + ] + }, + "playbuzz": { + "cdn": { + "$": [ + { + "path": "widget/feed.js", + "id": 3858 + } + ] + } + }, + "thefancy": { + "$": [ + { + "path": "fancyit.js", + "id": 2601 + }, + { + "path": "widget.js", + "id": 2601 + } + ] + }, + "ads5-adnow": { + "n": { + "st": { + "$": [ + { + "path": "i/logo/adnow-mini-v2.png", + "id": 3859 + } + ] + } + } + }, + "3lift": { + "eb2": { + "$": [ + { + "path": "xuid", + "id": 4702 + } + ] + } + }, + "ads2-adnow": { + "n": { + "$": [ + { + "path": "u", + "id": 3860 + } + ] + }, + "st-n": { + "$": [ + { + "path": "js/adv_cto.js", + "id": 3861 + }, + { + "path": "js/t.js", + "id": 3862 + } + ] + } + }, + "baidustatic": { + "$": [ + { + "path": "cpro/ui/", + "id": 2699 + } + ] + }, + "ads1-adnow": { + "st-n": { + "$": [ + { + "path": "js/t.js", + "id": 4430 + } + ] + } + }, + "ecustomeropinions": { + "$": [ + { + "path": "survey", + "id": 2542 + } + ] + }, + "ads3-adnow": { + "st-n": { + "$": [ + { + "path": "js/adv_out.js", + "id": 4553 + }, + { + "path": "js/adv_out.js", + "id": 4442 + } + ] + } + }, + "superfish": { + "$": [ + { + "path": "apiserver", + "id": 2530 + } + ] + }, + "spoutable": { + "e": { + "$": [ + { + "path": "e", + "id": 5017 + } + ] + } + }, + "extole": { + "$": [ + { + "path": ".extole.com", + "id": 2519 + } + ] + }, + "limk": { + "cdn": { + "$": [ + { + "path": "assets/shared/js/loader.min.js", + "id": 3866 + }, + { + "path": "user-widget", + "id": 3865 + } + ] + } + }, + "st-hatena": { + "$": [ + { + "path": "js/bookmark_button", + "id": 2518 + } + ] + }, + "revenue": { + "$": [ + { + "path": "infusion.php", + "id": 3867 + } + ] + }, + "blastro": { + "$": [ + { + "path": "images/ads", + "id": 2777 + } + ] + }, + "airpush": { + "ab": { + "$": [ + { + "path": "apportal/client/airpush.js", + "id": 4142 + } + ] + } + }, + "ads-twitter": { + "static": { + "$": [ + { + "path": "uwt.js", + "id": 4179 + }, + { + "path": "oct.js", + "id": 4178 + } + ] + } + }, + "onesignal": { + "cdn": { + "$": [ + { + "path": "sdks/onesignalsdk.js", + "id": 4391 + } + ] + }, + "$": [ + { + "path": "api/v1/sync", + "id": 4699 + } + ] + }, + "tcimg": { + "s": { + "$": [ + { + "path": "w/v3/trendcounter.js", + "id": 4395 + } + ] + } + }, + "viral-loops": { + "app": { + "$": [ + { + "path": "popup_assets/templates/sweepstake.min.js", + "id": 3869 + }, + { + "path": "popup_assets/js/vl_bundle.min.js", + "id": 3870 + }, + { + "path": "popup_assets/js/vl_load.min.js", + "id": 3871 + } + ] + } + }, + "licdn": { + "$": [ + { + "path": "scds/common/u/img/icon/icon_adchoices_ac_77x15.png", + "id": 2463 + } + ], + "snap": { + "$": [ + { + "path": "li.lms-analytics/insight.min.js", + "id": 4176 + } + ] + } + }, + "yottlyscript": { + "$": [ + { + "path": "customer-tracking.js", + "id": 3888 + } + ] + }, + "needle": { + "$": [ + { + "path": "needle_service.js", + "id": 2433 + } + ] + }, + "cfjump": { + "t": { + "$": [ + { + "path": "tag/", + "id": 3893 + } + ] + } + }, + "redtram": { + "goods": { + "js": { + "$": [ + { + "path": "ticker_", + "id": 2797 + } + ] + } + }, + "$": [ + { + "path": "n4p/", + "id": 2797 + } + ] + }, + "mediapeo2": { + "$": [ + { + "path": "apv2", + "id": 3895 + } + ] + }, + "shareaholic": { + "cdn": { + "$": [ + { + "path": "media/js/", + "id": 2419 + } + ] + }, + "$": [ + { + "path": "analytics_frame.html", + "id": 2419 + } + ] + }, + "jwpcdn": { + "p": { + "$": [ + { + "path": "6/10/jwplayer.js", + "id": 4253 + } + ], + "ssl": { + "$": [ + { + "path": "player/v/7.8.2/googima.js", + "id": 4123 + } + ] + } + } + }, + "sascdn": { + "ced-ns": { + "$": [ + { + "path": "diff/js/smart.js", + "id": 4733 + } + ] + } + }, + "jwplatform": { + "content": { + "$": [ + { + "path": "libraries/puack8zv.js", + "id": 4967 + } + ] + } + }, + "sas": { + "ci360": { + "$": [ + { + "path": "js/ot_boot-min.js", + "id": 3836 + } + ] + } + }, + "ipredictive": { + "ad": { + "$": [ + { + "path": "d/track/cvt/pixe", + "id": 3903 + } + ] + } + }, + "tradera": { + "kampanj": { + "$": [ + { + "path": "widget", + "id": 2359 + } + ] + } + }, + "callbackkiller": { + "cdn": { + "$": [ + { + "path": "widget/cbk.js", + "id": 3909 + } + ] + } + }, + "cdnmaster": { + "$": [ + { + "path": "sitemaster/collect.js", + "id": 4557 + } + ] + }, + "lytics": { + "$": [ + { + "path": "assets/js/app.min.js", + "id": 3910 + } + ] + }, + "adbmit": { + "$": [ + { + "path": "static/js/pixil.min.js", + "id": 4157 + } + ] + }, + "leadgenic": { + "gate": { + "$": [ + { + "path": "getscript", + "id": 3918 + } + ] + }, + "static": { + "$": [ + { + "path": "lg_widgets/exit-intent/script-exit-int.js", + "id": 3922 + }, + { + "path": "lg_widgets/callback/script-callback.js", + "id": 3919 + }, + { + "path": "lg_widgets/mobile/script-mobile.js", + "id": 3921 + }, + { + "path": "lg_widgets/invite/script-invite.js", + "id": 3920 + } + ] + } + }, + "googletagmanager": { + "$": [ + { + "path": "ns.html", + "id": 3574 + } + ] + }, + "fqsecure": { + "c": { + "$": [ + { + "path": "js/implement.js", + "id": 3932 + } + ] + } + }, + "adedy": { + "$": [ + { + "path": "creatives", + "id": 2120 + } + ] + }, + "eventoptimize": { + "cache": { + "$": [ + { + "path": "tags/pixels/", + "id": 3937 + } + ] + } + }, + "weebly": { + "$": [ + { + "path": "weebly/apps/serveads", + "id": 2101 + } + ] + }, + "salesfeed": { + "api": { + "$": [ + { + "path": "v3/bootstrap.js", + "id": 3942 + } + ] + } + }, + "jlist": { + "$": [ + { + "path": "feed.php", + "id": 2040 + }, + { + "path": "media/", + "id": 2040 + }, + { + "path": "ad/", + "id": 2040 + } + ] + }, + "gannett-cdn": { + "$": [ + { + "path": "360player/comscore/streamsense.5.1.1.160316.min.js", + "id": 3943 + } + ] + }, + "lepinsar": { + "cdn": { + "$": [ + { + "path": "Scripts/MediaScripts/b.js", + "id": 4010 + } + ] + } + }, + "celebrus": { + "$": [ + { + "path": "9567/handler9/session.js", + "id": 3946 + }, + { + "path": "javascriptinsert.js", + "id": 3947 + } + ] + }, + "9c9media": { + "cauth": { + "$": [ + { + "path": "auth9/axisAuthApi.js", + "id": 4201 + } + ] + } + }, + "delta": { + "$": [ + { + "path": "content/dam/delta-applications/js/celebrus/", + "id": 3948 + } + ] + }, + "radarstats": { + "$": [ + { + "path": "js/widget.js", + "id": 1918 + } + ] + }, + "pricespider": { + "cdn": { + "$": [ + { + "path": "1/lib/ps-widget.js", + "id": 3955 + } + ] + } + }, + "mamydirect": { + "js": { + "$": [ + { + "path": "js", + "id": 4983 + } + ] + } + }, + "pushcrew": { + "cdn": { + "$": [ + { + "path": "js", + "id": 3966 + } + ] + } + }, + "adexcite": { + "$": [ + { + "path": "ads", + "id": 1876 + } + ] + }, + "condenastdigital": { + "pixel": { + "$": [ + { + "path": "sparrow.min.js", + "id": 3968 + }, + { + "path": "match", + "id": 3967 + } + ] + }, + "capture": { + "$": [ + { + "path": "track", + "id": 5085 + } + ] + }, + "4d": { + "$": [ + { + "path": "user", + "id": 5086 + } + ] + } + }, + "clickiocdn": { + "s": { + "$": [ + { + "path": "t", + "id": 4675 + } + ] + } + }, + "crossroadswow": { + "app": { + "$": [ + { + "path": "chatjs", + "id": 3978 + } + ] + } + }, + "servebom": { + "ads": { + "$": [ + { + "path": "tmnhead.js", + "id": 4119 + } + ] + } + }, + "brainly": { + "popular-tracker": { + "$": [ + { + "path": "track", + "id": 3981 + } + ] + } + }, + "smart4ads": { + "$": [ + { + "path": "smart4ads", + "id": 1857 + } + ] + }, + "circulate": { + "data": { + "$": [ + { + "path": "dapi/data", + "id": 3986 + } + ] + } + }, + "55-trk-srv": { + "$": [ + { + "path": "js", + "id": 4537 + } + ] + }, + "setrowid": { + "cmt": { + "$": [ + { + "path": "V1/cmt.js", + "id": 3988 + } + ] + } + }, + "srv1010elan": { + "$": [ + { + "path": "track/capture.aspx", + "id": 3975 + }, + { + "path": "js/", + "id": 3974 + } + ] + }, + "strava": { + "$": [ + { + "path": "activities", + "id": 3994 + } + ] + }, + "ledradn": { + "$": [ + { + "path": "track/", + "id": 3777 + }, + { + "path": "js/", + "id": 3778 + } + ] + }, + "ordergroove": { + "static": { + "$": [ + { + "path": "4dcff40029ab11e5b9c4bc764e106cf4/main.js", + "id": 3998 + } + ] + } + }, + "dthvdr9": { + "$": [ + { + "path": "js/", + "id": 3759 + } + ] + }, + "gild": { + "api": { + "$": [ + { + "path": "v1", + "id": 3999 + } + ] + } + }, + "leadforensics": { + "secure": { + "$": [ + { + "path": "js/1392.js", + "id": 3619 + } + ] + }, + "tracker": { + "$": [ + { + "path": "js/13832.js", + "id": 3621 + }, + { + "path": "js/19497.js", + "id": 3620 + } + ] + } + }, + "getresponse": { + "app": { + "$": [ + { + "path": "javascripts/core/webforms/webform-out.js", + "id": 4002 + } + ] + } + }, + "cntr-di5": { + "$": [ + { + "path": "js/59949.js", + "id": 3481 + } + ] + }, + "treasuredata": { + "cdn": { + "$": [ + { + "path": "sdk", + "id": 4027 + } + ] + } + }, + "network-handle": { + "$": [ + { + "path": "js", + "id": 2838 + } + ] + }, + "azalead": { + "b2btagmgr": { + "$": [ + { + "path": "tag", + "id": 4005 + } + ] + } + }, + "letterbox-path": { + "$": [ + { + "path": "js", + "id": 2838 + } + ] + }, + "match": { + "media": { + "$": [ + { + "path": "cdn/trueffect/te_html_v2.min.js", + "id": 4007 + } + ] + } + }, + "lead-analytics-1000": { + "$": [ + { + "path": "js", + "id": 2838 + } + ] + }, + "jsrdn": { + "c": { + "$": [ + { + "path": "s/cs.js", + "id": 4009 + } + ] + }, + "s": { + "$": [ + { + "path": "s/1.js", + "id": 4342 + } + ] + } + }, + "iproute66": { + "$": [ + { + "path": "js", + "id": 2838 + } + ] + }, + "univision": { + "m": { + "$": [ + { + "path": "b/ss/univisionproductionnew/1/js-1.5.1", + "id": 4011 + } + ] + } + }, + "ipadd-path": { + "$": [ + { + "path": "js", + "id": 2838 + } + ] + }, + "usabilitytools": { + "mobile": { + "$": [ + { + "path": "recorder/tracker/tracker.js", + "id": 4018 + } + ] + } + }, + "forensics1000": { + "$": [ + { + "path": "js", + "id": 2838 + } + ] + }, + "withcubed": { + "data": { + "$": [ + { + "path": "r.js", + "id": 4019 + } + ] + } + }, + "cloudtracer101": { + "$": [ + { + "path": "js", + "id": 2838 + } + ] + }, + "parsely": { + "pixel": { + "srv": { + "$": [ + { + "path": "plogger", + "id": 4032 + } + ] + } + } + }, + "cloudpath82": { + "$": [ + { + "path": "js", + "id": 2838 + } + ] + }, + "addtocalendar": { + "$": [ + { + "path": "atc/1.5/atc.min.js", + "id": 4036 + } + ] + }, + "business-path-55": { + "$": [ + { + "path": "js", + "id": 2838 + } + ] + }, + "earnify": { + "$": [ + { + "path": "track", + "id": 4037 + } + ] + }, + "123-tracker": { + "$": [ + { + "path": "js", + "id": 2838 + } + ] + }, + "cleverpush": { + "$": [ + { + "path": "loader.js", + "id": 4038 + } + ], + "static": { + "$": [ + { + "path": "sdk/cleverpush.js", + "id": 4483 + } + ] + } + }, + "trail-web": { + "$": [ + { + "path": "js", + "id": 2690 + } + ] + }, + "startafire": { + "analytics": { + "$": [ + { + "path": "piwik.js", + "id": 4043 + } + ] + } + }, + "scan-trail": { + "$": [ + { + "path": "js", + "id": 2690 + } + ] + }, + "sambaads": { + "player": { + "$": [ + { + "path": "embed/player.js", + "id": 4047 + } + ] + } + }, + "trace-2000": { + "$": [ + { + "path": "js", + "id": 2690 + } + ] + }, + "divvit": { + "tag": { + "$": [ + { + "path": "tag.js", + "id": 4048 + } + ] + } + }, + "path-trail": { + "$": [ + { + "path": "js", + "id": 2689 + } + ] + }, + "afftrack": { + "pml": { + "$": [ + { + "path": "image", + "id": 4057 + } + ] + } + }, + "letterboxtrail": { + "$": [ + { + "path": "js", + "id": 2689 + } + ] + }, + "xing-share": { + "$": [ + { + "path": "plugins/follow.js", + "id": 4060 + }, + { + "path": "plugins/share.js", + "id": 4194 + } + ] + }, + "discover-path": { + "$": [ + { + "path": "js", + "id": 2689 + } + ] + }, + "smartlook": { + "rec": { + "$": [ + { + "path": "recorder.js", + "id": 4647 + }, + { + "path": "bundle.js", + "id": 4062 + } + ] + }, + "writer-us": { + "$": [ + { + "path": "rec/write", + "id": 4648 + } + ] + }, + "s2": { + "$": [ + { + "path": "rec/check", + "id": 4649 + } + ] + } + }, + "cloud-trail": { + "$": [ + { + "path": "js", + "id": 2689 + } + ] + }, + "getsmartlook": { + "rec": { + "$": [ + { + "path": "recorder.js", + "id": 4139 + } + ] + } + }, + "www-path": { + "$": [ + { + "path": "js", + "id": 2689 + } + ] + }, + "vzaar": { + "view": { + "$": [ + { + "path": "6277333/player", + "id": 4064 + } + ] + } + }, + "websiteexploration": { + "$": [ + { + "path": "js", + "id": 2689 + } + ] + }, + "sleeknote": { + "sleeknotestaticcontent": { + "$": [ + { + "path": "core.js", + "id": 4081 + } + ] + } + }, + "web-path": { + "$": [ + { + "path": "js", + "id": 2689 + } + ] + }, + "adnexio": { + "adserver": { + "$": [ + { + "path": "tracking/eventhandler", + "id": 4083 + } + ] + } + }, + "trailinvestigator": { + "$": [ + { + "path": "js", + "id": 2688 + } + ] + }, + "theplatform": { + "pdk": { + "$": [ + { + "path": "current/pdk/js/plugins/freewheel.js", + "id": 4086 + } + ] + } + }, + "trail-viewer": { + "$": [ + { + "path": "js", + "id": 2688 + } + ] + }, + "leadin": { + "js": { + "$": [ + { + "path": "js/v2", + "id": 4096 + } + ] + } + }, + "the-lead-tracker": { + "$": [ + { + "path": "js", + "id": 2688 + } + ] + }, + "winaffiliates": { + "tracking": { + "$": [ + { + "path": "redirect.aspx", + "id": 4097 + } + ] + } + }, + "path-follower": { + "$": [ + { + "path": "js", + "id": 2688 + } + ] + }, + "letvcdn": { + "js": { + "$": [ + { + "path": "lc05_js/201607/14/18/30/require-jquery.js", + "id": 4099 + } + ] + } + }, + "lead-watcher": { + "$": [ + { + "path": "js", + "id": 2688 + } + ] + }, + "rackcdn": { + "$": [ + { + "path": "mongoose.fp.js", + "id": 4100 + } + ], + "cf2": { + "ssl": { + "e29a10dd78183533d2e2-a09c7f2cb25d8be24f51f8d5151d6a4f": { + "$": [ + { + "path": "llscripts//launcher.js", + "id": 4378 + } + ] + } + } + } + }, + "lead-123": { + "$": [ + { + "path": "js", + "id": 2688 + } + ] + }, + "revtrax": { + "images": { + "$": [ + { + "path": "RevTrax/js/fp/fp.min.jsp", + "id": 4101 + } + ] + } + }, + "explore-123": { + "$": [ + { + "path": "js", + "id": 2688 + } + ] + }, + "playwire": { + "cdn": { + "$": [ + { + "path": "bolt/js/plow-2.6.1.js", + "id": 4105 + } + ] + } + }, + "cloud-journey": { + "$": [ + { + "path": "js", + "id": 2688 + } + ] + }, + "vilynx": { + "static": { + "$": [ + { + "path": "plugins/cbs-vilynx.js", + "id": 4106 + } + ] + } + }, + "cloud-exploration": { + "$": [ + { + "path": "js", + "id": 2688 + } + ] + }, + "europacash": { + "clk": { + "$": [ + { + "path": "click.php", + "id": 4114 + } + ] + }, + "medias": { + "$": [ + { + "path": "adv/", + "id": 4124 + } + ] + } + }, + "click-to-trace": { + "$": [ + { + "path": "js", + "id": 2688 + } + ] + }, + "embracetocontext": { + "auping": { + "$": [ + { + "path": "tracker/callback", + "id": 4118 + } + ] + } + }, + "epicgameads": { + "$": [ + { + "path": "ads/", + "id": 1833 + } + ] + }, + "notifyfox": { + "$": [ + { + "path": "loader.js", + "id": 4128 + } + ] + }, + "nyt": { + "int": { + "$": [ + { + "path": "newsgraphics", + "id": 4030 + } + ] + }, + "a1": { + "$": [ + { + "path": "analytics/tagx-simple.min.js", + "id": 3535 + } + ] + } + }, + "salesviewer": { + "$": [ + { + "path": "tracker", + "id": 4141 + } + ] + }, + "zergnet": { + "$": [ + { + "path": "zerg-inf-multi.js", + "id": 3952 + }, + { + "path": "zerg-manual.js", + "id": 4053 + }, + { + "path": "zerg.js", + "id": 1813 + } + ], + "www": { + "$": [ + { + "path": "zerg-inf.js", + "id": 4543 + } + ] + } + }, + "fitanalytics": { + "$": [ + { + "path": "widget.js", + "id": 4143 + } + ] + }, + "gigyahosting1": { + "analytics": { + "$": [ + { + "path": "gigya-analytics.js", + "id": 1758 + } + ] + } + }, + "qeado": { + "collect": { + "$": [ + { + "path": "collect.js", + "id": 4150 + } + ] + } + }, + "heroku": { + "exceptional-js": { + "$": [ + { + "path": "exceptional.js", + "id": 1753 + } + ] + } + }, + "ifengimg": { + "y3": { + "$": [ + { + "path": "1d124ac5e89463af/2015/0203/iframe_load_20150203_v4.js", + "id": 4154 + } + ] + } + }, + "reddit": { + "$": [ + { + "path": "static/spreddit", + "id": 1750 + }, + { + "path": "static/button", + "id": 1750 + }, + { + "path": "buttonlite.js", + "id": 1750 + }, + { + "path": ".embed", + "id": 1750 + } + ] + }, + "blueserving": { + "$": [ + { + "path": "js/show_ads_blueseed.js", + "id": 4155 + } + ] + }, + "feedbackify": { + "$": [ + { + "path": "f.js", + "id": 1749 + } + ] + }, + "secretrune": { + "cdn": { + "$": [ + { + "path": "rune.min.js", + "id": 4156 + } + ] + } + }, + "freshdesk": { + "$": [ + { + "path": "widget/freshwidget.js", + "id": 1748 + } + ], + "chat": { + "$": [ + { + "path": "cookietest", + "id": 4001 + } + ] + } + }, + "adoric": { + "$": [ + { + "path": "adoric.js", + "id": 4169 + } + ] + }, + "bugherd": { + "$": [ + { + "path": "sidebar", + "id": 1739 + }, + { + "path": "bugherd", + "id": 1739 + } + ] + }, + "pointificsecure": { + "$": [ + { + "path": "p.ashx", + "id": 4170 + } + ] + }, + "cqcounter": { + "$": [ + { + "path": "cgi-bin/c", + "id": 1719 + } + ] + }, + "dealer": { + "cc2": { + "$": [ + { + "path": "off-platform/pixall.js", + "id": 4177 + } + ] + }, + "static": { + "$": [ + { + "path": "dist/v9/widgets/tracking/omniture-fd/v1/js/FD-DC-S-Code.min.js", + "id": 4598 + }, + { + "path": "dist/v9/widgets/tracking/omniture-fd/v1/js/widget.min.js", + "id": 4479 + }, + { + "path": "dist/v9/media/js/ddc/v1/dist/ddc.jquery.min.js", + "id": 4502 + } + ] + } + }, + "soundcloud": { + "w": { + "$": [ + { + "path": "player", + "id": 1710 + } + ] + } + }, + "s2d6": { + "$": [ + { + "path": "js/globalpixel.js", + "id": 4189 + } + ] + }, + "revdepo": { + "tags3": { + "cdn1": { + "$": [ + { + "path": "banners/script/bnr-wrp_1.0.20.js", + "id": 3490 + } + ] + } + }, + "srv": { + "cdn1": { + "$": [ + { + "path": "script/", + "id": 3491 + } + ] + } + }, + "tags1": { + "cdn1": { + "$": [ + { + "path": "banners/bounce/bounce-tag_1.0.22.js", + "id": 3493 + }, + { + "path": "banners/script/bnrcore_1.0.25.js", + "id": 3495 + }, + { + "path": "banners/script/bnr-tag_1.0.9.js", + "id": 3492 + } + ] + } + } + }, + "tunein": { + "lib": { + "$": [ + { + "path": "embed/player.js", + "id": 4193 + } + ] + } + }, + "iubenda": { + "$": [ + { + "path": "iubenda.js", + "id": 1704 + } + ] + }, + "sabavision": { + "camp": { + "$": [ + { + "path": "showcamp.php", + "id": 4197 + } + ], + "zoomg": { + "$": [ + { + "path": "advert", + "id": 4293 + } + ] + } + }, + "$": [ + { + "path": "resource.php", + "id": 4680 + } + ], + "api": { + "$": [ + { + "path": "pox/app.5e9cc9244c9f0b97d5e8.bundle.js", + "id": 4872 + } + ] + } + }, + "foursquare": { + "platform": { + "$": [ + { + "path": "js/widgets.js", + "id": 1675 + } + ] + } + }, + "vimeocdn": { + "extend": { + "$": [ + { + "path": "ga/61114930.js", + "id": 4198 + } + ] + } + }, + "zippyshare": { + "api": { + "$": [ + { + "path": "api/embed", + "id": 1673 + } + ] + } + }, + "adtrue": { + "cdn": { + "$": [ + { + "path": "rtb/async.js", + "id": 4204 + } + ] + } + }, + "adsensecamp": { + "$": [ + { + "path": "show/", + "id": 1668 + } + ] + }, + "jeuxvideo": { + "autopromo": { + "$": [ + { + "path": "clickcmd", + "id": 4214 + } + ] + } + }, + "rp-api": { + "$": [ + { + "path": "rjs/repost", + "id": 1664 + } + ] + }, + "pinimg": { + "s": { + "$": [ + { + "path": "ct/core.js", + "id": 4224 + } + ] + } + }, + "webserviceaward": { + "ssl": { + "$": [ + { + "path": "wsc/", + "id": 1656 + } + ] + } + }, + "mattel": { + "static": { + "$": [ + { + "path": "videoplayer/src/js/v4/MattelVideoPlayer.js", + "id": 4229 + } + ] + } + }, + "moonraymarketing": { + "$": [ + { + "path": "tracking.js", + "id": 1607 + } + ] + }, + "thewhizmarketing": { + "lpstatic": { + "$": [ + { + "path": "scripts/lpask.js", + "id": 4454 + } + ] + } + }, + "sail-horizon": { + "ak": { + "$": [ + { + "path": "onsite/personalize.v0.0.4.min.js", + "id": 4538 + } + ] + } + }, + "springserve": { + "dmp": { + "$": [ + { + "path": "px", + "id": 4233 + } + ] + }, + "vid": { + "$": [ + { + "path": "vast", + "id": 4695 + } + ] + } + }, + "infusionsoft": { + "$": [ + { + "path": "app", + "id": 1595 + } + ] + }, + "zdirect": { + "$": [ + { + "path": "scripts/newApp.js", + "id": 4235 + } + ] + }, + "bazaarvoice": { + "curations": { + "static": { + "$": [ + { + "path": "gallery/skii/prod/loader.js", + "id": 4353 + } + ] + } + } + }, + "trackduck": { + "cdn": { + "$": [ + { + "path": "toolbar/prod/td.js", + "id": 4236 + } + ] + } + }, + "siteimprove": { + "$": [ + { + "path": "js/", + "id": 1570 + } + ] + }, + "boxxspring": { + "gadgets": { + "$": [ + { + "path": "gadgets-boxxspring-9.0.12.js", + "id": 4237 + }, + { + "path": "gadgets", + "id": 4313 + } + ] + } + }, + "icerocket": { + "tracker": { + "$": [ + { + "path": "services/collector.js", + "id": 1554 + } + ] + } + }, + "mochapp": { + "chat": { + "$": [ + { + "path": "public/js/chat.js", + "id": 4239 + } + ] + } + }, + "taboola": { + "cdn": { + "$": [ + { + "path": "libtrc/labx-iflscience/loader.js", + "id": 3394 + } + ] + } + }, + "flocktory": { + "api": { + "$": [ + { + "path": "v2/loader.js", + "id": 4243 + } + ] + } + }, + "userreport": { + "cdn": { + "$": [ + { + "path": "analytics-tags.js", + "id": 3875 + }, + { + "path": "systemsettings.js", + "id": 3874 + }, + { + "path": "userreport.js", + "id": 3872 + } + ] + }, + "sak": { + "$": [ + { + "path": "amediadk/launcher.js", + "id": 4090 + }, + { + "path": "tv2/launcher.js", + "id": 3873 + } + ] + }, + "tag": { + "$": [ + { + "path": "tag.html", + "id": 4809 + }, + { + "path": "ut.html", + "id": 3876 + } + ] + }, + "audex": { + "$": [ + { + "path": "iframe/turn/frame.html", + "id": 4808 + } + ] + } + }, + "mgid": { + "ai-gb": { + "$": [ + { + "path": "u5495144/8502/3", + "id": 4244 + } + ] + }, + "cm": { + "$": [ + { + "path": "m", + "id": 4779 + } + ] + } + }, + "maxmind": { + "j": { + "$": [ + { + "path": "app/country.js", + "id": 1548 + }, + { + "path": "app/geoip.js", + "id": 1548 + } + ] + } + }, + "rekmob": { + "adimg": { + "$": [ + { + "path": "js/rekmob.js", + "id": 4248 + } + ] + } + }, + "crowdignite": { + "widget": { + "$": [ + { + "path": "widgets", + "id": 1547 + } + ] + } + }, + "klaviyo": { + "a": { + "$": [ + { + "path": "media/js/analytics/analytics.js", + "id": 4249 + } + ] + } + }, + "civicscience": { + "$": [ + { + "path": "widget/jspoll", + "id": 1543 + } + ] + }, + "kyto": { + "cdn": { + "$": [ + { + "path": "kytrack.js", + "id": 4251 + } + ] + } + }, + "turnsocial": { + "$": [ + { + "path": "bar/", + "id": 1532 + } + ] + }, + "wibbitz": { + "cdn4": { + "$": [ + { + "path": "national_review/embed.js", + "id": 4252 + }, + { + "path": "ancient_code/embed.js", + "id": 4394 + }, + { + "path": "cnetfrance/embed.js", + "id": 4732 + }, + { + "path": "all_night/embed.js", + "id": 4389 + }, + { + "path": "vagalume/embed.js", + "id": 4686 + } + ] + }, + "api": { + "$": [ + { + "path": "clips/", + "id": 4687 + } + ] + } + }, + "tribalfusion": { + "$": [ + { + "path": "media/common/adchoice", + "id": 1530 + } + ] + }, + "snidigital": { + "video": { + "player": { + "$": [ + { + "path": "vpc/1/6/js/sni-video.min.js", + "id": 4254 + } + ] + } + }, + "analytics": { + "$": [ + { + "path": "scripps-core", + "id": 4694 + } + ] + } + }, + "gittigidiyor": { + "aff3": { + "$": [ + { + "path": "affiliate_front.js", + "id": 1497 + } + ] + } + }, + "ultimedia": { + "secure": { + "$": [ + { + "path": "js/common/smart.js", + "id": 4258 + } + ] + }, + "static": { + "$": [ + { + "path": "jw/dtkplayer.js", + "id": 4385 + } + ] + } + }, + "linksalpha": { + "$": [ + { + "path": "social", + "id": 1493 + } + ] + }, + "stackadapt": { + "srv": { + "tags": { + "$": [ + { + "path": "events.js", + "id": 4260 + } + ] + } + } + }, + "swoop": { + "$": [ + { + "path": "js/spxw.js", + "id": 1492 + } + ] + }, + "insticator": { + "$": [ + { + "path": "vassets/javascripts/service/insticator-hb-v12.js", + "id": 4263 + } + ], + "embed": { + "$": [ + { + "path": "advertisements/getheadertagforsite", + "id": 4319 + } + ] + } + }, + "shopximity": { + "$": [ + { + "path": "js/spxw.js", + "id": 1492 + } + ] + }, + "smartsuppchat": { + "$": [ + { + "path": "loader.js", + "id": 4264 + } + ] + }, + "flattr": { + "api": { + "$": [ + { + "path": "button", + "id": 2826 + } + ] + } + }, + "getfeedback": { + "cdn": { + "websites": { + "$": [ + { + "path": "embed/J1i5T1r1L6/gf.js", + "id": 4265 + } + ] + } + } + }, + "cookieq": { + "$": [ + { + "path": "cookieq", + "id": 1471 + }, + { + "path": "scripts", + "id": 1471 + } + ] + }, + "marketlinc": { + "malwarebytes": { + "$": [ + { + "path": "public/js/snippet.js", + "id": 4266 + } + ] + } + }, + "beaconads": { + "$": [ + { + "path": "ac/", + "id": 1466 + } + ] + }, + "drift": { + "api": { + "event": { + "$": [ + { + "path": "track", + "id": 4267 + } + ] + }, + "customer": { + "$": [ + { + "path": "location", + "id": 4962 + } + ] + } + } + }, + "responsetap": { + "metrics": { + "$": [ + { + "path": "static/scripts/rtaptrack.min.js", + "id": 3926 + } + ] + }, + "static-ssl": { + "$": [ + { + "path": "static/scripts/rTapTrack.min.js", + "id": 4117 + } + ] + } + }, + "pivol": { + "server19": { + "$": [ + { + "path": "count.asp", + "id": 4268 + } + ] + } + }, + "bitcoinplus": { + "$": [ + { + "path": "js/miner.js", + "id": 1449 + } + ] + }, + "8digits": { + "hit": { + "$": [ + { + "path": "js", + "id": 4270 + } + ] + } + }, + "belstat": { + "$": [ + { + "path": "regstat", + "id": 1447 + } + ] + }, + "markafoni": { + "$": [ + { + "path": "on/demandware.store/Sites-Markafoni-Site/tr_TR/__Analytics-Tracking", + "id": 4271 + } + ] + }, + "dotomi": { + "$": [ + { + "path": "adinfo/adinfo.php", + "id": 1438 + } + ] + }, + "engageya": { + "widget": { + "$": [ + { + "path": "engageya_loader.js", + "id": 4294 + } + ] + } + }, + "thinglink": { + "$": [ + { + "path": "jse/embed.js", + "id": 1435 + } + ] + }, + "ktxtr": { + "s": { + "$": [ + { + "path": "kx.js", + "id": 4299 + } + ] + } + }, + "quantserve": { + "$": [ + { + "path": "adchoices/", + "id": 1428 + } + ] + }, + "trafficfuel": { + "my": { + "$": [ + { + "path": "powerpixel.php", + "id": 4300 + } + ] + } + }, + "pinterest": { + "assets": { + "$": [ + { + "path": "js/pinit.js", + "id": 3447 + }, + { + "path": "js/pinit.js", + "id": 1417 + } + ] + }, + "$": [ + { + "path": "images/about/buttons/pinterest-button.png", + "id": 2360 + }, + { + "path": "images/follow-on-pinterest-button.png", + "id": 2360 + }, + { + "path": "images/pidgets/pin_it_button.png", + "id": 2360 + }, + { + "path": "images/pinterest-button.png", + "id": 2360 + }, + { + "path": "images/pidgets/pinit", + "id": 2360 + }, + { + "path": "images/pinext.png", + "id": 2360 + } + ] + }, + "quantummetric": { + "cdn": { + "$": [ + { + "path": "qscripts/", + "id": 4303 + } + ] + } + }, + "adhood": { + "$": [ + { + "path": "adserver/ad", + "id": 1394 + } + ] + }, + "101xp": { + "promo": { + "$": [ + { + "path": "loa2_2", + "id": 4305 + } + ] + } + }, + "bufferapp": { + "$": [ + { + "path": "js/button", + "id": 1379 + }, + { + "path": "button", + "id": 1379 + } + ] + }, + "whatsbroadcast": { + "widget": { + "$": [ + { + "path": "widget_more", + "id": 4306 + } + ] + } + }, + "sodoit": { + "trk": { + "$": [ + { + "path": "rts", + "id": 2800 + } + ] + } + }, + "conversio": { + "media": { + "$": [ + { + "path": "scripts/shopify.js", + "id": 4314 + } + ] + } + }, + "attracta": { + "cdn": { + "$": [ + { + "path": "badge/", + "id": 1364 + } + ] + } + }, + "trafficstars": { + "cdn": { + "$": [ + { + "path": "sdk/v1/bi.js", + "id": 4316 + } + ] + } + }, + "ipnoid": { + "$": [ + { + "path": "tracker/", + "id": 1363 + } + ] + }, + "retargetapp": { + "shopify": { + "$": [ + { + "path": "pixel.js", + "id": 4317 + } + ] + } + }, + "adzly": { + "$": [ + { + "path": "adserve", + "id": 1350 + } + ] + }, + "livelook": { + "$": [ + { + "path": "webinterfaces/storage/rely/ll_storage_chrome.html", + "id": 4321 + } + ] + }, + "apnewsregistry": { + "analytics": { + "$": [ + { + "path": "analytics/", + "id": 1341 + } + ] + } + }, + "foxpush": { + "$": [ + { + "path": "publisher/api", + "id": 4668 + } + ] + }, + "list-manage": { + "$": [ + { + "path": "track/", + "id": 1337 + } + ] + }, + "quantcount": { + "rules": { + "$": [ + { + "path": "rules", + "id": 4331 + } + ] + } + }, + "communicatorcorp": { + "$": [ + { + "path": "public/scripts/conversiontracking.js", + "id": 1336 + } + ] + }, + "y-track": { + "aws": { + "prod-js": { + "$": [ + { + "path": "yt-000015-1/v5/tracker.min.js", + "id": 4341 + } + ] + } + } + }, + "fnac": { + "eultech": { + "$": [ + { + "path": "ea.js", + "id": 4632 + } + ] + } + }, + "gettamboo": { + "js": { + "$": [ + { + "path": "agent.js.min", + "id": 4347 + } + ] + } + }, + "mb01": { + "$": [ + { + "path": "getimage.asp", + "id": 1303 + } + ] + }, + "o333o": { + "a": { + "$": [ + { + "path": "api/spots/2870", + "id": 4349 + } + ] + } + }, + "observerapp": { + "$": [ + { + "path": "record", + "id": 1293 + } + ] + }, + "tagcade": { + "tags": { + "$": [ + { + "path": "2.0/pub/87/tagcade.js", + "id": 4350 + } + ] + } + }, + "rlets": { + "cdn": { + "$": [ + { + "path": "capture_static/mms/mms.js", + "id": 3381 + } + ] + } + }, + "adsensecustomsearchads": { + "$": [ + { + "path": "adsense/search/async-ads.js", + "id": 4351 + } + ] + }, + "zapunited": { + "$": [ + { + "path": "w/", + "id": 1290 + } + ] + }, + "tpcserve": { + "s": { + "$": [ + { + "path": "2/854783/analytics.js", + "id": 4352 + } + ] + } + }, + "zaparena": { + "$": [ + { + "path": "w/", + "id": 1290 + } + ] + }, + "youku": { + "player": { + "$": [ + { + "path": "embed/", + "id": 4354 + } + ] + } + }, + "scanalert": { + "images": { + "$": [ + { + "path": "meter/", + "id": 1289 + } + ] + } + }, + "fospha": { + "$": [ + { + "path": "webchat.js", + "id": 4371 + } + ] + }, + "hit-parade": { + "$": [ + { + "path": "log", + "id": 1280 + } + ] + }, + "giosg": { + "service": { + "$": [ + { + "path": "static/giosgclient.app.build", + "id": 4387 + }, + { + "path": "static/giosgclient", + "id": 4372 + } + ] + } + }, + "de": { + "research": { + "$": [ + { + "path": "bb", + "id": 1183 + } + ] + } + }, + "adbrn": { + "sp": { + "$": [ + { + "path": "match", + "id": 4375 + } + ] + } + }, + "stumbleupon": { + "$": [ + { + "path": "badge/embed/", + "id": 1400 + }, + { + "path": "hostedbadge", + "id": 1170 + } + ], + "platform": { + "$": [ + { + "path": "1/widgets.js", + "id": 1432 + } + ] + } + }, + "azadify": { + "$": [ + { + "path": "engage/external/bounce_win_2.js", + "id": 4388 + } + ] + }, + "stumble-upon": { + "$": [ + { + "path": "js/widgets.js", + "id": 1169 + } + ] + }, + "contribusourcesyndication": { + "s2": { + "$": [ + { + "path": "trending.js.php", + "id": 4405 + } + ] + } + }, + "linkedin": { + "api": { + "$": [ + { + "path": "v1/people/~/shares", + "id": 4416 + } + ] + }, + "$": [ + { + "path": "csp/", + "id": 2462 + } + ], + "ads": { + "$": [ + { + "path": "collect", + "id": 4173 + } + ] + } + }, + "jetlore": { + "api": { + "$": [ + { + "path": "track", + "id": 4413 + } + ] + } + }, + "s-msn": { + "stc": { + "col": { + "$": [ + { + "path": "br/sc/i/ff/adchoices", + "id": 1156 + } + ] + } + } + }, + "sociaplus": { + "api": { + "$": [ + { + "path": "js/squery.min.js", + "id": 4417 + } + ] + } + }, + "vk": { + "$": [ + { + "path": "widget_community.php", + "id": 3413 + }, + { + "path": "widget_comments.php", + "id": 2947 + }, + { + "path": "widget_groups.php", + "id": 2369 + }, + { + "path": "js/api/openapi.js", + "id": 1844 + }, + { + "path": "widget_like.php", + "id": 3174 + }, + { + "path": "js/api/share.js", + "id": 1844 + }, + { + "path": "rtrg", + "id": 3833 + } + ] + }, + "useinsider": { + "api": { + "$": [ + { + "path": "js/insiderexternal.min.js", + "id": 5066 + } + ] + } + }, + "userapi": { + "$": [ + { + "path": "js/api/", + "id": 1132 + } + ] + }, + "binotel": { + "widgets": { + "$": [ + { + "path": "calltracking/widgets", + "id": 4419 + } + ] + } + }, + "entireweb": { + "sa": { + "$": [ + { + "path": "sense.js", + "id": 1131 + } + ] + } + }, + "thelivechatsoftware": { + "$": [ + { + "path": "Dashboard/cwgen/scripts/la_script.js", + "id": 4420 + } + ] + }, + "pricegrabber": { + "$": [ + { + "path": "conversion.php", + "id": 1115 + } + ] + }, + "getsitecontrol": { + "widgets": { + "$": [ + { + "path": "70592/script.js", + "id": 4421 + } + ] + } + }, + "fastwebcounter": { + "$": [ + { + "path": "secure.php", + "id": 2783 + } + ] + }, + "autopilothq": { + "api": { + "$": [ + { + "path": "anywhere/", + "id": 4423 + } + ] + } + }, + "fastonlineusers": { + "$": [ + { + "path": "on", + "id": 2783 + } + ] + }, + "ladesk": { + "$": [ + { + "path": "scripts/track.js", + "id": 4424 + } + ] + }, + "newrelic": { + "pm": { + "$": [ + { + "path": "javascripts/remote_forgery_protection.js", + "id": 4284 + } + ] + }, + "js-agent": { + "$": [ + { + "path": "nr-1026.min.js", + "id": 4485 + }, + { + "path": "nr", + "id": 4743 + } + ] + } + }, + "sprinklr": { + "pixel": { + "$": [ + { + "path": "btp", + "id": 4425 + } + ] + } + }, + "polldaddy": { + "static": { + "$": [ + { + "path": "p", + "id": 993 + } + ] + }, + "polls": { + "$": [ + { + "path": "vote-js.php", + "id": 3839 + } + ] + } + }, + "nzaza": { + "$": [ + { + "path": "za.js", + "id": 4338 + } + ] + }, + "sitebro": { + "$": [ + { + "path": "track", + "id": 992 + } + ] + }, + "nextuser": { + "track": { + "$": [ + { + "path": "nu.js", + "id": 4426 + } + ] + } + }, + "madisonlogic": { + "$": [ + { + "path": "jsc", + "id": 1755 + } + ] + }, + "brightfunnel": { + "munchkin": { + "$": [ + { + "path": "js/build/bf-munchkin.min.js", + "id": 4428 + } + ] + } + }, + "iasds01": { + "sc": { + "$": [ + { + "path": "dtc", + "id": 4822 + } + ] + } + }, + "mindbreeze": { + "apps": { + "$": [ + { + "path": "inapp/futurezone.at/api/js/inapp.js", + "id": 4429 + } + ] + } + }, + "nextag": { + "imgsrv": { + "$": [ + { + "path": "imagefiles/includes/roitrack.js", + "id": 961 + } + ] + } + }, + "madsone": { + "eu2": { + "$": [ + { + "path": "mjs/1.2.3/MRAID_Interstitial_Base.js", + "id": 4438 + }, + { + "path": "js/tags.js", + "id": 4437 + } + ] + } + }, + "webgozar": { + "$": [ + { + "path": "counter", + "id": 945 + } + ] + }, + "mcloudglobal": { + "mcabi": { + "$": [ + { + "path": "serve/knc_lib.js", + "id": 4445 + } + ] + } + }, + "optimizely": { + "cdn": { + "$": [ + { + "path": "client_storage/", + "id": 4824 + }, + { + "path": "js/", + "id": 943 + } + ] + }, + "cdn3": { + "$": [ + { + "path": "js/geo2.js", + "id": 4580 + } + ] + }, + "log": { + "$": [ + { + "path": "event", + "id": 4821 + } + ] + }, + "logx": { + "$": [ + { + "path": "log/event", + "id": 4823 + } + ] + }, + "client": { + "errors": { + "$": [ + { + "path": "log", + "id": 4831 + } + ] + } + } + }, + "bam-x": { + "static": { + "$": [ + { + "path": "tags", + "id": 4464 + } + ] + } + }, + "adtgs": { + "$": [ + { + "path": "layer", + "id": 2754 + }, + { + "path": "pop", + "id": 2754 + } + ] + }, + "ninjaoutreach": { + "app": { + "$": [ + { + "path": "openemail", + "id": 4470 + } + ] + } + }, + "hurra": { + "$": [ + { + "path": "ostracker.js", + "id": 925 + } + ] + }, + "freeskreen": { + "sb": { + "$": [ + { + "path": "publisher/script.js", + "id": 4471 + } + ] + }, + "static": { + "$": [ + { + "path": "publisher/2233/freeskreen.min.js", + "id": 4472 + } + ] + } + }, + "betrad": { + "c": { + "$": [ + { + "path": "sitenotice/tagmanager/ghostery-tag-manager.js", + "id": 4439 + }, + { + "path": "geo/h1.js", + "id": 4307 + }, + { + "path": "icon/c", + "id": 4344 + }, + { + "path": "icon/b", + "id": 4311 + }, + { + "path": "icong", + "id": 4345 + }, + { + "path": "geo", + "id": 4346 + }, + { + "path": "pub", + "id": 904 + } + ] + } + }, + "bauernative": { + "cdn": { + "$": [ + { + "path": "nativendo.js", + "id": 4480 + } + ] + } + }, + "tqlkg": { + "$": [ + { + "path": "image", + "id": 888 + } + ] + }, + "adstanding": { + "code": { + "$": [ + { + "path": "js/", + "id": 4492 + } + ] + } + }, + "contaxe": { + "$": [ + { + "path": "go", + "id": 873 + } + ] + }, + "emarketeer": { + "app": { + "$": [ + { + "path": "tracker/ping.js", + "id": 4493 + } + ] + } + }, + "veruta": { + "$": [ + { + "path": "scripts/trackmerchant.js", + "id": 909 + } + ] + }, + "hucksterbot": { + "files": { + "$": [ + { + "path": "app/huckster.min.js", + "id": 4510 + } + ] + } + }, + "weborama": { + "bigsea": { + "dx": { + "$": [ + { + "path": "collect", + "id": 4468 + } + ] + } + } + }, + "rummycircle": { + "click": { + "$": [ + { + "path": "trackdata", + "id": 4511 + } + ] + } + }, + "ctnsnet": { + "cm": { + "$": [ + { + "path": "int/cm", + "id": 4496 + } + ] + } + }, + "themoneytizer": { + "ads": { + "$": [ + { + "path": "s/gen.js", + "id": 4513 + } + ] + } + }, + "traveladvertising": { + "$": [ + { + "path": "live/", + "id": 831 + } + ] + }, + "multiscreensite": { + "dd-cdn": { + "$": [ + { + "path": "jscache/ga.js", + "id": 4516 + } + ] + } + }, + "beencounter": { + "$": [ + { + "path": "b.js", + "id": 828 + } + ] + }, + "apester": { + "display": { + "$": [ + { + "path": "injected-units", + "id": 4518 + } + ] + }, + "static": { + "$": [ + { + "path": "js/sdk", + "id": 4984 + } + ] + } + }, + "brilig": { + "p": { + "$": [ + { + "path": "contact/bct", + "id": 821 + } + ] + } + }, + "ciwebgroup": { + "ciweb": { + "$": [ + { + "path": "assets/livesite.js", + "id": 4521 + } + ] + } + }, + "truste": { + "choices": { + "$": [ + { + "path": "ca", + "id": 816 + } + ] + } + }, + "vcita": { + "impress": { + "$": [ + { + "path": "imp/", + "id": 4522 + } + ] + }, + "$": [ + { + "path": "widgets/active_engage/configuration", + "id": 4523 + } + ] + }, + "adinterax": { + "mi": { + "$": [ + { + "path": "customer", + "id": 929 + }, + { + "path": "js", + "id": 929 + } + ] + } + }, + "signifyd": { + "cdn-scripts": { + "$": [ + { + "path": "shopify/script-tag.js", + "id": 4525 + } + ] + } + }, + "spotxchange": { + "$": [ + { + "path": "track", + "id": 986 + } + ] + }, + "h-cdn": { + "player": { + "$": [ + { + "path": "loader.js", + "id": 4527 + } + ] + } + }, + "vindicosuite": { + "$": [ + { + "path": "creative", + "id": 758 + }, + { + "path": "tracking", + "id": 758 + }, + { + "path": "feeds", + "id": 758 + }, + { + "path": "track", + "id": 758 + }, + { + "path": "serve", + "id": 758 + }, + { + "path": "imp", + "id": 758 + } + ], + "mpp": { + "$": [ + { + "path": "sync", + "id": 4811 + }, + { + "path": "mpp/", + "id": 4259 + } + ] + } + }, + "gmdelivery": { + "a": { + "$": [ + { + "path": "script/main.js", + "id": 4529 + } + ] + } + }, + "yumenetworks": { + "$": [ + { + "path": "dynamic", + "id": 755 + } + ] + }, + "c1exchange": { + "cms": { + "$": [ + { + "path": "cookie/match/adv/adx/seed", + "id": 4532 + } + ] + }, + "px": { + "$": [ + { + "path": "pubpixel/", + "id": 4533 + } + ] + }, + "sync": { + "$": [ + { + "path": "sync/user", + "id": 4802 + } + ] + } + }, + "snapengage": { + "$": [ + { + "path": "chatjs/servicegetproactivegeodata", + "id": 3498 + }, + { + "path": "chatjs/ServiceGetConfig", + "id": 3499 + }, + { + "path": "snapengage-", + "id": 1263 + }, + { + "path": "statusimage", + "id": 1263 + }, + { + "path": "snapabug.js", + "id": 1263 + } + ] + }, + "zmags": { + "c": { + "$": [ + { + "path": "a/p/p.js", + "id": 4663 + } + ] + } + }, + "ero-advertising": { + "ads": { + "$": [ + { + "path": "click.php", + "id": 4348 + } + ] + } + }, + "travelaudience": { + "ads": { + "$": [ + { + "path": "js/ta.js", + "id": 4535 + } + ] + } + }, + "trumba": { + "$": [ + { + "path": "scripts/spuds.js", + "id": 745 + } + ] + }, + "exiber": { + "$": [ + { + "path": "pixel/pixeltag/index.js", + "id": 4539 + } + ] + }, + "yieldoptimizer": { + "cs": { + "$": [ + { + "path": "cs.yieldoptimizer.com", + "id": 3526 + } + ] + } + }, + "websiteseguro": { + "exiber": { + "$": [ + { + "path": "pixel/pixeltag/index.js", + "id": 4540 + } + ] + } + }, + "tremormedia": { + "objects": { + "$": [ + { + "path": "net/js/ads.js", + "id": 4384 + }, + { + "path": "embed/js", + "id": 1090 + } + ] + } + }, + "segmanta": { + "pge": { + "$": [ + { + "path": "widget_embed_js/widgetEmbed-v7.min.js", + "id": 4544 + } + ] + } + }, + "visitstreamer": { + "$": [ + { + "path": "vs.js", + "id": 716 + } + ] + }, + "gubagootracking": { + "$": [ + { + "path": "toolbars/", + "id": 4545 + } + ] + }, + "uptrends": { + "$": [ + { + "path": "images/uptrends.gif", + "id": 715 + }, + { + "path": "aspx/uptime.aspx", + "id": 715 + } + ] + }, + "reflektion": { + "product": { + "$": [ + { + "path": "rfk/js/11189-219902341/init.js", + "id": 4551 + } + ] + } + }, + "ensighten": { + "nexus": { + "$": [ + { + "path": "staples2/Bootstrap.js", + "id": 714 + } + ] + } + }, + "adikteev": { + "cdn": { + "$": [ + { + "path": "lib/v3/aksdk.moment", + "id": 4563 + } + ] + } + }, + "thecounter": { + "$": [ + { + "path": "id", + "id": 2796 + } + ] + }, + "adclerks": { + "swift": { + "$": [ + { + "path": "www/delivery/asyncjs.php", + "id": 4566 + } + ] + } + }, + "gtopstats": { + "fx": { + "$": [ + { + "path": "js/gtop.js", + "id": 701 + } + ] + } + }, + "vidgyor": { + "content": { + "$": [ + { + "path": "live/videojs", + "id": 4568 + } + ] + } + }, + "voice2page": { + "$": [ + { + "path": "naa_1x1.js", + "id": 689 + } + ] + }, + "googlecommerce": { + "$": [ + { + "path": "trustedstores/gtmp_compiled.js", + "id": 4570 + } + ] + }, + "atgsvcs": { + "$": [ + { + "path": "js/atgsvcs.js", + "id": 679 + } + ] + }, + "twiago": { + "a": { + "$": [ + { + "path": "rtb/getusermatch.php", + "id": 4739 + }, + { + "path": "adframe", + "id": 4576 + } + ] + } + }, + "estara": { + "as00": { + "$": [ + { + "path": "as/initiatecall2", + "id": 678 + }, + { + "path": "as/commonlink", + "id": 678 + }, + { + "path": "webcare", + "id": 678 + }, + { + "path": "fs/lr", + "id": 678 + } + ] + } + }, + "narando": { + "$": [ + { + "path": "assets/narando.player.js", + "id": 4923 + }, + { + "path": "s", + "id": 4577 + } + ] + }, + "gigya": { + "cdn": { + "$": [ + { + "path": "js/gigya.js", + "id": 3889 + }, + { + "path": "js", + "id": 4509 + } + ] + }, + "$": [ + { + "path": "js/gigyagaintegration.js", + "id": 1758 + }, + { + "path": "js/socialize.js", + "id": 1091 + } + ], + "cdns": { + "$": [ + { + "path": "js/gigya.js", + "id": 3802 + } + ] + } + }, + "mixpo": { + "swf": { + "$": [ + { + "path": "js/loader.js", + "id": 4640 + } + ] + } + }, + "brightcove": { + "admin": { + "$": [ + { + "path": "js", + "id": 2778 + } + ] + }, + "sadmin": { + "$": [ + { + "path": "js/brightcoveexperiences.js", + "id": 4164 + } + ] + } + }, + "noddus": { + "track": { + "$": [ + { + "path": "_pix.gif", + "id": 4584 + } + ] + }, + "$": [ + { + "path": "javascripts/loader.js", + "id": 4585 + }, + { + "path": "widget_campaign", + "id": 4586 + } + ] + }, + "adreadytractions": { + "$": [ + { + "path": "rt/", + "id": 2773 + } + ] + }, + "behavioralengine": { + "api": { + "$": [ + { + "path": "scripts/be-init.js", + "id": 4903 + } + ] + } + }, + "adspeed": { + "$": [ + { + "path": "ad.php", + "id": 636 + } + ] + }, + "mediego": { + "$": [ + { + "path": "tracker.js", + "id": 4593 + } + ] + }, + "tellaparts": { + "$": [ + { + "path": "crumb", + "id": 629 + } + ] + }, + "cquotient": { + "cdn": { + "$": [ + { + "path": "js/v2", + "id": 4604 + } + ] + } + }, + "tellapart": { + "$": [ + { + "path": "crumb", + "id": 629 + } + ] + }, + "bttrack": { + "cdn": { + "$": [ + { + "path": "js/infeed/1.1/", + "id": 4619 + } + ] + }, + "api": { + "$": [ + { + "path": "WebClient/InFeed", + "id": 4620 + } + ] + }, + "$": [ + { + "path": "Pixel/Check/31850774", + "id": 4622 + }, + { + "path": "pixel/cookiesync", + "id": 4652 + } + ] + }, + "vresp": { + "cts": { + "$": [ + { + "path": "s.gif", + "id": 620 + } + ] + } + }, + "rationalyze": { + "static": { + "$": [ + { + "path": "file/ratio01/track.js", + "id": 4624 + } + ] + } + }, + "visitorville": { + "$": [ + { + "path": "js/plgtrafic.js.php", + "id": 618 + } + ] + }, + "limetalk": { + "$": [ + { + "path": "js/widgetLoader.js", + "id": 4625 + } + ] + }, + "clickdensity": { + "j": { + "$": [ + { + "path": "cr.js", + "id": 616 + } + ] + } + }, + "mrpfd": { + "tracker": { + "$": [ + { + "path": "tracker.js", + "id": 4627 + } + ] + } + }, + "didit": { + "tag": { + "$": [ + { + "path": "didit/", + "id": 613 + }, + { + "path": "js/", + "id": 613 + } + ] + } + }, + "datawrkz": { + "adunits": { + "$": [ + { + "path": "tms/data/placement/placement", + "id": 4630 + } + ] + } + }, + "undertone": { + "cdn": { + "$": [ + { + "path": "js/ajs.js", + "id": 930 + } + ] + } + }, + "republer": { + "a": { + "$": [ + { + "path": "exp", + "id": 4660 + } + ] + } + }, + "trackset": { + "conversionlab": { + "$": [ + { + "path": "track/", + "id": 2804 + } + ] + } + }, + "civey": { + "widget": { + "$": [ + { + "path": "1", + "id": 4664 + } + ] + } + }, + "cc-dt": { + "clickserve": { + "$": [ + { + "path": "link/", + "id": 598 + } + ] + } + }, + "clickyab": { + "a": { + "$": [ + { + "path": "show.js", + "id": 4678 + } + ] + }, + "static": { + "$": [ + { + "path": "ad/", + "id": 4679 + } + ] + } + }, + "skimlinks": { + "$": [ + { + "path": "api/", + "id": 1032 + }, + { + "path": "js/", + "id": 1032 + } + ] + }, + "vpadn": { + "c-dsp": { + "$": [ + { + "path": "segment", + "id": 4684 + } + ] + } + }, + "verticalacuity": { + "scripts": { + "$": [ + { + "path": "vat/mon/", + "id": 590 + } + ] + }, + "tm": { + "$": [ + { + "path": "vat/mon/", + "id": 590 + } + ] + } + }, + "vidazoo": { + "bis-ssl": { + "$": [ + { + "path": "aggregate", + "id": 4715 + } + ] + } + }, + "mvtracker": { + "$": [ + { + "path": "counter", + "id": 588 + }, + { + "path": "digits", + "id": 588 + }, + { + "path": "mvlive", + "id": 588 + }, + { + "path": "stats", + "id": 588 + }, + { + "path": "tr.x", + "id": 588 + }, + { + "path": "tss", + "id": 588 + }, + { + "path": "ts", + "id": 588 + } + ] + }, + "optimatic": { + "tracking": { + "$": [ + { + "path": "3.5/Tracking", + "id": 4696 + } + ] + } + }, + "nprove": { + "cdn": { + "$": [ + { + "path": "npcore.js", + "id": 2794 + } + ] + } + }, + "dyntrk": { + "eu1": { + "c": { + "$": [ + { + "path": "adx/sx/us.php", + "id": 4697 + } + ] + } + } + }, + "dsmmadvantage": { + "tracking": { + "$": [ + { + "path": "clients/", + "id": 585 + } + ] + } + }, + "poliris": { + "static": { + "$": [ + { + "path": "z/produits/sl/assets/js/sl/common/v11/avatag.js", + "id": 4703 + } + ] + } + }, + "phonalytics": { + "app": { + "$": [ + { + "path": "track", + "id": 582 + } + ] + } + }, + "informars": { + "widgets": { + "$": [ + { + "path": "c/cnn/us/mortgage/widgets/sub/widget3/Widget3.aspx", + "id": 4707 + } + ] + } + }, + "marketgid": { + "jsc": { + "$": [ + { + "path": "z/f/zf.fm.651704.js", + "id": 4963 + }, + { + "path": "h/d/", + "id": 4691 + } + ] + }, + "sc": { + "$": [ + { + "path": "o/n/onlyfilms.ru", + "id": 4386 + } + ] + }, + "cm": { + "$": [ + { + "path": "m", + "id": 4778 + } + ] + } + }, + "spamanalyst": { + "dt": { + "$": [ + { + "path": "ptmdP", + "id": 4708 + } + ] + } + }, + "bridgetrack": { + "$": [ + { + "path": "track", + "id": 920 + }, + { + "path": "a/s/", + "id": 921 + } + ] + }, + "deployads": { + "e": { + "$": [ + { + "path": "e/um.js", + "id": 4710 + } + ] + }, + "cdn": { + "$": [ + { + "path": "a/macdailynews.com.js", + "id": 4711 + } + ] + }, + "c": { + "$": [ + { + "path": "sync", + "id": 4712 + } + ] + } + }, + "insightgrit": { + "app": { + "$": [ + { + "path": "1/", + "id": 575 + } + ] + } + }, + "placelocal": { + "reative": { + "$": [ + { + "path": "v3.placelocal.com", + "id": 4713 + } + ] + }, + "ak-cdn": { + "$": [ + { + "path": "js/v3/iframetag", + "id": 4714 + } + ] + } + }, + "cbsinteractive": { + "vidtech": { + "$": [ + { + "path": "uvpjs/2.5.8/lib/tracking/comscore/streamsense.5.1.1.160316.min.js", + "id": 4616 + }, + { + "path": "uvpjs/2.5.8/cbsi-player.js", + "id": 4700 + } + ] + } + }, + "plutusads": { + "$": [ + { + "path": "ga", + "id": 4717 + } + ] + }, + "cbs": { + "can": { + "$": [ + { + "path": "thunder/player/chrome/smart_tag/1_2_0/tag.iife.min.js", + "id": 4392 + } + ] + } + }, + "adrizer": { + "run": { + "$": [ + { + "path": "build.min.js", + "id": 4720 + } + ] + }, + "tanooki": { + "$": [ + { + "path": "postpopular.com/config.js", + "id": 4721 + } + ] + } + }, + "com": { + "i": { + "i": { + "$": [ + { + "path": "cnwk.1d/ads/", + "id": 2379 + } + ] + } + } + }, + "vertamedia": { + "cdn": { + "$": [ + { + "path": "static/jsvpaid.js", + "id": 4722 + } + ] + } + }, + "picadmedia": { + "$": [ + { + "path": "js/", + "id": 562 + } + ] + }, + "audiencesquare": { + "cdn": { + "$": [ + { + "path": "prebid/asq_tag.js", + "id": 4730 + }, + { + "path": "tags", + "id": 4729 + } + ] + } + }, + "adroll": { + "s": { + "$": [ + { + "path": "j/sendrolling.js", + "id": 553 + }, + { + "path": "pixel", + "id": 4444 + } + ] + }, + "d": { + "$": [ + { + "path": "pixel", + "id": 4497 + }, + { + "path": "cm", + "id": 4501 + } + ] + }, + "a": { + "$": [ + { + "path": "pixel", + "id": 4499 + } + ] + }, + "$": [ + { + "path": "j/roundtrip.js", + "id": 4498 + } + ] + }, + "groovinads": { + "ads01": { + "$": [ + { + "path": "grv/track", + "id": 4737 + } + ] + } + }, + "amadesa": { + "$": [ + { + "path": "static/client_js/engine/amadesajs.js", + "id": 550 + } + ] + }, + "ooyala": { + "l": { + "$": [ + { + "path": "analytics/iframe.html", + "id": 4740 + } + ] + }, + "analytics": { + "$": [ + { + "path": "static/iframe_pinger.js", + "id": 4741 + } + ] + } + }, + "keywordmax": { + "$": [ + { + "path": "tracking/", + "id": 548 + } + ] + }, + "r66net": { + "static": { + "$": [ + { + "path": "scripts1/gl17.17.1.js", + "id": 4755 + } + ] + } + }, + "adelixir": { + "$": [ + { + "path": "webpages/scripts/ne_roi_tracking.js", + "id": 547 + }, + { + "path": "neroitrack", + "id": 547 + } + ] + }, + "invibes": { + "u": { + "$": [ + { + "path": "User/GetIvId", + "id": 4759 + } + ] + } + }, + "adentifi": { + "rtb": { + "$": [ + { + "path": "CookieSyncPubMatic", + "id": 4615 + } + ] + } + }, + "omnitagjs": { + "tracking": { + "$": [ + { + "path": "tracking/pixel", + "id": 4760 + } + ] + }, + "fo-api": { + "$": [ + { + "path": "fo-api/omniTag", + "id": 4762 + } + ] + } + }, + "rkdms": { + "mct": { + "$": [ + { + "path": "sid.gif", + "id": 533 + } + ] + } + }, + "fogl1onf": { + "$": [ + { + "path": "1561/b.js", + "id": 4764 + } + ] + }, + "predictad": { + "$": [ + { + "path": "scripts/publishers/", + "id": 527 + }, + { + "path": "scripts/molosky/", + "id": 527 + } + ] + }, + "cupinteractive": { + "cdn": { + "$": [ + { + "path": "assets", + "id": 4765 + } + ] + } + }, + "newsinc": { + "assets": { + "$": [ + { + "path": "analyticsprovider.svc/", + "id": 526 + }, + { + "path": "ndn.2.js", + "id": 526 + } + ] + }, + "launch": { + "$": [ + { + "path": "js/embed.js", + "id": 3305 + } + ] + } + }, + "beopinion": { + "widget": { + "$": [ + { + "path": "sdk-2.0.0.js", + "id": 4766 + } + ] + }, + "data": { + "$": [ + { + "path": "serve", + "id": 4767 + } + ] + } + }, + "searchignite": { + "$": [ + { + "path": "si/cm/tracking/", + "id": 514 + } + ] + }, + "alooma": { + "inputs": { + "$": [ + { + "path": "track", + "id": 4769 + } + ] + } + }, + "cdnma": { + "$": [ + { + "path": "apps/", + "id": 1333 + } + ] + }, + "walkme": { + "cdn": { + "$": [ + { + "path": "users/", + "id": 4771 + } + ] + } + }, + "gorillanation": { + "triggertag": { + "cdn": { + "$": [ + { + "path": "js/triggertag.js", + "id": 511 + } + ] + } + } + }, + "wywy": { + "analytics": { + "$": [ + { + "path": "i", + "id": 4772 + } + ] + }, + "static": { + "$": [ + { + "path": "tracker.js", + "id": 4774 + } + ] + } + }, + "roiservice": { + "track": { + "$": [ + { + "path": "track/", + "id": 507 + } + ] + } + }, + "wywyuserservice": { + "$": [ + { + "path": "wyid.js", + "id": 4773 + } + ] + }, + "domodomain": { + "www": { + "$": [ + { + "path": "domodomain/sensor/", + "id": 502 + } + ] + } + }, + "findologic": { + "service": { + "$": [ + { + "path": "ps/vite-envogue.de//selector.php", + "id": 4775 + } + ] + }, + "cdn": { + "$": [ + { + "path": "static/loader.min.js", + "id": 4776 + } + ] + } + }, + "intelligencefocus": { + "saas": { + "$": [ + { + "path": "sensor/", + "id": 501 + } + ] + } + }, + "alicdn": { + "g": { + "$": [ + { + "path": "alilog/s/7.2.5/aplus_int.js", + "id": 4780 + } + ] + } + }, + "clickability": { + "s": { + "$": [ + { + "path": "s", + "id": 490 + } + ] + } + }, + "deepintent": { + "match": { + "$": [ + { + "path": "usersync", + "id": 4782 + } + ] + } + }, + "mercent": { + "cdn": { + "$": [ + { + "path": "js/tracker.js", + "id": 2820 + } + ] + } + }, + "jd": { + "jssr": { + "$": [ + { + "path": "tj.js", + "id": 4784 + } + ] + } + }, + "wibiya": { + "cdn": { + "$": [ + { + "path": "toolbars", + "id": 479 + }, + { + "path": "loaders", + "id": 479 + } + ] + } + }, + "shappify": { + "apps": { + "secure": { + "$": [ + { + "path": "apps/quantity/quantity_breaks.php", + "id": 4787 + } + ] + } + } + }, + "binlayer": { + "view": { + "$": [ + { + "path": "ad", + "id": 473 + } + ] + } + }, + "sitomobile": { + "dn": { + "$": [ + { + "path": "pxl", + "id": 4798 + } + ] + } + }, + "doclix": { + "ads": { + "$": [ + { + "path": "adserver/serve/", + "id": 471 + } + ] + } + }, + "angsrvr": { + "eu": { + "as": { + "$": [ + { + "path": "select", + "id": 4803 + } + ] + } + } + }, + "addfreestats": { + "$": [ + { + "path": "cgi-bin/afstrack.cgi", + "id": 467 + } + ] + }, + "fyber": { + "rtbcc": { + "$": [ + { + "path": "vpaid/angusersyncer-9.js", + "id": 4805 + } + ] + } + }, + "3dstats": { + "$": [ + { + "path": "cgi-bin/3dstrack", + "id": 466 + } + ] + }, + "survata": { + "surveywall-api": { + "px": { + "$": [ + { + "path": "t", + "id": 4806 + } + ] + } + } + }, + "answerscloud": { + "$": [ + { + "path": "samsung/production/gateway.min.js", + "id": 3558 + } + ] + }, + "coin-hive": { + "$": [ + { + "path": "lib/coinhive.min.js", + "id": 4832 + } + ] + }, + "web-visor": { + "c1": { + "$": [ + { + "path": "c.js", + "id": 460 + } + ] + }, + "beta": { + "$": [ + { + "path": "c.js", + "id": 460 + } + ] + } + }, + "coinhive": { + "$": [ + { + "path": "lib/coinhive.min.js", + "id": 4932 + } + ] + }, + "meebo": { + "cim": { + "$": [ + { + "path": "cim", + "id": 459 + } + ] + } + }, + "authedmine": { + "$": [ + { + "path": "lib/authedmine.min.js", + "id": 4957 + } + ] + }, + "wingify": { + "server": { + "$": [ + { + "path": "app/js/code/wg_consolidated.js", + "id": 2808 + } + ] + } + }, + "dtscout": { + "e": { + "$": [ + { + "path": "e/", + "id": 4833 + } + ] + } + }, + "compete": { + "c": { + "$": [ + { + "path": "bootstrap/", + "id": 2781 + } + ] + } + }, + "cityspark": { + "p": { + "$": [ + { + "path": "api/widgets/widgetinfo", + "id": 4835 + } + ] + } + }, + "apture": { + "www": { + "$": [ + { + "path": "js/apture.js", + "id": 451 + } + ] + } + }, + "analytics-egain": { + "cloud-emea": { + "$": [ + { + "path": "tracker", + "id": 4839 + } + ] + } + }, + "gosquared": { + "$": [ + { + "path": "livestats/tracker", + "id": 1401 + } + ] + }, + "timezonedb": { + "vip": { + "$": [ + { + "path": "v2/get-time-zone", + "id": 4840 + } + ] + } + }, + "widgetserver": { + "$": [ + { + "path": "syndication/subscriber", + "id": 216 + } + ] + }, + "jsecoin": { + "$": [ + { + "path": "server/load", + "id": 4841 + } + ] + }, + "tweetmeme": { + "$": [ + { + "path": "i/scripts/button.js", + "id": 207 + } + ], + "zulu": { + "$": [ + { + "path": "button_ajax.js", + "id": 207 + } + ] + } + }, + "ad-arata": { + "ad": { + "$": [ + { + "path": "static/embed.js", + "id": 4843 + } + ] + } + }, + "tweetboard": { + "$": [ + { + "path": "tb.js", + "id": 206 + } + ] + }, + "geolify": { + "$": [ + { + "path": "geoblock.php", + "id": 4844 + } + ] + }, + "pippio": { + "$": [ + { + "path": "api/sync", + "id": 4374 + }, + { + "path": "api/sync", + "id": 4358 + } + ] + }, + "adomik": { + "127845-hb": { + "$": [ + { + "path": "ahba.js", + "id": 4845 + } + ] + } + }, + "zendesk": { + "$": [ + { + "path": "external/zenbox/overlay.js", + "id": 208 + } + ], + "assets": { + "$": [ + { + "path": "embeddable_framework/main.js", + "id": 4167 + } + ] + }, + "4kdownload": { + "$": [ + { + "path": "embeddable/config", + "id": 4168 + } + ] + } + }, + "cybertonica": { + "p": { + "$": [ + { + "path": "js/beacon.min.js", + "id": 4847 + } + ] + } + }, + "leadforce1": { + "$": [ + { + "path": "bf/bf.js", + "id": 202 + } + ] + }, + "exposebox": { + "sf": { + "$": [ + { + "path": "widget/", + "id": 4848 + } + ] + }, + "server": { + "$": [ + { + "path": "dmp.js", + "id": 4849 + } + ] + } + }, + "etracker": { + "static": { + "$": [ + { + "path": "code/e.js", + "id": 4404 + } + ] + } + }, + "jeeng": { + "sdk": { + "$": [ + { + "path": "sdk.js", + "id": 4852 + } + ] + }, + "api": { + "$": [ + { + "path": "widgets", + "id": 4853 + } + ] + } + }, + "bizo": { + "ad": { + "$": [ + { + "path": "pixel", + "id": 2776 + } + ] + } + }, + "adasiaholdings": { + "cdn": { + "$": [ + { + "path": "tag/aan_jw_126.js", + "id": 4862 + } + ] + } + }, + "enquisite": { + "$": [ + { + "path": "log.js", + "id": 152 + } + ] + }, + "yektanet": { + "cdn": { + "$": [ + { + "path": "js", + "id": 4878 + } + ] + }, + "fetch": { + "$": [ + { + "path": "api", + "id": 4879 + } + ] + } + }, + "glam": { + "$": [ + { + "path": "app/site/affiliate/viewchannelmodule.act", + "id": 149 + }, + { + "path": "etagsimg", + "id": 149 + }, + { + "path": "jsadimp", + "id": 149 + }, + { + "path": "gad/", + "id": 149 + } + ], + "www2": { + "$": [ + { + "path": "app/site/affiliate/viewChannelModule.act", + "id": 3610 + } + ] + } + }, + "graphcomment": { + "$": [ + { + "path": "js/integration.js", + "id": 4885 + } + ] + }, + "widgetbucks": { + "api": { + "$": [ + { + "path": "script/ads.js", + "id": 135 + } + ] + } + }, + "h-bid": { + "static": { + "$": [ + { + "path": "btc-echo.de/20171229/sws-hb-btc-echo.de.min.js", + "id": 4887 + } + ] + } + }, + "tumblr": { + "www": { + "$": [ + { + "path": "dashboard/iframe", + "id": 131 + } + ] + }, + "platform": { + "$": [ + { + "path": "v1/follow_button.html", + "id": 1950 + }, + { + "path": "v1/share", + "id": 1950 + } + ] + } + }, + "optmstr": { + "a": { + "$": [ + { + "path": "app/js/legacy-api.min.js", + "id": 4891 + }, + { + "path": "app/js/api.min.js", + "id": 4892 + } + ] + } + }, + "loomia": { + "assets": { + "$": [ + { + "path": "js/", + "id": 2787 + } + ] + } + }, + "advertising": { + "adtech": { + "adserver": { + "$": [ + { + "path": "addyn", + "id": 4895 + } + ] + } + } + }, + "bkrtx": { + "$": [ + { + "path": "js/", + "id": 2817 + } + ] + }, + "izooto": { + "cdn": { + "$": [ + { + "path": "scripts/sdk/izooto.js", + "id": 4898 + } + ] + } + }, + "lypn": { + "$": [ + { + "path": "exp/", + "id": 2788 + }, + { + "path": "lp/", + "id": 2788 + } + ] + }, + "cohesionapps": { + "cdn": { + "$": [ + { + "path": "cohesion/cohesion-latest.min.js", + "id": 4899 + } + ] + } + }, + "digg": { + "$": [ + { + "path": "tools/widgetjs", + "id": 95 + } + ] + }, + "oneall": { + "api": { + "btc-echode": { + "$": [ + { + "path": "socialize/library.js", + "id": 4901 + } + ] + } + } + }, + "gumgum": { + "cdn": { + "$": [ + { + "path": "javascripts/ggv2.js", + "id": 90 + } + ] + }, + "g2": { + "$": [ + { + "path": "javascripts/ggv2.js", + "id": 90 + } + ] + }, + "gonzogrape": { + "$": [ + { + "path": "javascripts/ggv2.js", + "id": 90 + } + ] + } + }, + "formisimo": { + "cdn-static": { + "$": [ + { + "path": "tracking/js/tracking.js", + "id": 4902 + } + ] + } + }, + "btbuckets": { + "static": { + "$": [ + { + "path": "bt.js", + "id": 89 + } + ] + }, + "n": { + "$": [ + { + "path": "js", + "id": 89 + } + ] + } + }, + "freshservice": { + "$": [ + { + "path": "assets/js/freshworks-e23ea869.js", + "id": 4907 + } + ] + }, + "facebook": { + "$": [ + { + "path": "v2.0/js/conversions/tracking.js", + "id": 1487 + }, + { + "path": "v2.0/email_open_log_pic.php", + "id": 3307 + }, + { + "path": "js/conversions/tracking.js", + "id": 1487 + }, + { + "path": "v2.0/offsite_event.php", + "id": 3307 + }, + { + "path": "email_open_log_pic.php", + "id": 1500 + }, + { + "path": "v2.0/brandlift.php", + "id": 2516 + }, + { + "path": "offsite_event.php", + "id": 1500 + }, + { + "path": "impression.php/", + "id": 4504 + }, + { + "path": "brandlift.php", + "id": 2516 + }, + { + "path": "v2.0/fr/u.php", + "id": 2327 + }, + { + "path": "v2.0/connect", + "id": 1026 + }, + { + "path": "fr/u.php", + "id": 2327 + }, + { + "path": "connect", + "id": 1026 + }, + { + "path": "tr", + "id": 3267 + } + ], + "api": { + "$": [ + { + "path": "method/fql.query", + "id": 2475 + } + ] + }, + "connect": { + "$": [ + { + "path": "en_US/AudienceNetworkPrebid.js", + "id": 4153 + } + ] + } + }, + "getjaco": { + "recorder-assets": { + "$": [ + { + "path": "recorder_v2.js", + "id": 4910 + } + ] + } + }, + "intensedebate": { + "$": [ + { + "path": "js/", + "id": 87 + } + ] + }, + "gravityrd-services": { + "tutti-ams": { + "$": [ + { + "path": "js/tutti/gr_reco4-min.js", + "id": 4914 + } + ] + } + }, + "aolcdn": { + "o": { + "$": [ + { + "path": "os/aol/beacon.min.js", + "id": 82 + }, + { + "path": "os/ads/adchoices.png", + "id": 1322 + }, + { + "path": "ads/adswrapper", + "id": 82 + }, + { + "path": "js/mg2.js", + "id": 1056 + }, + { + "path": "images", + "id": 4860 + } + ] + }, + "s": { + "$": [ + { + "path": "ads/", + "id": 4943 + } + ] + } + }, + "glomex": { + "component-vvs": { + "$": [ + { + "path": "glomex-loader", + "id": 4916 + } + ] + }, + "vas-vod-mds": { + "$": [ + { + "path": "vod/3.0/getgeolocation", + "id": 4917 + } + ] + } + }, + "disqus": { + "$": [ + { + "path": "recent_comments_widget.js", + "id": 79 + }, + { + "path": "popular_threads_widget.js", + "id": 79 + }, + { + "path": "top_commenters_widget.js", + "id": 79 + }, + { + "path": "combination_widget.js", + "id": 79 + }, + { + "path": "get_num_replies", + "id": 79 + }, + { + "path": "count.js", + "id": 79 + }, + { + "path": "forums/", + "id": 79 + }, + { + "path": "blogger", + "id": 79 + }, + { + "path": "embed", + "id": 79 + }, + { + "path": "api", + "id": 79 + } + ] + }, + "datacoral": { + "$": [ + { + "path": "instrumentation/js/1.0.0/dc.js", + "id": 4924 + } + ] + }, + "exponential": { + "expo9": { + "tags": { + "$": [ + { + "path": "tags/", + "id": 2805 + } + ] + } + } + }, + "merklesearch": { + "cdn": { + "$": [ + { + "path": "merkle_track.js", + "id": 4928 + } + ] + } + }, + "alexa": { + "xslt": { + "$": [ + { + "path": "site_stats/js/s/", + "id": 491 + }, + { + "path": "site_stats/js/t/", + "id": 77 + } + ] + }, + "widgets": { + "$": [ + { + "path": "traffic/javascript/", + "id": 491 + } + ] + } + }, + "coin-have": { + "$": [ + { + "path": "c", + "id": 4930 + } + ] + }, + "blogcatalog": { + "www": { + "$": [ + { + "path": "w/recent.php", + "id": 75 + } + ] + } + }, + "autoid": { + "ai": { + "$": [ + { + "path": "ai.js", + "id": 4948 + } + ] + } + }, + "doublepimpssl": { + "cdn": { + "$": [ + { + "path": "scripts/infinity.js.aspx", + "id": 4794 + } + ] + }, + "$": [ + { + "path": "tag.engine", + "id": 4795 + } + ] + }, + "genieessp": { + "js": { + "$": [ + { + "path": "t/253/551/a1253551.js", + "id": 4953 + } + ] + } + }, + "kontera": { + "kona": { + "$": [ + { + "path": "javascript/", + "id": 66 + } + ] + } + }, + "clmbtech": { + "static": { + "$": [ + { + "path": "ad/commons/js/colombia_v2.js", + "id": 4965 + } + ] + } + }, + "googleapis": { + "ajax": { + "$": [ + { + "path": "ajax/libs/webfont/1/webfont.js", + "id": 3418 + } + ] + }, + "commondatastorage": { + "$": [ + { + "path": "code.snapengage.com/js/", + "id": 2834 + }, + { + "path": "volusionchat/js", + "id": 4304 + } + ] + }, + "storage": { + "$": [ + { + "path": "crossroadswow/js/", + "id": 3980 + } + ] + }, + "imasdk": { + "$": [ + { + "path": "js/sdkloader/vpaid_adapter.js", + "id": 4578 + }, + { + "path": "js/sdkloader/ima3.js", + "id": 4621 + } + ] + } + }, + "freshmarketer": { + "cdn": { + "$": [ + { + "path": "12345/12345.js", + "id": 4966 + } + ] + } + }, + "outbrain": { + "odb": { + "$": [ + { + "path": "utils/get", + "id": 4333 + } + ] + }, + "traffic": { + "$": [ + { + "path": "network/trackpxl", + "id": 4452 + } + ] + }, + "rva": { + "$": [ + { + "path": "analytics-v1.js", + "id": 4440 + } + ] + }, + "amplifypixel": { + "$": [ + { + "path": "pixel", + "id": 4451 + } + ] + }, + "tr": { + "$": [ + { + "path": "pixel", + "id": 4829 + } + ] + }, + "revee": { + "$": [ + { + "path": "page/update", + "id": 4825 + }, + { + "path": "page/view", + "id": 4450 + } + ] + }, + "widgetmonitor": { + "$": [ + { + "path": "widgeterrormonitor/api/report", + "id": 4827 + } + ] + }, + "images": { + "$": [ + { + "path": "Imaginarium/api/uuid", + "id": 4731 + } + ] + }, + "log": { + "$": [ + { + "path": "loggerservices/widgetglobalevent", + "id": 4826 + } + ] + }, + "hpr": { + "$": [ + { + "path": "utils/get", + "id": 4828 + } + ] + }, + "amplify": { + "$": [ + { + "path": "cp/obtp.js", + "id": 4830 + } + ] + }, + "widgets": { + "$": [ + { + "path": "obtp.js", + "id": 4453 + } + ] + } + }, + "stetic": { + "$": [ + { + "path": "t.js", + "id": 4969 + } + ] + }, + "msn": { + "ads": { + "$": [ + { + "path": "library/dap.js", + "id": 58 + } + ] + }, + "ads1": { + "$": [ + { + "path": "library/dap.js", + "id": 58 + } + ] + }, + "adsyndication": { + "$": [ + { + "path": "delivery/getads.js", + "id": 1055 + } + ] + }, + "flex": { + "$": [ + { + "path": "mstag/", + "id": 3189 + } + ] + }, + "r": { + "$": [ + { + "path": "scripts/microsoft_adcenterconversion.js", + "id": 571 + } + ] + } + }, + "wixab-cloud": { + "public": { + "$": [ + { + "path": "static/js/wx-latest.js", + "id": 4972 + } + ] + } + }, + "intextscript": { + "resources": { + "$": [ + { + "path": "js/main_intext.js", + "id": 1534 + } + ] + } + }, + "algovid": { + "c": { + "$": [ + { + "path": "player/ad-units.2.0.js", + "id": 4975 + } + ] + } + }, + "infolinks": { + "resources": { + "$": [ + { + "path": "js/infolinks_main.js", + "id": 56 + } + ] + } + }, + "raisenow": { + "widget": { + "$": [ + { + "path": "widgets/ela/moaz-q8tch/js/dds-init-widget-de.js", + "id": 4976 + } + ] + } + }, + "surphace": { + "$": [ + { + "path": "widgets/sphereit/js", + "id": 53 + } + ] + }, + "keytiles": { + "lb": { + "$": [ + { + "path": "statjs/sst-476-1980007388/stat.js", + "id": 4977 + } + ] + } + }, + "sphere": { + "$": [ + { + "path": "widgets/sphereit/js", + "id": 53 + } + ] + }, + "opinary": { + "widgets": { + "$": [ + { + "path": "a/focus.js", + "id": 5024 + }, + { + "path": "a/bento.js", + "id": 4981 + } + ] + } + }, + "salesforce": { + "lct": { + "$": [ + { + "path": "sfga.js", + "id": 52 + } + ] + } + }, + "transmatico": { + "backoffice": { + "$": [ + { + "path": "get", + "id": 4986 + } + ] + } + }, + "conversionruler": { + "$": [ + { + "path": "bin/", + "id": 51 + } + ] + }, + "webcamo": { + "$": [ + { + "path": "js/lang/webcamo.com/fr_accueil.js", + "id": 4989 + }, + { + "path": "js/chatloisir_commun.js", + "id": 4988 + }, + { + "path": "js/cookies_consent.js", + "id": 4990 + }, + { + "path": "js/accueil.js", + "id": 4987 + } + ] + }, + "uservoice": { + "$": [ + { + "path": "javascripts/widget", + "id": 49 + }, + { + "path": "api", + "id": 1164 + } + ] + }, + "sibautomation": { + "$": [ + { + "path": "sa.js", + "id": 4992 + } + ] + }, + "addthis": { + "s7": { + "$": [ + { + "path": "js/300/addthis_widget.js", + "id": 4112 + } + ] + } + }, + "forter": { + "cdn4": { + "$": [ + { + "path": "script.js", + "id": 4999 + } + ] + } + }, + "addtoany": { + "static": { + "$": [ + { + "path": "menu/page.js", + "id": 4911 + }, + { + "path": "menu/feed.js", + "id": 43 + }, + { + "path": "menu/page.js", + "id": 43 + } + ] + } + }, + "smyte": { + "ping": { + "$": [ + { + "path": "p.js", + "id": 5000 + } + ] + } + }, + "yahoo": { + "extern": { + "$": [ + { + "path": "b", + "id": 2798 + } + ] + }, + "marketingsolutions": { + "wa": { + "$": [ + { + "path": "script/scriptservlet", + "id": 516 + } + ] + } + }, + "gemini": { + "beap": { + "$": [ + { + "path": "mbclk", + "id": 4289 + } + ] + } + } + }, + "mediarithmics": { + "static": { + "$": [ + { + "path": "tag/1/tag.min.js", + "id": 5006 + } + ] + }, + "events": { + "$": [ + { + "path": "v1/visits/pixel", + "id": 5007 + } + ] + } + }, + "yieldmanager": { + "content": { + "$": [ + { + "path": "rmtag3.js", + "id": 1434 + }, + { + "path": "rmi.js", + "id": 1434 + } + ] + } + }, + "scarabresearch": { + "recommender": { + "$": [ + { + "path": "merchants/", + "id": 5008 + } + ] + } + }, + "typepad": { + "$": [ + { + "path": "t/stats", + "id": 15 + } + ] + }, + "albacross": { + "serve": { + "$": [ + { + "path": "track.js", + "id": 5012 + } + ] + } + }, + "woopra": { + "$": [ + { + "path": "js/woopra.js", + "id": 3121 + }, + { + "path": "js/w.js", + "id": 3121 + } + ] + }, + "kinja": { + "$": [ + { + "path": "assets/cross-domain-tracking.html", + "id": 5031 + }, + { + "path": "api/analytics", + "id": 5030 + } + ] + }, + "friendfeed": { + "$": [ + { + "path": "embed/widget/", + "id": 31 + } + ] + }, + "kinja-static": { + "x": { + "$": [ + { + "path": "assets/packaged-js/trackers", + "id": 5032 + } + ] + } + }, + "hittail": { + "$": [ + { + "path": "mlt.js", + "id": 30 + } + ] + }, + "rapidspike": { + "$": [ + { + "path": "static/js/timingcg.min.js", + "id": 5033 + } + ] + }, + "google": { + "$": [ + { + "path": "uds/api/ads/1.0/b4fb01b46ac6cd82e7c4a4c12c6cc576/content.I.js", + "id": 4132 + }, + { + "path": "_/scs/shopping-verified-reviews-static/_/js", + "id": 4571 + }, + { + "path": "afsonline/show_afs_search.js", + "id": 3779 + }, + { + "path": "adsense/search/async-ads.js", + "id": 1002 + }, + { + "path": "afsonline/show_afs_ads.js", + "id": 984 + }, + { + "path": "adsense/domains/caf.js", + "id": 1126 + }, + { + "path": "adsense/search/ads.js", + "id": 1002 + }, + { + "path": "ads/measurement/l", + "id": 4820 + }, + { + "path": "ads/ga-audiences", + "id": 4330 + }, + { + "path": "uds/api/ads/1.0", + "id": 4148 + }, + { + "path": "ads/user-lists/", + "id": 4728 + }, + { + "path": "pagead/drt/ui", + "id": 4469 + }, + { + "path": "pagead/lvz", + "id": 4133 + }, + { + "path": "cse/cse.js", + "id": 4336 + }, + { + "path": "uds/afs", + "id": 3030 + } + ], + "www": { + "$": [ + { + "path": "friendconnect/script/friendconnect.js", + "id": 60 + }, + { + "path": "uds/api/search", + "id": 65 + }, + { + "path": "uds/stats", + "id": 2435 + } + ] + }, + "apis": { + "$": [ + { + "path": "js/platform.js", + "id": 4859 + }, + { + "path": "js/plusone.js", + "id": 4858 + } + ] + }, + "translate": { + "$": [ + { + "path": "translate_a/element.js", + "id": 3306 + } + ] + }, + "developers": { + "$": [ + { + "path": "interactive-media-ads", + "id": 4380 + } + ] + } + }, + "roistat": { + "collector": { + "$": [ + { + "path": "counter.js", + "id": 5035 + } + ] + } + }, + "googleadservices": { + "partner": { + "$": [ + { + "path": "opt/pubads_impl_73.js", + "id": 3461 + }, + { + "path": "gpt/pubads_impl", + "id": 4006 + }, + { + "path": "gampad/", + "id": 29 + } + ] + }, + "$": [ + { + "path": "pagead/conversion.js", + "id": 3901 + }, + { + "path": "pagead/aclk", + "id": 4409 + } + ], + "www": { + "$": [ + { + "path": "pagead/conversion", + "id": 488 + } + ] + } + }, + "scroll": { + "static": { + "$": [ + { + "path": "js/scroll.js", + "id": 5037 + } + ] + }, + "connect": { + "$": [ + { + "path": "embed/check", + "id": 5096 + } + ] + } + }, + "googlesyndication": { + "$": [ + { + "path": "apps/domainpark/", + "id": 1126 + }, + { + "path": "simgad/", + "id": 29 + }, + { + "path": "pagead/", + "id": 29 + } + ], + "pagead2": { + "$": [ + { + "path": "pagead/images/ad_choices_", + "id": 1155 + }, + { + "path": "pagead/images/adchoices/", + "id": 2439 + }, + { + "path": "pagead/js/adsbygoogle.js", + "id": 3900 + }, + { + "path": "pagead/abglogo/adc", + "id": 1181 + }, + { + "path": "pagead/osd.js", + "id": 4400 + }, + { + "path": "activeview", + "id": 4381 + }, + { + "path": "activeview", + "id": 4401 + }, + { + "path": "bg", + "id": 4398 + } + ] + }, + "tpc": { + "$": [ + { + "path": "safeframe/1-0-2/html/container.html", + "id": 3584 + }, + { + "path": "safeframe", + "id": 4359 + }, + { + "path": "sodar", + "id": 4399 + } + ] + }, + "ade": { + "$": [ + { + "path": "ddm/activity_ext", + "id": 4618 + } + ] + }, + "video-ad-stats": { + "$": [ + { + "path": "video/client_events", + "id": 4617 + } + ] + } + }, + "wonderpush": { + "$": [ + { + "path": "wonderpush.min.js", + "id": 5038 + } + ] + }, + "feedjit": { + "$": [ + { + "path": "serve/", + "id": 28 + }, + { + "path": "map/", + "id": 28 + }, + { + "path": "b/", + "id": 28 + } + ] + }, + "evomgroup": { + "matrix": { + "$": [ + { + "path": "track/", + "id": 5040 + } + ] + } + }, + "clustrmaps": { + "$": [ + { + "path": "stats/maps", + "id": 27 + }, + { + "path": "counter/", + "id": 27 + } + ] + }, + "benchplatform": { + "tag": { + "$": [ + { + "path": "benchmarketingsmarttag/", + "id": 5041 + } + ] + } + }, + "feedburner": { + "feeds2": { + "$": [ + { + "path": "1000DvdsToSee", + "id": 4403 + } + ] + } + }, + "spheremall": { + "api": { + "$": [ + { + "path": "analytics/v1/collect", + "id": 5047 + } + ] + } + }, + "amazon": { + "rcm": { + "$": [ + { + "path": "e/cm", + "id": 1043 + } + ] + } + }, + "oath": { + "cmp": { + "consent": { + "$": [ + { + "path": "cmpstub.min.js", + "id": 5049 + } + ] + } + } + }, + "otracking": { + "$": [ + { + "path": "js", + "id": 19 + } + ] + }, + "llanalytics": { + "t1": { + "$": [ + { + "path": "tracking_engine/collector.min.js", + "id": 5057 + } + ] + } + }, + "interclick": { + "ids": { + "$": [ + { + "path": "ids.interclick.com", + "id": 3521 + } + ] + } + }, + "justanswer": { + "components": { + "$": [ + { + "path": "js/", + "id": 5061 + } + ] + } + }, + "yimg": { + "$": [ + { + "path": "mi/ywa.js", + "id": 2810 + } + ], + "d": { + "$": [ + { + "path": "ds/badge.js", + "id": 92 + } + ] + }, + "s": { + "$": [ + { + "path": "rq/darla/2-9-20/js/sfext-min.js", + "id": 4503 + }, + { + "path": "wi/ytc.js", + "id": 4181 + } + ] + }, + "l": { + "$": [ + { + "path": "rx/builds/7.86.297.1481334086/assets/streamsense.min.js", + "id": 4120 + } + ] + } + }, + "friendbuy": { + "cdn1": { + "$": [ + { + "path": "widgets/configs", + "id": 5062 + } + ] + } + }, + "hubspot": { + "$": [ + { + "path": "analytics/", + "id": 2880 + } + ] + }, + "freshchat": { + "assetscdn-wchat": { + "$": [ + { + "path": "static/assets/fc_web_widget-7d9e7fe914d9d70c88f6e5c5dc9ed6fd.js", + "id": 5071 + } + ] + } + }, + "wp": { + "stats": { + "$": [ + { + "path": "w.js", + "id": 4658 + } + ] + } + }, + "mluvii": { + "app": { + "$": [ + { + "path": "widget/oowidget.js", + "id": 5074 + } + ] + } + }, + "snap": { + "shots": { + "$": [ + { + "path": "snap_shots.js", + "id": 10 + } + ] + }, + "spa": { + "$": [ + { + "path": "snap_preview_anywhere.js", + "id": 10 + } + ] + } + }, + "mopinion": { + "collect": { + "$": [ + { + "path": "assets/surveys/1.3/js", + "id": 5075 + } + ] + }, + "deploy": { + "$": [ + { + "path": "js", + "id": 5076 + } + ] + } + }, + "amazonaws": { + "s3": { + "$": [ + { + "path": "glancecdn/cobrowse/js/GlanceCobrowseLoader_3.4.1aM.js", + "id": 4272 + }, + { + "path": "getsatisfaction.com/javascripts/feedback-v2.js", + "id": 99 + }, + { + "path": "getsatisfaction.com/feedback/feedback.js", + "id": 99 + }, + { + "path": "searchdiscovery-satellite-production", + "id": 2485 + }, + { + "path": "pixelpop/app/pixelpop-1.2.1.min.js", + "id": 4318 + }, + { + "path": "cdn.barilliance.com", + "id": 1355 + }, + { + "path": "wingify/vis_opt.js", + "id": 2808 + }, + { + "path": "j.kissinsights.com", + "id": 3074 + }, + { + "path": "ki.js/51746/b0R.js", + "id": 4098 + }, + { + "path": "asset.pagefair.com", + "id": 3088 + }, + { + "path": "saaspulse-cdn/", + "id": 1800 + }, + { + "path": "github/ribbons", + "id": 1985 + }, + { + "path": "new.cetrk.com", + "id": 3089 + }, + { + "path": "totango-cdn/", + "id": 1800 + }, + { + "path": "publishflow", + "id": 2795 + }, + { + "path": "freshplum", + "id": 2784 + }, + { + "path": "cdx-radar", + "id": 2858 + }, + { + "path": "adstage", + "id": 2875 + } + ], + "fby": { + "$": [ + { + "path": "fby.js", + "id": 1749 + } + ] + }, + "startafirenewstatic": { + "$": [ + { + "path": "publiclibs/startafireScript.min.js", + "id": 4044 + } + ] + }, + "teste-s3-maycon": { + "$": [ + { + "path": "tag.js", + "id": 5093 + } + ] + } + }, + "$": [ + { + "path": "td-cdn/sdk/td-1.1.1.js", + "id": 3382 + }, + { + "path": "scripts.hellobar.com", + "id": 2959 + } + ], + "s3-us-west-2": { + "$": [ + { + "path": "distroscale-public/vplayer-parallel/20170721_1043/ima_html5/index.html", + "id": 4791 + } + ] + } + }, + "wxug": { + "icons": { + "$": [ + { + "path": "scripts/sourcepoint/mms_client.js", + "id": 5079 + }, + { + "path": "scripts/sourcepoint/msg.js", + "id": 5078 + } + ] + } + }, + "freedom": { + "onset": { + "common": { + "$": [ + { + "path": "fi/analytics/cms/", + "id": 1038 + } + ] + } + } + }, + "kampyle": { + "nebula-cdn": { + "$": [ + { + "path": "resources/onsite/js/", + "id": 5080 + } + ] + } + }, + "sitemeter": { + "$": [ + { + "path": "js/counter.js", + "id": 6 + }, + { + "path": "meter.asp", + "id": 6 + } + ] + }, + "dockvine": { + "toolbar": { + "$": [ + { + "path": "javascript", + "id": 5081 + }, + { + "path": "loader.js", + "id": 5083 + }, + { + "path": "app.js", + "id": 5082 + } + ] + } + }, + "google-analytics": { + "$": [ + { + "path": "plugins/ua/ecommerce.js", + "id": 4812 + }, + { + "path": "plugins/ua/linkid.js", + "id": 3578 + }, + { + "path": "plugins/ua/ec.js", + "id": 4611 + }, + { + "path": "u/ga_debug.js", + "id": 2 + }, + { + "path": "analytics.js", + "id": 3579 + }, + { + "path": "analytics.js", + "id": 2 + }, + { + "path": "u/ga_beta.js", + "id": 2 + }, + { + "path": "siteopt.js", + "id": 218 + }, + { + "path": "urchin.js", + "id": 2 + }, + { + "path": "cx/api.js", + "id": 2 + }, + { + "path": "ga_exp.js", + "id": 2 + }, + { + "path": "r/collect", + "id": 4228 + }, + { + "path": "collect", + "id": 2 + }, + { + "path": "u/ga.js", + "id": 2 + }, + { + "path": "ga.js", + "id": 2 + } + ] + }, + "airpr": { + "px": { + "$": [ + { + "path": "airpr.js", + "id": 5089 + } + ] + } + }, + "twitter": { + "$": [ + { + "path": "1/statuses/user_timeline.json", + "id": 2431 + }, + { + "path": "1/statuses/followers.json", + "id": 2431 + }, + { + "path": "statuses/user_timeline/", + "id": 2431 + }, + { + "path": "1/urls/count.json", + "id": 2431 + }, + { + "path": "1/users/show.json", + "id": 2431 + } + ], + "platform": { + "$": [ + { + "path": "js/timeline.619317855a58aa2366562a395f9e40ef.js", + "id": 4382 + }, + { + "path": "js/button", + "id": 4569 + }, + { + "path": "widgets", + "id": 991 + }, + { + "path": "oct.js", + "id": 3097 + } + ] + } + }, + "skyscnr": { + "js": { + "$": [ + { + "path": "sttc/blackbird/static/js", + "id": 5090 + } + ] + } + }, + "twimg": { + "widgets": { + "$": [ + { + "path": "j/", + "id": 990 + } + ] + } + }, + "infiniteanalytics": { + "zachysprod": { + "$": [ + { + "path": "zachyscomboia.js", + "id": 5094 + } + ] + } + }, + "getclicky": { + "static": { + "$": [ + { + "path": "js", + "id": 4273 + } + ] + } + }, + "tazeros": { + "stats01": { + "$": [ + { + "path": "tracking/", + "id": 5095 + } + ] + } + }, + "instinctiveads": { + "load": { + "$": [ + { + "path": "i.js", + "id": 3404 + } + ] + }, + "engine": { + "$": [ + { + "path": "a/0.9533535316284412.js", + "id": 3405 + } + ] + } + } + }, + "si": { + "marketingautomation": { + "$": [ + { + "path": "mtc/event", + "id": 5097 + }, + { + "path": "mtc.js", + "id": 5091 + } + ] + } + }, + "uz": { + "www": { + "$": [ + { + "path": "plugins/top_rating", + "id": 3091 + } + ] + }, + "ums": { + "$": [ + { + "path": "bitrix/cache/js/ru/ru/kernel_main/kernel_main.js", + "id": 3886 } ] } } }, "path": { - "safeframe": 13, - "js/sdkloader/ima3.js": 14 + "clicky.js": 2780, + "/zig.js": 522, + "/zig.gif": 522, + "/zag.js": 1977, + "/xgemius.js": 1020, + "/internal/jscript/dwanalytics.js": 537, + "tns-counter.js": 2803, + "/banners/ajtg.js": 2772, + "/servlet/ajrotator/": 2772, + "/netupdater": 1062, + "/js.ng/": 505, + "monitus.js": 667, + "/image.ng/": 505, + "monitus_tools.js": 667, + "/html.ng/": 505, + "webtraxs.js": 2809, + "/resonance5050.js": 2932, + "mmcore.js": 2793, + "/acton/bn/": 481, + "/performable/pax": 749, + "/sites/all/libraries/foresee/foresee-surveydef.js": 3899, + "utag.loader.js": 812, + "foreSee/foresee-alive.js": 3557, + "utag.js": 4127, + "foresee-analytics": 464, + "certifica.js": 892, + "foresee-alive": 464, + "certifica-js14.js": 893, + "foresee-trigger": 464, + "/ki.js/": 939, + "ntpagetag": 2806, + "/hellobar.js": 1085, + "/liveball_api.js": 229, + "/std/resource/script/rwts.js": 1093, + "/phpmyvisites.js": 199, + "/instantinvite3.js": 1330, + "/percent_mobile.js": 2818, + "adbutler": 1412, + "/scripts/oas_analytics.js": 1734, + "/advertpro/servlet/view/": 1522, + "elqimg.js": 2814, + "taboola_newsroom_article.js": 3392, + "elqcfgxml.js": 2814, + "/share42/share42.js": 1588, + "elqcfg.js": 2814, + "/bazaarvoice.js": 1590, + "/eluminate.js": 2815, + "pixel.buzzdeck": 2857, + "/images/mlopen_track.html": 2789, + "/metriweb/mwtag": 1760, + "awstats_misc_tracker.js": 122, + "/owa.tracker-combined-min.js": 1904, + "touchclarity": 109, + "tealeafcfg.js": 2401, + "/k_button.js": 103, + "tealeaf.js": 2401, + "/k_push.js": 103, + "/js/tealeaf/levi-tealeaf-w3c-5.0.1.1731.js": 4152, + "baynote-observer.js": 1976, + "/anametrix.js": 2775, + "baynote.js": 93, + "/coradiant/": 2535, + "/fbconnect.js": 1029, + "/adpeeps.php": 2676, + "/chartbeat.js": 2779, + "/wp-content/plugins/trustjacker": 2731, + "/addthis_widget.php": 44, + "/wp-content/plugins/click-jacker": 2731, + "/addthis_widget.js": 44, + "/wp-content/themes/stealthsensei": 2731, + "seesmic-wp.js": 42, + "/wp-content/plugins/iflychat/js/script.js": 2786, + "/seesmic_topposters_v2.js": 42, + "/github-btn.html": 2911, + "/share-this.php": 2801, + "/timetracking/abtastytiming.gif": 3339, + "/xtcore.js": 1048, + "/visitscript/": 3085, + "/njs.gif": 1302, + "/webservices/jsparselinks.aspx": 3085, + "/dcs.gif": 1302, + "/otto/modules/tracker/pixel.": 3171, + "wtid.js": 39, + "/wp-content/plugins/roost-for-bloggers/": 3170, + "trackingtags_v1.1.js": 39, + ".web-call-analytics.com/wca.js": 3309, + "tacoda_ams_ddc_header.js": 2802, + "optinmonster/assets/js/api.js": 3377, + "/piwik.php": 12, + "blueconic.min.js": 3464, + "/piwik.js": 12, + "sddanJS.src": 3552, + "/al.php": 1041, + "onlineopinionV5/oo_engine.min.js": 3635, + "/ag.php": 1041, + "onlineopinionV5/oo_conf_float.js": 3636, + "/lg.php": 1041, + "/ajax/libs/airbrake-js/0.5.8/client.min.js": 3662, + "/spcjs.php": 1041, + "/production/gateway.min.js": 3740, + "/avw.php": 1041, + "/v24/veedesk/v24embedded.js": 3741, + "/ajs.php": 1041, + "web_assets/js/cheetah_mail/sc_tracking.js": 3798, + "/afr.php": 1041, + "/js/gigya-sharebar.min.js": 4508, + "/fl.js": 1040, + "realmedia/ads/": 2771, + "/adx.js": 1040, + "adstream_mjx.ads/": 2771, + "/adg.js": 1040, + "adstream_nx.ads/": 2771, + "ystat.js": 2811, + "cookiecontrol-6.2.min.js": 4298, + "indextools.js": 2811, + "/cookieconsent.min.js": 4312, + "/js_source/whv2_001.js": 1100, + "/videojs/videoplay.js": 4327, + "/salog.js.aspx": 2785, + "videopotok.pro/kod.php": 4396, + "/mymint/": 13, + "cdn.stroeerdigitalmedia.de/praeludium/praeludium_giga.min.js": 4558, + "/_mint/": 13, + "jsfile/tracking.js": 4866, + "/h10000/cma/tms/metrics.js": 3911, + "js/customtrackingscript.js": 4867, + "/quant.js": 2813, + "my.zadarma.com/callbackwidget/js/main.min.js": 4946, + "/__utm.": 935, + "app.push-ad.com": 5043, + "/zag.gif": 1977 }, "regex": { - "15": "(googletagservices\\.com\\/.*\\.js)" + "26": "(\\.feedburner\\.com\\/~f|feedproxy\\.google\\.com\\/~fc\\/)", + "32": "\\/woopra(\\.v(2|3|4))?\\.js", + "64": "\\.google\\.com(...)?\\/coop\\/cse\\/brand", + "84": "digg\\.com\\/[0-9a-zA-Z]*\\/diggthis\\.js", + "124": "twitter\\.com\\/javascripts\\/[0-9a-z]+\\.js", + "138": "(\\.haloscan\\.com\\/load\\/|js-kit\\.com\\/[0-9a-z\\/]+\\.js)", + "480": "\\/adam\\/(cm8[0-9a-z_]+\\.js|detect)", + "483": "\\/resxcls[ax][0-9a-z_]*\\.js", + "484": "\\/gomez.+?\\.js", + "603": "pmetrics\\.performancing\\.com\\/(js|in\\.php|[0-9]*\\.js)", + "622": "websitealive[0-9]\\.com", + "635": "\\/econda.*\\.js", + "719": "facebook\\.com\\/(v2\\.0\\/)?(plugins|widgets)\\/.*\\.php", + "823": "xcdn\\.xgraph\\.net\\/([0-9]|partner\\.js)", + "871": "(amconf|core|adcontent)\\.videoegg\\.com\\/(siteconf|eap|alternates|ads)\\/", + "1010": "(\\.google\\.com\\/\\_\\/\\+1\\/fastbutton|plus\\.google\\.com\\/js\\/client:plusone\\.js)", + "1028": "static\\.ak\\.connect\\.facebook\\.com\\/.*\\.js\\.php", + "1033": "\\.1[12]2\\.2o7\\.net", + "1037": "s(c)?_code[0-9a-zA-Z_-]*(\\.[0-9a-zA-Z_-]*)?\\.js", + "1045": "\\/webtrends(.*)?\\.js", + "1053": "revsci\\.(.*)\\/gw\\.js", + "1067": "ucoz\\.(.*)\\/(stat|main)\\/", + "1273": "\\/opentag-(.*)\\.js", + "1451": "\\.thesearchagency\\.net\\/(.*)\\/tsaapi\\.js", + "1483": "api\\.flattr\\.com\\/(.*)\\/load\\.js", + "1975": "baynote(-observer)?([0-9]+)\\.js", + "2382": "\\.list-manage[1-9]\\.com\\/track\\/", + "2468": "(ea|eulerian).*\\/ea\\.js", + "2567": "\\/webtrekk(.*)\\.js", + "2757": "\\.2mdn\\.net\\/([0-9]+|ads|dot\\.gif|dynamic|viewad)", + "2770": "\\/mbox(.*)?\\.js", + "3156": "metrics\\..*\\.(com|net|org)\\/b\\/(s|ss)\\/", + "3266": "s3\\.amazonaws\\.com\\/aascript[\\.\\/a-zA-Z\\-]+\\/abandonaid[\\.\\/a-zA-Z\\-]+\\.js", + "3300": "(ga|xhr)\\.[0-9]+\\.js", + "3330": "^ox\\-d\\.", + "3346": "^trackuity\\.", + "3463": "js\\.honeybadger\\.io\\/v[0-9\\.]+\\/honeybadger\\.min\\.js", + "3478": "imonomy\\.com\\/script\\/[a-z0-9]+\\/preload\\.js", + "3506": "\\/mint\\/$", + "3533": "assets\\.adobedtm\\.com\\/[0-9a-z]+\\/satellitelib-", + "3644": "core\\.bunchbox\\.co\\/[a-z0-9]+\\.min\\.js", + "3645": "c\\.mouse3k\\.com\\/[a-z0-9]+\\.min\\.js", + "3651": "altabold1\\.com\\/js\\/[a-z0-9]+\\.js", + "3739": "static\\.richrelevance\\.net\\/[a-z0-9]+\\/rr\\.js", + "3743": "js\\.medi-8\\.net\\/t\\/[a-z0-9]+\\/[a-z0-9]+\\/[a-z0-9]+\\.js", + "3749": "cdn\\.branch\\.io\\/branch-v[0-9\\.]+\\.min\\.js", + "3760": "wa-na\\.unileversolutions\\.com\\/ct\\/[a-z0-9]+\\/u\\.js", + "3898": "jwpsrv\\.com\\/library\\/[a-z0-9]+\\.js", + "3902": "googleadservices.com\\/pagead\\/conversion\\/[a-z0-9]+\\/", + "3941": "player\\.hearstdigitalstudios\\.com\\/assets\\/player-[a-z0-9]+\\.js", + "3979": "plugin\\.aroad\\.in\\/c\\/[a-z0-9]+\\/", + "4013": "ads.thehiveworks.com/delivery/asyncjs.php", + "4025": "cookie-script\\.com\\/s\\/[a-z0-9]+\\.js", + "4069": "tms\\.truoptik\\.com\\/[a-z0-9]+\\/init\\.js", + "4075": "speedtrap\\.(\\.*)\\.com", + "4145": "cdn\\.yldr\\.io\\/yldr\\.v[0-9\\.]+\\.min\\.js", + "4203": "pbbl\\.co\\/r\\/[0-9]\\.js", + "4315": "widgets\\.trustedshops\\.com\\/js\\/[a-z0-9]+\\.js", + "4320": "cdn\\.brand-display\\.com\\/tr\\/knx8304\\/[a-z0-9]+\\.js", + "4339": "nzaza\\.com\\/seg\\/[0-9]+\\.js", + "4431": "code\\.poptm\\.com\\/[0-9]+\\.js", + "4474": "nexus\\.ensighten\\.com\\/[a-z0-9]+\\/bootstrap\\.js", + "4482": "pagead2\\.googlesyndication.com\\/pub-config\\/[a-z0-9]+\\/ca-pub-[a-z0-9]+\\.js", + "4500": "assets\\.adobedtm\\.com\\/[0-9a-z]+\\/scripts", + "4512": "nexus\\.ensighten\\.com.*\\/Bootstrap\\.js", + "4561": "cdn\\.dynamicyield\\.com\\/api\\/[a-z0-9]+\\/api_dynamic\\.js", + "4587": "noddus.com\\/assets\\/embedded_widget-[a-z0-9]+\\.js", + "4596": "nexus.ensighten.com\\/[a-z]+\\/prod\\/code\\/[a-z0-9]+\\.js", + "4597": "nexus\\.ensighten\\.com\\/[a-z]+\\/production\\/code\\/[a-z0-9]+\\.js", + "4599": "info\\.evidon\\.com\\/assets\\/site[0-9a-z]\\.png", + "4600": "servicer\\.mgid\\.com\\/[0-9]+", + "4638": "nexus\\.ensighten\\.com\\/[a-z]+\\/t-bat-prod\\/code\\/[a-z0-9]+\\.js", + "4639": "nexus\\.ensighten\\.com\\/[a-z]+\\/prod\\/serverComponent\\.php", + "4655": "nexus\\.ensighten\\.com\\/[a-z]+\\/production\\/serverComponent\\.php", + "4659": "wa-na.unileversolutions.com/na/dtm/[a-z0-9]+", + "4688": "assets\\.adobedtm\\.com\\/[0-9a-z]+\\/s-code-contents-[0-9a-z]+\\.js", + "4690": "videonow\\.ru\\/v2\\/[a-z0-9]+\\/vn_module\\.js", + "4723": "sdk\\.streamrail\\.com\\/vpaid\\/js\\/[a-z0-9]+\\/sam\\.js", + "4742": "collector-[a-z0-9]+\\.tvsquared\\.com\\/tv2track\\.js", + "4744": "a\\.espncdn\\.com\\/redesign\\/[a-z0-9]+\\.[a-z0-9]+\\.[a-z0-9]+\\/js\\/espn-analytics\\.js", + "4751": "ss\\.beeketing\\.com\\/shop\\/[a-z0-9]+\\.json", + "4752": "sdk\\.azureedge\\.net\\/js\\/1\\.beeketing\\.[a-z0-9]+\\.js", + "4761": "fo-static\\.omnitagjs\\.com\\/fo-static\\/build\\/[a-z0-9]+\\.chunk\\.js", + "4786": "app\\.backinstock\\.org\\/widget\\/[a-z0-9]+\\.js", + "4816": "static\\.dynamicyield\\.com\\/scripts\\/[a-z0-9]+\\/dy-coll-min\\.js", + "4856": "dc8xl0ndzn2cb\\.cloudfront\\.net\\/js\\/[a-z0-9]+\\/v1\\/keywee\\.js", + "4864": "\\/matomo\\.(js|php)", + "4880": "(ck|cg).yektanet.com" } }, - "version": 0 + "version": 544 } diff --git a/databases/click2play.json b/databases/click2play.json index 20ab9b3e3..39b44d82e 100644 --- a/databases/click2play.json +++ b/databases/click2play.json @@ -1,12 +1 @@ -{ - "click2play": [ - { - "selector": "g\\:plusone, .g-plusone, g\\:plus, .g-plus", - "button": "ghostery_plus.png", - "reinject": "true", - "bug": "Google+", - "aid": 6 - } - ], - "click2playVersion": 0 -} +{"copyright":"This proprietary database is the intellectual property of Ghostery, Inc. and is protected by copyright and other applicable laws. All rights to it are expressly reserved by Ghostery, Inc. You may not use this database or any portion thereof for any purpose that is not expressly granted in writing by Ghostery, Inc. All inquires should be sent to legal@ghostery.com. Ghostery, Inc. retains the sole discretion in determining whether or not to grant permission to use the database. Unauthorized use of this database, or any portion of it, will cause irreparable harm to Ghostery, Inc. and may result in legal proceedings against you, seeking monetary damages and an injunction against you, including the payment of legal fees and costs.","click2play":[{"button":"ghostery_twitter.png","bug":"Twitter Button","selector":".twitter-share-button, .twitter-follow-button, .twitter-hashtag-button, .twitter-mention-button","aid":605},{"bug":"Hubspot forms","frameBackground":"#fff","selector":"form[action*=forms\\.hubspot\\.com]","aid":2575},{"button":"ghostery_facebook.png","bug":"Facebook Like","alsoAllow":[93,922],"selector":"iframe[src*=facebook\\.com\\/plugins\\/like\\.php], .fb-like, fb\\:like","aid":464},{"button":"ghostery_facebook.png","bug":"Facebook Like via Facebook Connect","alsoAllow":[464,922],"selector":".fb-like, fb\\:like","aid":93},{"button":"ghostery_plus.png","bug":"Google+","selector":"g\\:plusone, .g-plusone, g\\:plus, .g-plus","reinject":"true","aid":615},{"button":"ghostery_pinterest.png","bug":"Pinterest pin","selector":".pin-it-button","reinject":"true","aid":868},{"button":"ghostery_linkedin.png","bug":"Linkedin","selector":"script[type$=IN\\/Share]","attach":"parentNode","reinject":"true","aid":697},{"button":"ghostery_stumble.png","bug":"StumbleUpon","selector":"su\\:badge","reinject":"true","aid":701},{"bug":"Facebook Social Plugins","alsoAllow":[93,922],"selector":"iframe[src*=facebook\\.com\\/plugins\\/video\\.php], iframe[src*=facebook\\.com\\/plugins\\/likebox\\.php], iframe[src*=facebook\\.com\\/plugins\\/post\\.php], iframe[src*=facebook\\.com\\/plugins\\/activity\\.php], .fb-like-box, fb\\:like-box, .fb-activity, fb\\:activity","attach":"parentNode","aid":464},{"bug":"Facebook Comments","alsoAllow":[93,922],"selector":"fb\\:comments, #fb-comments","aid":464},{"bug":"intense debate","frameBackground":"#fff","selector":"#idc-container","text":"click2play.comment_form","type":"comment","aid":92},{"bug":"disqus","frameBackground":"#fff","selector":"#disqus_thread","text":"click2play.comment_form","type":"comment","aid":85},{"bug":"disqus blogger","frameBackground":"#fff","selector":".post-outer .comments","text":"click2play.comment_form","type":"comment","aid":85},{"bug":"viafoura","frameBackground":"#fff","selector":".vf-comments, #hdn-vf-comments","text":"click2play.comment_form","type":"comment","aid":1869},{"bug":"livefyre","frameBackground":"#fff","alsoAllow":[1510],"selector":"#lf_comment_stream, #livefyre_comment_stream","text":"click2play.comment_form","type":"comment","aid":1420},{"bug":"echo","frameBackground":"#fff","selector":"#echo_stream_container","text":"click2play.comment_form","type":"comment","aid":140},{"bug":"bazaarvoice","selector":"#BVRRContainer, #BVReviewsContainer","type":"review","aid":974},{"bug":"liveclicker","selector":"#LiveclickerThumbnailDiv","attach":"parentNode","type":"video","aid":1556},{"bug":"brightcove","alsoAllow":[951],"selector":".BrightcoveExperience, .ui-video","attach":"parentNode","type":"video","aid":423},{"bug":"kaltura video player","selector":".kalturaVideoPlayerDetail, .kalturaVideoWrap","type":"video","aid":1394},{"button":"ghostery_vkontakte.png","bug":"VKontakte","selector":"#vk_like","aid":675},{"bug":"SoundCloud","selector":"iframe[src*=w\\.soundcloud\\.com\\/player\\/]","attach":"parentNode","type":"video","aid":1068},{"bug":"PollDaddy script","frameBackground":"#fff","selector":"script[src*=static\\.polldaddy\\.com\\/p\\/]","attach":"parentNode","type":"survey","aid":607},{"bug":"PollDaddy inline","frameBackground":"#fff","selector":"#PD_superContainer","type":"survey","aid":607},{"bug":"5min Media","frameBackground":"#fff","alsoAllow":[2207],"selector":"script[src*=pshared\\.5min\\.com\\/Scripts\\/]","attach":"parentNode","type":"video","aid":541},{"bug":"Perform Group","frameBackground":"#fff","selector":"script[src*=\\.eplayer\\.performgroup\\.com]","type":"video","aid":1255},{"bug":"Tealium","frameBackground":"#fff","selector":"#cbsNewsVideoPlayer, .wxnode-video-wrapper, .akamai-video","type":"video","aid":505},{"bug":"Videoplaza","frameBackground":"#fff","selector":"object[id*=player-object]","type":"video","aid":1746},{"bug":"Kaltura","frameBackground":"#fff","selector":"iframe[src*=cdnapisec\\.kaltura\\.com]","attach":"parentNode","type":"video","aid":1394},{"bug":"FreeWheel","frameBackground":"#fff","selector":".tpPlayer","type":"video","aid":380},{"bug":"NDN Player Suite","frameBackground":"#fff","selector":".ndn_embed[data-config-type='VideoPlayer/Single']","type":"video","aid":2183},{"bug":"Vidible","frameBackground":"#fff","selector":"script[src*=\\.vidible\\.tv]","type":"video","aid":2207},{"button":"ghostery_plus.png","bug":"Google Translate","frameBackground":"#fff","selector":"#google_translate_element","aid":2184},{"bug":"Facebook Comments via Facebook Connect","frameBackground":"#fff","alsoAllow":[464,922],"selector":"iframe[src*=facebook\\.com\\/plugins\\/comments\\.php],.fb-comments","type":"comment","aid":93},{"bug":"Taboola","frameBackground":"#fff","alsoAllow":[1746],"selector":".ooyala_embed","type":"video","aid":951},{"bug":"Brightcove Player","selector":"iframe[src*=players\\.brightcove\\.net\\/], .trb_embed","type":"video","aid":2451},{"bug":"Wistia","frameBackground":"#fff","selector":"iframe[src*=fast\\.wistia\\.net]","type":"video","aid":2336},{"bug":"TouchCommerce","frameBackground":"#fff","selector":".touchcommercebutton","aid":243},{"bug":"Brightcove Player","selector":"script[src*=players\\.brightcove\\.net\\/], .bc_container","type":"video","aid":2451},{"bug":"Janrain","frameBackground":"#fff","selector":".janrainShell","attach":"parentNode","aid":1510},{"bug":"AOL CDN","selector":".royalSlider","attach":"parentNode","aid":2325}],"click2playVersion":1533062235741} \ No newline at end of file diff --git a/databases/compatibility.json b/databases/compatibility.json index 0bcc5c085..68c77ae59 100644 --- a/databases/compatibility.json +++ b/databases/compatibility.json @@ -1,12 +1 @@ -{ - "compatibility": [ - { - "aid": 7, - "urls": [ - "example.com", - "test.com" - ] - } - ], - "compatibilityVersion": 0 -} +{"copyright":"This proprietary database is the intellectual property of Ghostery, Inc. and is protected by copyright and other applicable laws. All rights to it are expressly reserved by Ghostery, Inc. You may not use this database or any portion thereof for any purpose that is not expressly granted in writing by Ghostery, Inc. All inquires should be sent to legal@ghostery.com. Ghostery, Inc. retains the sole discretion in determining whether or not to grant permission to use the database. Unauthorized use of this database, or any portion of it, will cause irreparable harm to Ghostery, Inc. and may result in legal proceedings against you, seeking monetary damages and an injunction against you, including the payment of legal fees and costs.","compatibility":[{"aid":19,"urls":["abnamro.nl","anz.com","autoblog.com","bankofamerica.com","barclays.co.uk","corriere.it","eservice.libertymutual.com","get.adobe.com","homedepot.com","mijnpakket.postnl.nl","online.citi.com","samsung.com","store.apple.com","ticketmaster.be","ticketmaster.ca","ticketmaster.com","ticketmaster.de","ticketmaster.nl","ticketweb.co.uk","ticnet.se","walmart.com","wegmans.com","westernunion.com","wired.com"]},{"aid":41,"urls":["bloomberg.com/video*","cnet.com/videos*","fortune.com","imdb.com/video*","n-tv.de","telegraph.co.uk","theglobeandmail.com"]},{"aid":49,"urls":["aflac.com","hrsaccount.com","metoffice.gov.uk"]},{"aid":71,"urls":["abovetopsecret.com","dccouncil.us","forum.xda-developers.com","gametrailers.com","space.com","web.jhu.edu"]},{"aid":93,"urls":["formspring.me"]},{"aid":163,"urls":["menshealth.com","t-mobile.com"]},{"aid":224,"urls":["priceminister.com"]},{"aid":243,"urls":["my.t-mobile.com"]},{"aid":257,"urls":["cruiseamerica.com"]},{"aid":265,"urls":["espn.go.com","scores.espn.go.com"]},{"aid":283,"urls":["homedepot.com","sephora.com"]},{"aid":313,"urls":["cnnturk.com","tv.blesk.cz"]},{"aid":380,"urls":["espn.go.com","nhl.com","video.cnbc.com"]},{"aid":398,"urls":["newegg.com"]},{"aid":423,"urls":["sho.com","space.com"]},{"aid":449,"urls":["invest.ameritrade.com"]},{"aid":459,"urls":["my.t-mobile.com","target.com"]},{"aid":505,"urls":["cbsnews.com","crosswordclub.co.uk"]},{"aid":561,"urls":["bloomberg.com/video*","hbogo.com","pbs.org"]},{"aid":731,"urls":["pbs.org"]},{"aid":974,"urls":["homedepot.com","lowes.com","riogrande.com","sigmabeauty.com","wegmans.com"]},{"aid":989,"urls":["gametrailers.com","mtv.com/videos*"]},{"aid":1047,"urls":["login.ad.nl","login.demorgen.be","login.hln.be","login.trouw.nl","login.volkskrant.nl"]},{"aid":1154,"urls":["advanced.jhu.edu","blog.robinhood.com","codetriage.com","itwm.nl","localmotors.com","redeyedc.com","theverge.com"]},{"aid":1209,"urls":["play.pocketcasts.com"]},{"aid":1255,"urls":["wtatennis.com"]},{"aid":1394,"urls":["share.insider.thomsonreuters.com"]},{"aid":1420,"urls":["newyorker.com"]},{"aid":1434,"urls":["cheaptickets.com","orbitz.com"]},{"aid":1475,"urls":["businessinsider.com.au","lifehacker.com.au"]},{"aid":1510,"urls":["members.oreilly.com"]},{"aid":1552,"urls":["travelsmith.com"]},{"aid":1599,"urls":["interspar.at"]},{"aid":2175,"urls":["app.tophat.com"]},{"aid":2325,"urls":["engadget.com"]},{"aid":2746,"urls":["login.ad.nl","login.demorgen.be","login.hln.be","login.trouw.nl","login.volkskrant.nl"]}],"compatibilityVersion":1538673895606} \ No newline at end of file diff --git a/databases/surrogates.json b/databases/surrogates.json index 58332c5d1..0686a7756 100644 --- a/databases/surrogates.json +++ b/databases/surrogates.json @@ -1,14 +1,420 @@ { "surrogates": { - "1": "var urchinTracker=function(){},_gaq={push:function(){try {if(arguments[0][0]==='_link'){window.location.href=arguments[0][1];}}catch(er){}}},_gat={_createTracker:function(){}, _getTracker:function(){return{__noSuchMethod__:function(){},_link:function(o){if(o){location.href=o;}},_linkByPost:function(){return true;},_getLinkerUrl:function(o){return o;},_trackEvent:function(){}};}};" + + "1": "var urchinTracker=function(){},_gaq={push:function(){try {if(arguments[0][0]==='_link'){window.location.href=arguments[0][1];}}catch(er){}}},_gat={_createTracker:function(){}, _getTracker:function(){return{__noSuchMethod__:function(){},_link:function(o){if(o){location.href=o;}},_linkByPost:function(){return true;},_getLinkerUrl:function(o){return o;},_trackEvent:function(){}};}};", + + "2": "var _ga_ = document.querySelectorAll('script[src$=ga\\\\.js]')[0], ga_e = document.createEvent('Event'); ga_e.initEvent('load', true, true);_ga_.dispatchEvent(ga_e);", + + "3": "var COMSCORE={beacon:function(){},purge:function(){},__noSuchMethod__:function(){}};", + + "4": "var SavePageView=function(){},GetQueryStringValue=function(qs){if(qs=='freewheel')return'';var qs=qs.replace(/[\\[]/,\"\\\\\\[\").replace(/[\\]]/,\"\\\\\\]\");var regexS=\"[\\\\?&]\"+qs.toLowerCase()+'=([^&#]*)';var regex=new RegExp(regexS);var results=regex.exec(window.location.href.toLowerCase());if(results==null){return'';}else{return results[1];}}", + + "5": "var YWA={getTracker:function(){return{__noSuchMethod__:function(){}}},__noSuchMethod__:function(){}};", + + "6": "function omn_rmaction() {}", + + "7": "function geoip_country_code(){return 'A1';};function geoip_country_name(){return 'Anonymous Proxy';}", + + "8": "var geoip_city=geoip_region=geoip_region_name=geoip_latitude=geoip_longitude=geoip_postal_code=geoip_area_code=geoip_metro_code=function() { return; };", + + "9": "function _ghost(){return{record:function(){return{post:function(){}}},slideEvent:function(){}};};var nol_t=function(){return new _ghost();};", + + "10": "function wt_sendinfo(){};", + + "11": "function mktoMunchkinFunction(){}; var Munchkin={init:function(){}};", + + "12": "var stLight={subscribe:function(){},options:function(){}}; var SHARETHIS={__noSuchMethod__:function(){},addEntry:function(){return {__noSuchMethod__:function(){}};}};", + + "13": "var addthis={init:function(){}, layers:function(){}, toolbox:function(){}, button:function(){}, counter:function(){}};", + + "14": "var DM_addEncToLoc=function(){},DM_tag=function(){};", + + "16": "function cmCreateConversionEventTag(){};var _cm=function(){};_cm.prototype=function(){};_cm.prototype.addTP=function(){};_cm.prototype.writeImg=function(){};function cmCreateManualLinkClickTag(){};function cmSmartTagSet(){};function cmStartTagSet(){};function cmSendTagSet(){}; var cI=cX=cmSetupOther=cmSetClientID=cmCreatePageviewTag=cmCreateProductviewTag=cmSetupNormalization=cmCreateElementTag=function(){};", + + "17": "var ATGSvcs={l10n:{register:function(){}},rec_builder:function(){}};", + + "18": "var Ya=Ya||{};Ya.share=function(){var API={};API.updateCustomService=API.updateShareLink=function(){};return API;};", + + "19": "function geoplugin_request(){return '0.0.0.0';};function geoplugin_status(){return '404';};var geoplugin_city=geoplugin_region=geoplugin_regionCode=geoplugin_regionName=geoplugin_areaCode=geoplugin_dmaCode=geoplugin_countryCode=geoplugin_countryName=geoplugin_continentCode=geoplugin_latitude=geoplugin_longitude=function(){return'';};", + + "20": "FB={getLoginStatus:function(){},api:function(){},ui:function(){},Event:{subscribe:function(){}},UIServer:{},XFBML:{parse:function(){}},init:function(){},__noSuchMethod__:function(){}};", + + "21": "var fb = document.querySelectorAll('script[src$=connect\\\\.facebook\\\\.net\\\\/en_US\\\\/all\\\\.js]')[0], le = document.createEvent('Event');le.initEvent('load', true, true);fb.dispatchEvent(le);", + + "22": "function dcsMultiTrack(){};function WebTrends(){return{dcsMultiTrack:function(){},__noSuchMethod__:function(){},DCS:{__noSuchMethod__:function(){}},WT:{__noSuchMethod__:function(){}},DCSext:{__noSuchMethod__:function(){}}};};", + + "23": "function _hbRedirect(a,b,c){location.href=c};var _hbLink=function(){};", + + "24": "function mboxCreate(){}; function mboxTrack(){return true;}; function mboxTrackLink(a,b,c){if(c){window.location.href=c;}};", + + "25": "var s={__noSuchMethod__:function(){},Media:{__noSuchMethod__:function(){}}}; function s_gi(){return s;};", + + "26": "var s={__noSuchMethod__:function(){},track:function(){};t:function(){},tl:function(){},pageName:'',Media:{__noSuchMethod__:function(){}}}; function s_gi(){return s;} function setProductsIntoCookie(){} function customProductTabTracker(){};var s_analytics=s,s_account='',s_adobe=s/*adobe*/,s_omni=s/*abc*/;", + + "27": "var Reporting={};function tm_omn(){}; function linkCode(){/*csmonitor.com*/};var s_time={__noSuchMethod__:function(){},Media:{__noSuchMethod__:function(){}}}; var s=s||s_time; function s_gi(){return s;} function setProductsIntoCookie(){} function customProductTabTracker(){};var s_analytics=s,s_account='';function s_beginCheckout(){};", + + "28": "AC.Tracking.pageName=function(){};", + + "29": "var gapi={plusone:{render:function(){},go:function(){}}};", + + "30": "var gigya={accounts:{getAccountInfo:function(){},addEventHandlers:function(){}},comments:{getComments:function(){},getTopStreams:function(){return null;},showCommentsUI:function(){return null;}},socialize:{UserAction:function(){return {setUserMessage:function(){},setDescription:function(){},setTitle:function(){},setLinkBack:function(){},addMediaItem:function(){},addActionLink:function(){}};},addEventHandlers:function(){return null;},showLoginUI:function(){return null;},showShareBarUI:function(){return null;},showCommentsUI:function(){return null;},showFollowBarUI:function(){return null;},getUserInfo:function(){return null;},getProviderShareCounts:function(){return null;}}}; gigya.services = gigya;", + + "31": "function quantserve(){}", + + "32": "function st_go(){};function linkclick(event) {};function linktracker_init(b, p) {};function linktracker_record(event) {};", + + "33": "var mpq={track:function(a,b,c){if(typeof c=='function'){window.setTimeout(c,50);}},init:function(){},track_links:function(){},track_forms:function(){}};", + + "34": "var OAS_RICH=OA_show=function(){};", + + "35": "var GA_googleFillSlot=GA_googleFetchAds=GA_googleAddSlot=GS_googleEnableAllServices=GS_googleAddAdSenseService=function(){};", + + "36": "var LM = {init:function(){},complete:function(func){func();}};", + + "37": "Typekit={};CN.stats={omniture:{setContentType:function(){},setAuthorName:function(){},doPageTracking:function(){},setPageName:function(){return{setPaginationValue:function(){return{trackAjaxPage:function(){}}}}}}};", + + "38": "var googletag={};googletag.adsRenderedInfo={get:function(){},set:function(){}};googletag.cmd={};googletag.cmd.push=function(){};googletag.enableServices=function(){};googletag.defineSlot=function(){return googletag};googletag.addService=function(){return googletag};googletag.companionAds=function(){return googletag};googletag.pubads=function(){return googletag};googletag.refresh=function(){};googletag.defineOutOfPageSlot=function(){};googletag.setTargeting=function(){};googletag.display=function(){};googletag.setRefreshUnfilledSlots=function(){};googletag.enableAsyncRendering=function(){};googletag.enableSyncRendering=function(){};googletag.enableSingleRequest=function(){};googletag.collapseEmptyDivs=function(){};", + + "40": "var Gravatar={my_hash:'',profile_cb:function(){},init: function(){}};", + + "41": "var Sailthru={setup:function(){}};", + + "42": "var pi={Track:function(){}};", + + "43": "var mm_variables='',mm_rules={do_replacement_directories:function(){}};function enable_mm_directories(){};", + + "44": "var xt_adc=xt_click=xt_med=xt_rm=function(){return true;};", + + "45": "var $BV={configure:function(){},ui:function(){}};", + + "46": "var brightcove={createExperiences:function(){}};", + + "47": "function adSetAdURL(){};function adSetMOAT(){};function adSetOthAT(){};function htmlAdWH(){};", + + "48": "var utag={data:{},handler:{trigger:function(){}},track:function(){},view:function(){},link:function(){}};", + + "49": "optimizely={push:function(){},activeExperiments:[],variationMap:[]};", + + "50": "cxApi={setCookiePath:function(){},chooseVariation:function(){}};", + + "51": "iom={count:function(){},c:function(){},i:function(){},init:function(){},e:function(){},event:function(){},h:function(){},hybrid:function(){},setMultiIdentifier:function(){},smi:function(){}};", + + "52": "window.dataLayer=window.dataLayer||{};window.dataLayer.push=function(o){if(o&&o.eventCallback){o.eventCallback();}};", + + "53": "!function(){for(var e=document.getElementsByClassName('js-event-tracking'),n=0;n { + console.log('THEME DATA', conf.account.themeData); + console.log('CALLABACK DATA', conf.account.themeData[conf.current_theme]); callback(conf.account.themeData[conf.current_theme]); }); return true; diff --git a/src/classes/Account.js b/src/classes/Account.js index de0dc04ec..0d92aa871 100644 --- a/src/classes/Account.js +++ b/src/classes/Account.js @@ -114,7 +114,7 @@ class Account { logout = () => ( new RSVP.Promise((resolve, reject) => { chrome.cookies.get({ - url: 'http://ghostery.test', + url: `https://${GHOSTERY_DOMAIN}.com`, name: 'csrf_token', }, (cookie) => { if (cookie === null) { return reject(); } @@ -193,29 +193,53 @@ class Account { )) ) - getTheme = name => ( - this._getUserID() - .then(() => { - const now = Date.now(); - const { themeData } = conf.account; - if (!themeData || !themeData[name]) { return true; } - const { timestamp } = themeData[name]; - return now - timestamp > 86400000; // true if 24hrs have passed - }) - .then((shouldGet) => { - if (!shouldGet) { - console.log('conf.account.themeData ', conf.account.themeData); - return conf.account.themeData[name].css; - } - return api.get('themes', `${name}.css`) - .then((res) => { - console.log('res: ', res); - const { css } = build(normalize(res), 'themes', res.data.id); - this._setThemeData({ name, css }); - return css; - }); - }) - ) + getTheme = (name) => { + const now = Date.now(); + const { themeData } = conf.account; + let shouldGet = false; + if (!themeData || !themeData[name]) { + shouldGet = true; + } else { + const { timestamp } = themeData[name]; + shouldGet = (now - timestamp > 86400000); // true if 24hrs have passed + } + let css = ''; + if (shouldGet) { + if (name === 'midnight-theme') { + css = '../../dist/css/midnight_theme.css'; + } else { + console.log('PALM'); + css = '../../dist/css/palm_theme.css'; + } + this._setThemeData({ name, css }); + } else { + css = conf.account.themeData[name].css; + } + + return Promise.resolve(css); + } + + // getTheme = name => ( + // this._getUserID() + // .then(() => { + // const now = Date.now(); + // const { themeData } = conf.account; + // if (!themeData || !themeData[name]) { return true; } + // const { timestamp } = themeData[name]; + // return now - timestamp > 86400000; // true if 24hrs have passed + // }) + // .then((shouldGet) => { + // if (!shouldGet) { + // return conf.account.themeData[name].css; + // } + // return api.get('themes', `${name}.css`) + // .then((res) => { + // const { css } = build(normalize(res), 'themes', res.data.id); + // this._setThemeData({ name, css }); + // return css; + // }); + // }) + // ) sendValidateAccountEmail = () => ( this._getUserID() @@ -314,7 +338,7 @@ class Account { return; } chrome.cookies.get({ - url: 'http://ghostery.test', + url: `https://${GHOSTERY_DOMAIN}.com`, name: 'user_id', }, (cookie) => { if (cookie !== null) { @@ -404,8 +428,8 @@ class Account { chrome.cookies.set({ name, value, - url: 'http://ghostery.test', - domain: '.ghostery.test', + url: `https://${GHOSTERY_DOMAIN}.com`, + domain: `.${GHOSTERY_DOMAIN}.com`, expirationDate, secure: true, httpOnly, @@ -504,7 +528,7 @@ class Account { _getUserIDFromCookie = () => ( new Promise((resolve, reject) => { chrome.cookies.get({ - url: 'http://ghostery.test', + url: `https://${GHOSTERY_DOMAIN}.com`, name: 'user_id', }, (cookie) => { if (cookie) { @@ -543,7 +567,7 @@ class Account { const cookies = ['user_id', 'access_token', 'refresh_token', 'csrf_token', 'AUTH']; cookies.forEach((name) => { chrome.cookies.remove({ - url: 'http://ghostery.test', + url: `https://${GHOSTERY_DOMAIN}.com`, name, }, () => { log(`Removed cookie with name: ${name}`); diff --git a/src/classes/Globals.js b/src/classes/Globals.js index 4b068d903..07529d760 100644 --- a/src/classes/Globals.js +++ b/src/classes/Globals.js @@ -56,9 +56,8 @@ class Globals { this.CDN_SUB_DOMAIN = this.DEBUG ? 'staging-cdn' : 'cdn'; this.APPS_SUB_DOMAIN = this.DEBUG ? 'staging-apps' : 'apps'; this.GCACHE_SUB_DOMAIN = this.DEBUG ? 'staging-gcache' : 'gcache'; - this.AUTH_SERVER = 'http://consumerapi.ghostery.test'; - this.ACCOUNT_SERVER = 'http://accountapi.ghostery.test'; - + this.AUTH_SERVER = `https://consumerapi.${this.GHOSTERY_DOMAIN}.com`; + this.ACCOUNT_SERVER = `https://accountapi.${this.GHOSTERY_DOMAIN}.com`; // extension IDs this.GHOSTERY_TAB_CHROME_PRODUCTION_ID = 'plmapebanmikcofllaaddgeocahboejc'; this.GHOSTERY_TAB_CHROME_PRERELEASE_ID = 'fenghpkndeggbbpjeojffgbmdmnaelmf'; @@ -97,7 +96,7 @@ class Globals { 'alert_expanded', 'block_by_default', 'cliqz_module_whitelist', - 'current_theme', + // 'current_theme', 'enable_ad_block', 'enable_anti_tracking', 'enable_autoupdate', @@ -129,6 +128,7 @@ class Globals { ]; this.SESSION = { + current_theme: 'default', paused_blocking: false, paused_blocking_timeout: 0, abtests: {}, diff --git a/src/utils/api.js b/src/utils/api.js index c9e44d5d5..661749145 100644 --- a/src/utils/api.js +++ b/src/utils/api.js @@ -142,7 +142,7 @@ class Api { _getCsrfCookie = (csrfDomain = this.config.CSRF_DOMAIN) => ( new Promise((resolve) => { chrome.cookies.get({ - url: 'http://ghostery.test', + url: `https://${csrfDomain}.com`, name: 'csrf_token', }, cookie => resolve((cookie !== null) ? cookie.value : '')); }) diff --git a/src/utils/utils.js b/src/utils/utils.js index e4f261523..037a80631 100644 --- a/src/utils/utils.js +++ b/src/utils/utils.js @@ -555,7 +555,7 @@ export function fetchLocalJSONResource(url) { */ export function injectScript(tabId, scriptfile, cssfile, runAt) { return new Promise((resolve, reject) => { - chrome.tabs.executeScript(tabId, { file: scriptfile, runAt }, () => { + chrome.tabs.executeScript(tabId || 0, { file: scriptfile, runAt }, () => { if (chrome.runtime.lastError) { log('injectScript error', chrome.runtime.lastError); reject(new Error(chrome.runtime.lastError)); diff --git a/webpack.config.js b/webpack.config.js index 17d53f522..00a6f0490 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -67,6 +67,8 @@ module.exports = { panel: [`${SASS_DIR}/panel.scss`], panel_android: [`${SASS_DIR}/panel_android.scss`], purplebox_styles: [`${SASS_DIR}/purplebox.scss`], + palm_theme: [`${SASS_DIR}/palm-theme.scss`], + midnight_theme: [`${SASS_DIR}/midnight-theme.scss`], }, output: { filename: '[name].js', From 0e0beef635960a922ac3532a3096e09cb7bb0e12 Mon Sep 17 00:00:00 2001 From: Serge Zarembsky Date: Thu, 19 Mar 2020 10:51:49 -0400 Subject: [PATCH 07/48] Adding local themes --- app/scss/midnight-theme.scss | 365 ++++++++++++++++++++++++++++++++ app/scss/palm-theme.scss | 390 +++++++++++++++++++++++++++++++++++ 2 files changed, 755 insertions(+) create mode 100644 app/scss/midnight-theme.scss create mode 100644 app/scss/palm-theme.scss diff --git a/app/scss/midnight-theme.scss b/app/scss/midnight-theme.scss new file mode 100644 index 000000000..4d03f88b1 --- /dev/null +++ b/app/scss/midnight-theme.scss @@ -0,0 +1,365 @@ +/** + * Ghostery Sass Importer + * + * Select the SASS partials to be compiled for this project. SASS files + * are compiled and included in the order they are listed. + * + * Ghostery Browser Extension + * https://www.ghostery.com/ + * + * Copyright 2018 Ghostery, Inc. All rights reserved. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0 + */ + +// This stylesheet contains multiple sets of styles for the same components +// This is necessary because +// * the extension CSS for those components was refactored after this stylesheet was first created +// * multiple extension versions may be in production at the same time depending on browser-specific issues / approval processes + +// Version 8.4.8 and greater, consider this dark-blue theme + +$background: #124559; +$summary_text: #FFFFFF; +$enabled_feature: #EFF6E0; +$bright_enabled_feature: #F7FAEF; +$paled_enabled_feature: #819D9C; +$disabled_feature: #70888F; +$paled_disabled_feature: #A9B8BC; +$bright_disabled_feature: #BDC8CB; +$caption: #F7F7F7; +$tab_inactive: #B6C4CA; + +// Function helper with color variables +@function url-friendly-colour($color) { + @return '%23' + str-slice('#{$color}', 2, -1) +} + +// Used in Cliqz Features +@function buildIconAntiTracking($stroke-color) { + @return url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cg%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3Ccircle%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2223%22/%3E%3Cpath%20d%3D%22M25.213%2015.032a.721.721%200%200%200-.426%200l-9.149%202.427a.82.82%200%200%200-.638.809c.043%206.514%203.532%2012.56%209.532%2016.604A.859.859%200%200%200%2025%2035c.17%200%20.34-.043.468-.128%206-4.045%209.49-10.09%209.532-16.604a.82.82%200%200%200-.638-.81l-9.15-2.426z%22/%3E%3C/g%3E%3C/svg%3E'); +} + +// Used in Cliqz Features +@function buildIconAdBlocking($stroke-color) { + @return url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cg%3E%3Ccircle%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2223%22/%3E%3Cpath%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20fill-rule%3D%22nonzero%22%20transform%3D%22translate%2814%2C14%29%22%20d%3D%22M14.873%201.312l-7.973.07-5.588%205.686.07%207.973%205.686%205.589%207.973-.07%205.589-5.687-.07-7.973-5.687-5.588z%22/%3E%3Cpath%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%222%22%20d%3D%22M31.5%2C18.5%20L18.5%2C31.5%22/%3E%3C/g%3E%3C/svg%3E'); +} + +// Used in Cliqz Features +@function buildIconSmartBlocking($stroke-color) { + @return url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Ccircle%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2223%22/%3E%3Cpath%20fill%3D%22#{url-friendly-colour($stroke-color)}%22%20d%3D%22M31.977%2020.24c-.097%201.677-.697%203.156-1.654%204.514-.43.61-.867%201.217-1.285%201.84-.597.887-1.074%201.832-1.258%202.898-.03.175-.141.162-.263.162l-2.525-.001c-.832%200-1.663-.005-2.497.003-.181.002-.246-.05-.283-.238-.197-1.031-.657-1.954-1.241-2.818-.497-.733-1.015-1.454-1.514-2.187A8.257%208.257%200%200%201%2018.011%2020c-.112-2.82%201.486-5.279%204.185-6.42%203.458-1.462%207.547.004%209.166%203.293.521%201.062.682%202.19.615%203.365zM22.352%2032.3v-.63h5.305v.63h-5.305zm4.76%202.681h-4.216c-.508%200-.602-.108-.536-.653h5.28c.075.537-.022.653-.529.653zm6.238-18.576c-1.449-3.169-3.966-4.928-7.385-5.335-2.913-.348-5.446.61-7.511%202.673-2.305%202.306-2.858%205.124-2.19%208.241.351%201.63%201.149%203.046%202.104%204.39.438.617.869%201.243%201.271%201.883.372.593.635%201.241.661%201.946.03.814.008%201.627.008%202.441h.032c0%20.676-.001%201.351.002%202.027.006%201.204.952%202.22%202.15%202.3.158.01.21.056.25.214a2.322%202.322%200%200%200%204.524-.007c.034-.14.072-.194.225-.206a2.329%202.329%200%200%200%202.174-2.337c0-1.257.01-2.515-.003-3.774-.011-.941.208-1.816.706-2.61.402-.64.832-1.268%201.274-1.88%201.263-1.757%202.155-3.653%202.323-5.844.109-1.423-.018-2.816-.615-4.122z%22/%3E%3Cpath%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%221.5%22%20fill%3D%22none%22%20d%3D%22M25.096%2018.214a.324.324%200%200%200-.192%200l-4.117%201.092a.37.37%200%200%200-.287.364c.02%202.932%201.59%205.652%204.29%207.472a.387.387%200%200%200%20.21.058c.077%200%20.153-.02.21-.058%202.7-1.82%204.27-4.54%204.29-7.472a.37.37%200%200%200-.287-.364l-4.117-1.092z%22/%3E%3C/svg%3E'); +} + +// Used in Cliqz Features +@function buildIconDash($stroke-color) { + @return url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%2210%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%223%22%20d%3D%22M1%205h8%22/%3E%3C/svg%3E'); +} + +// Left caret SVG +@function buildLeftCaret($color) { + @return url('data:image/svg+xml;charset%3dUS-ASCII,%3Csvg%20width%3D%226%22%20height%3D%2210%22%20xmlns%3D%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1.845%205l4.052-3.938A.313.313%200%200%200%206%20.832a.312.312%200%200%200-.103-.23L5.381.1a.33.33%200%200%200-.474%200L.103%204.77A.313.313%200%200%200%200%205c0%20.087.034.164.103.23L4.907%209.9a.33.33%200%200%200%20.474%200l.516-.501A.313.313%200%200%200%206%209.169a.313.313%200%200%200-.103-.231L1.845%205z%22%20fill%3D%22#{_url-friendly-color($color)}%22%20fill-rule%3D%22evenodd%22/%3E%3C/svg%3E'); +} + +// Right caret SVG +@function buildRightCaret($color) { + @return url('data:image/svg+xml;charset%3dUS-ASCII,%3Csvg%20width%3D%226%22%20height%3D%2210%22%20xmlns%3D%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M4.155%205L.103%201.062A.313.313%200%200%201%200%20.832C0%20.745.034.668.103.602L.619.1a.33.33%200%200%201%20.474%200l4.804%204.67A.313.313%200%200%201%206%205a.313.313%200%200%201-.103.23L1.093%209.9a.33.33%200%200%201-.474%200l-.516-.501A.313.313%200%200%201%200%209.169c0-.087.034-.164.103-.231L4.155%205z%22%20fill%3D%22#{_url-friendly-color($color)}%22%20fill-rule%3D%22evenodd%22/%3E%3C/svg%3E'); +} + +// This BEM-style CSS is compatible with extension versions 8.4.0 and higher +.Summary { + background-color: $background; + + .sub-component.not-scanned { + .not-scanned-header { + color: $summary_text; + } + .not-scanned-text { + color: $summary_text; + } + } +} + +.Summary--condensed { + background-color: $background; + + .Summary__totalTrackerCountContainer { + color: $summary_text; + } +} + +.Summary__statsButton.Summary__statsButton--absolutely-positioned, +.Summary__rewardsIcon.Summary__rewardsIcon--absolutely-positioned { + background-color: initial; + + path { + fill: #FFF; + stroke: #FFF; + } +} + +.SummaryPageHost { + color: $summary_text; +} + +.SummaryPageStat { + color: $summary_text; +} + +.DonutGraph__textCountContainer { + color: $summary_text; +} + +.CliqzFeature--inactive.clickable { + .CliqzFeature__status { color: $disabled_feature }; + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($disabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($disabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($disabled_feature) }; + .CliqzFeature__feature-name { color: $disabled_feature }; + + &:hover { + .CliqzFeature__status { color: $bright_disabled_feature; } + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($bright_disabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($bright_disabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($bright_disabled_feature) }; + .CliqzFeature__feature-name { color: $bright_disabled_feature; } + } +} + +.CliqzFeature--active.clickable { + .CliqzFeature__status { color: $enabled_feature }; + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($enabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($enabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($enabled_feature) }; + .CliqzFeature__feature-name { color: $enabled_feature }; + + &:hover { + .CliqzFeature__status { color: $bright_enabled_feature; } + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($bright_enabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($bright_enabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($bright_enabled_feature) }; + .CliqzFeature__feature-name { color: $bright_enabled_feature; } + } +} + +.CliqzFeature--inactive.not-clickable { + .CliqzFeature__status { color: $paled_disabled_feature }; + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($paled_disabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($paled_disabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($paled_disabled_feature) }; + .CliqzFeature__feature-name { color: $paled_disabled_feature }; +} + +.CliqzFeature--active.not-clickable { + .CliqzFeature__status { color: $paled_enabled_feature }; + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($paled_enabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($paled_enabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($paled_enabled_feature) }; + .CliqzFeature__feature-name { color: $paled_enabled_feature }; +} + +// This CSS is compatible with extension versions 8.3.4 and lower +#content-summary { + background-color: $background; + &.expert.condensed { + background-color: $background; + .total-tracker-count { + color: $summary_text; + } + } + + .page-host { + color: $summary_text; + } + .page-stats { + color: $summary_text; + } + + .sub-component.donut-graph .graph-text { + color: $summary_text; + } + + .sub-component.cliqz-features { + .count { + color: rgba($disabled_feature, 0); + background-image: buildIconDash($disabled_feature); + } + .active .count { + color: $enabled_feature; + background: none !important; + } + &.inactive .count { + color: rgba($paled_disabled_feature, 0); + background-image: buildIconDash($paled_disabled_feature); + } + &.inactive .active .count { + color: $paled_enabled_feature; + background: none !important; + } + + .anti-tracking .icon { background-image: buildIconAntiTracking($disabled_feature); } + .active.anti-tracking .icon { background-image: buildIconAntiTracking($enabled_feature); } + &.inactive .anti-tracking .icon { background-image: buildIconAntiTracking($paled_disabled_feature); } + &.inactive .active.anti-tracking .icon { background-image: buildIconAntiTracking($paled_enabled_feature); } + + .ad-blocking .icon { background-image: buildIconAdBlocking($disabled_feature); } + .active.ad-blocking .icon { background-image: buildIconAdBlocking($enabled_feature); } + &.inactive .ad-blocking .icon { background-image: buildIconAdBlocking($paled_disabled_feature); } + &.inactive .active.ad-blocking .icon { background-image: buildIconAdBlocking($paled_enabled_feature); } + + .smart-blocking .icon { background-image: buildIconSmartBlocking($disabled_feature); } + .active.smart-blocking .icon { background-image: buildIconSmartBlocking($enabled_feature); } + &.inactive .smart-blocking .icon { background-image: buildIconSmartBlocking($paled_disabled_feature); } + &.inactive .active.smart-blocking .icon { background-image: buildIconSmartBlocking($paled_enabled_feature); } + + .feature-name { + color: $disabled_feature; + } + .active .feature-name { color: $enabled_feature; } + &.inactive .feature-name { color: $paled_disabled_feature; } + &.inactive .active .feature-name { color: $paled_enabled_feature; } + + .cliqz-feature.clickable:hover { + &.anti-tracking .icon { background-image: buildIconAntiTracking($bright_disabled_feature); } + &.ad-blocking .icon { background-image: buildIconAdBlocking($bright_disabled_feature); } + &.smart-blocking .icon { background-image: buildIconSmartBlocking($bright_disabled_feature); } + .feature-name { color: $bright_disabled_feature; } + } + .cliqz-feature.active.clickable:hover { + .count { + color: $bright_enabled_feature; + } + &.anti-tracking .icon { background-image: buildIconAntiTracking($bright_enabled_feature); } + &.ad-blocking .icon { background-image: buildIconAdBlocking($bright_enabled_feature); } + &.smart-blocking .icon { background-image: buildIconSmartBlocking($bright_enabled_feature); } + .feature-name { color: $bright_enabled_feature; } + } + } + .sub-component.not-scanned { + .not-scanned-header { + color: $summary_text; + } + .not-scanned-text { + color: $summary_text; + } + } + .stats-button path { + fill: #FFF; + stroke: #FFF; + } +} + +// This CSS is compatible with all extension versions as of 8.4.1 +#ghostery-header { + .header-tab { + color: $summary_text; + background-color: $tab_inactive; + &.active { + color: $summary_text; + background-color: $background; + } + &:last-of-type.active { + background-color: $summary_text; + color: $background; + } + } + .top-bar { + background-color: $caption; + color: $background; + .subscriber-badge { + path {fill: $background;} + path.text {fill: $caption;} + } + .header-logo { + .back-arrow { + path { + fill: $background; + } + } + .logo-icon { + path { + fill: $background; + } + svg > g > path:nth-child(3) { + fill: $caption; + } + } + } + .header-kebab { + path { + fill: $background; + } + } + .profile-svg { + g > g { + fill: #124559; + stroke: #124559; + } + } + } +} + +#content-stats { + .stats-top-header { + .stats-top-header-icon.trackersSeen g { + fill: #124559; + } + .stats-top-header-icon.trackersBlocked path { + &:first-of-type { + fill: #FFF; + stroke: #FFF; + } + &:nth-of-type(2) { + stroke: #124559; + } + &:last-of-type { + fill: #124559; + } + } + .stats-top-header-icon.trackersAnonymized path { + stroke: #124559; + } + .stats-top-header-icon.adsBlocked path { + fill: #124559; + stroke: #124559; + } + } + .stats-top-header-reset { + color: #124559; + } + .tab-header { + background-color: #124559; + .tab-container > .tab { + background-color: #7f98a2; + } + } + .tile-container > .tile > .tile-value { + .tile-value-content { + color: #124559; + } + &.active > .active-underline { + background-color: #124559; + } + } + .modal-container { + .modal-hollow-button { + border: #124559 1px solid; + color: #124559; + } + .modal-filled-button { + border: #124559 1px solid; + background-color:#124559;; + } + } +} + +.line-graph-container { + #stats-back { + background-image: buildLeftCaret(#124559); + } + #stats-forward { + background-image: buildRightCaret(#124559); + } +} + diff --git a/app/scss/palm-theme.scss b/app/scss/palm-theme.scss new file mode 100644 index 000000000..7f13d4002 --- /dev/null +++ b/app/scss/palm-theme.scss @@ -0,0 +1,390 @@ +/** + * Ghostery Sass Importer + * + * Select the SASS partials to be compiled for this project. SASS files + * are compiled and included in the order they are listed. + * + * Ghostery Browser Extension + * https://www.ghostery.com/ + * + * Copyright 2018 Ghostery, Inc. All rights reserved. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0 + */ + +// This stylesheet contains multiple sets of styles for the same components +// This is necessary because +// * the extension CSS for those components was refactored after this stylesheet was first created +// * multiple extension versions may be in production at the same time depending on browser-specific issues / approval processes + +$background: #124559; +$summary_text: #FFFFFF; +$enabled_feature: #EFF6E0; +$bright_enabled_feature: #F7FAEF; +$paled_enabled_feature: #819D9C; +$disabled_feature: #70888F; +$paled_disabled_feature: #A9B8BC; +$bright_disabled_feature: #BDC8CB; +$caption: #F7F7F7; +$tab_inactive: #B6C4CA; + +// Colors +$palm_green: #2c5114; +$off_green_palm_green: #456431; + +// Theme framework variables +$enabled_feature: #87f0fb; +$tab_inactive: #456431; +$tab_active: #313930; +$tracker-list: #172a0b; + +// Function helper with color variables +@function url-friendly-colour($color) { + @return '%23' + str-slice('#{$color}', 2, -1) +} + +// Used in Cliqz Features +@function buildIconAntiTracking($stroke-color) { + @return url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cg%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3Ccircle%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2223%22/%3E%3Cpath%20d%3D%22M25.213%2015.032a.721.721%200%200%200-.426%200l-9.149%202.427a.82.82%200%200%200-.638.809c.043%206.514%203.532%2012.56%209.532%2016.604A.859.859%200%200%200%2025%2035c.17%200%20.34-.043.468-.128%206-4.045%209.49-10.09%209.532-16.604a.82.82%200%200%200-.638-.81l-9.15-2.426z%22/%3E%3C/g%3E%3C/svg%3E'); +} + +// Used in Cliqz Features +@function buildIconAdBlocking($stroke-color) { + @return url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cg%3E%3Ccircle%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2223%22/%3E%3Cpath%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20fill-rule%3D%22nonzero%22%20transform%3D%22translate%2814%2C14%29%22%20d%3D%22M14.873%201.312l-7.973.07-5.588%205.686.07%207.973%205.686%205.589%207.973-.07%205.589-5.687-.07-7.973-5.687-5.588z%22/%3E%3Cpath%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%222%22%20d%3D%22M31.5%2C18.5%20L18.5%2C31.5%22/%3E%3C/g%3E%3C/svg%3E'); +} + +// Used in Cliqz Features +@function buildIconSmartBlocking($stroke-color) { + @return url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Ccircle%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20cx%3D%2225%22%20cy%3D%2225%22%20r%3D%2223%22/%3E%3Cpath%20fill%3D%22#{url-friendly-colour($stroke-color)}%22%20d%3D%22M31.977%2020.24c-.097%201.677-.697%203.156-1.654%204.514-.43.61-.867%201.217-1.285%201.84-.597.887-1.074%201.832-1.258%202.898-.03.175-.141.162-.263.162l-2.525-.001c-.832%200-1.663-.005-2.497.003-.181.002-.246-.05-.283-.238-.197-1.031-.657-1.954-1.241-2.818-.497-.733-1.015-1.454-1.514-2.187A8.257%208.257%200%200%201%2018.011%2020c-.112-2.82%201.486-5.279%204.185-6.42%203.458-1.462%207.547.004%209.166%203.293.521%201.062.682%202.19.615%203.365zM22.352%2032.3v-.63h5.305v.63h-5.305zm4.76%202.681h-4.216c-.508%200-.602-.108-.536-.653h5.28c.075.537-.022.653-.529.653zm6.238-18.576c-1.449-3.169-3.966-4.928-7.385-5.335-2.913-.348-5.446.61-7.511%202.673-2.305%202.306-2.858%205.124-2.19%208.241.351%201.63%201.149%203.046%202.104%204.39.438.617.869%201.243%201.271%201.883.372.593.635%201.241.661%201.946.03.814.008%201.627.008%202.441h.032c0%20.676-.001%201.351.002%202.027.006%201.204.952%202.22%202.15%202.3.158.01.21.056.25.214a2.322%202.322%200%200%200%204.524-.007c.034-.14.072-.194.225-.206a2.329%202.329%200%200%200%202.174-2.337c0-1.257.01-2.515-.003-3.774-.011-.941.208-1.816.706-2.61.402-.64.832-1.268%201.274-1.88%201.263-1.757%202.155-3.653%202.323-5.844.109-1.423-.018-2.816-.615-4.122z%22/%3E%3Cpath%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%221.5%22%20fill%3D%22none%22%20d%3D%22M25.096%2018.214a.324.324%200%200%200-.192%200l-4.117%201.092a.37.37%200%200%200-.287.364c.02%202.932%201.59%205.652%204.29%207.472a.387.387%200%200%200%20.21.058c.077%200%20.153-.02.21-.058%202.7-1.82%204.27-4.54%204.29-7.472a.37.37%200%200%200-.287-.364l-4.117-1.092z%22/%3E%3C/svg%3E'); +} + +// Used in Cliqz Features +@function buildIconDash($stroke-color) { + @return url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%2210%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20stroke%3D%22#{url-friendly-colour($stroke-color)}%22%20stroke-width%3D%223%22%20d%3D%22M1%205h8%22/%3E%3C/svg%3E'); +} + +// Left caret SVG +@function buildLeftCaret($color) { + @return url('data:image/svg+xml;charset%3dUS-ASCII,%3Csvg%20width%3D%226%22%20height%3D%2210%22%20xmlns%3D%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1.845%205l4.052-3.938A.313.313%200%200%200%206%20.832a.312.312%200%200%200-.103-.23L5.381.1a.33.33%200%200%200-.474%200L.103%204.77A.313.313%200%200%200%200%205c0%20.087.034.164.103.23L4.907%209.9a.33.33%200%200%200%20.474%200l.516-.501A.313.313%200%200%200%206%209.169a.313.313%200%200%200-.103-.231L1.845%205z%22%20fill%3D%22#{_url-friendly-color($color)}%22%20fill-rule%3D%22evenodd%22/%3E%3C/svg%3E'); +} + +// Right caret SVG +@function buildRightCaret($color) { + @return url('data:image/svg+xml;charset%3dUS-ASCII,%3Csvg%20width%3D%226%22%20height%3D%2210%22%20xmlns%3D%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M4.155%205L.103%201.062A.313.313%200%200%201%200%20.832C0%20.745.034.668.103.602L.619.1a.33.33%200%200%201%20.474%200l4.804%204.67A.313.313%200%200%201%206%205a.313.313%200%200%201-.103.23L1.093%209.9a.33.33%200%200%201-.474%200l-.516-.501A.313.313%200%200%201%200%209.169c0-.087.034-.164.103-.231L4.155%205z%22%20fill%3D%22#{_url-friendly-color($color)}%22%20fill-rule%3D%22evenodd%22/%3E%3C/svg%3E'); +} + +// This BEM-style CSS is compatible with extension versions 8.4.0 and higher +.Summary { + background-color: $background; + + .sub-component.not-scanned { + .not-scanned-header { + color: $summary_text; + } + .not-scanned-text { + color: $summary_text; + } + } +} + +.Summary--condensed { + background-color: $background; + + .Summary__totalTrackerCountContainer { + color: $summary_text; + } +} + +.Summary__statsNavicon.Summary__statsNavicon--absolutely-positioned, +.Summary__rewardsNavicon.Summary__rewardsNavicon--absolutely-positioned { + background-color: #F7F8FB; + + path { + fill: $palm-green; + stroke: $palm-green; + } +} + +.SummaryPageHost { + color: $summary_text; +} + +.SummaryPageStat { + color: $summary_text; +} + +.DonutGraph__textCountContainer { + color: $summary_text; +} + +.CliqzFeature--inactive.clickable { + .CliqzFeature__status { color: $disabled_feature }; + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($disabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($disabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($disabled_feature) }; + .CliqzFeature__feature-name { color: $disabled_feature }; + + &:hover { + .CliqzFeature__status { color: $bright_disabled_feature; } + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($bright_disabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($bright_disabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($bright_disabled_feature) }; + .CliqzFeature__feature-name { color: $bright_disabled_feature; } + } +} + +.CliqzFeature--active.clickable { + .CliqzFeature__status { color: $enabled_feature }; + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($enabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($enabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($enabled_feature) }; + .CliqzFeature__feature-name { color: $enabled_feature }; + + &:hover { + .CliqzFeature__status { color: $bright_enabled_feature; } + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($bright_enabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($bright_enabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($bright_enabled_feature) }; + .CliqzFeature__feature-name { color: $bright_enabled_feature; } + } +} + +.CliqzFeature--inactive.not-clickable { + .CliqzFeature__status { color: $paled_disabled_feature }; + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($paled_disabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($paled_disabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($paled_disabled_feature) }; + .CliqzFeature__feature-name { color: $paled_disabled_feature }; +} + +.CliqzFeature--active.not-clickable { + .CliqzFeature__status { color: $paled_enabled_feature }; + .CliqzFeature__icon--anti-track { background-image: buildIconAntiTracking($paled_enabled_feature) }; + .CliqzFeature__icon--ad-block { background-image: buildIconAdBlocking($paled_enabled_feature) }; + .CliqzFeature__icon--smart-block { background-image: buildIconSmartBlocking($paled_enabled_feature) }; + .CliqzFeature__feature-name { color: $paled_enabled_feature }; +} + +.blocking-category .sticky-category { + background-color: $tracker-list; + border: 1px solid $tracker-list; + border-bottom: 1px solid #FFF; +} + +.trackers-list { + $tracker-list-color: $tracker-list; +} + +#content-detail { + border-left: 1px solid $tracker-list; +} + +.blocking-header > .row:first-of-type { + border-bottom: 2px solid $tracker-list; +} + +// This CSS is compatible with extension versions 8.3.4 and lower +#content-summary { + background-color: $background; + &.expert.condensed { + background-color: $background; + .total-tracker-count { + color: $summary_text; + } + } + + .page-host { + color: $summary_text; + } + .page-stats { + color: $summary_text; + } + + .sub-component.donut-graph .graph-text { + color: $summary_text; + } + + .sub-component.cliqz-features { + .count { + color: rgba($disabled_feature, 0); + background-image: buildIconDash($disabled_feature); + } + .active .count { + color: $enabled_feature; + background: none !important; + } + &.inactive .count { + color: rgba($paled_disabled_feature, 0); + background-image: buildIconDash($paled_disabled_feature); + } + &.inactive .active .count { + color: $paled_enabled_feature; + background: none !important; + } + + .anti-tracking .icon { background-image: buildIconAntiTracking($disabled_feature); } + .active.anti-tracking .icon { background-image: buildIconAntiTracking($enabled_feature); } + &.inactive .anti-tracking .icon { background-image: buildIconAntiTracking($paled_disabled_feature); } + &.inactive .active.anti-tracking .icon { background-image: buildIconAntiTracking($paled_enabled_feature); } + + .ad-blocking .icon { background-image: buildIconAdBlocking($disabled_feature); } + .active.ad-blocking .icon { background-image: buildIconAdBlocking($enabled_feature); } + &.inactive .ad-blocking .icon { background-image: buildIconAdBlocking($paled_disabled_feature); } + &.inactive .active.ad-blocking .icon { background-image: buildIconAdBlocking($paled_enabled_feature); } + + .smart-blocking .icon { background-image: buildIconSmartBlocking($disabled_feature); } + .active.smart-blocking .icon { background-image: buildIconSmartBlocking($enabled_feature); } + &.inactive .smart-blocking .icon { background-image: buildIconSmartBlocking($paled_disabled_feature); } + &.inactive .active.smart-blocking .icon { background-image: buildIconSmartBlocking($paled_enabled_feature); } + + .feature-name { + color: $disabled_feature; + } + .active .feature-name { color: $enabled_feature; } + &.inactive .feature-name { color: $paled_disabled_feature; } + &.inactive .active .feature-name { color: $paled_enabled_feature; } + + .cliqz-feature.clickable:hover { + &.anti-tracking .icon { background-image: buildIconAntiTracking($bright_disabled_feature); } + &.ad-blocking .icon { background-image: buildIconAdBlocking($bright_disabled_feature); } + &.smart-blocking .icon { background-image: buildIconSmartBlocking($bright_disabled_feature); } + .feature-name { color: $bright_disabled_feature; } + } + .cliqz-feature.active.clickable:hover { + .count { + color: $bright_enabled_feature; + } + &.anti-tracking .icon { background-image: buildIconAntiTracking($bright_enabled_feature); } + &.ad-blocking .icon { background-image: buildIconAdBlocking($bright_enabled_feature); } + &.smart-blocking .icon { background-image: buildIconSmartBlocking($bright_enabled_feature); } + .feature-name { color: $bright_enabled_feature; } + } + } + .sub-component.not-scanned { + .not-scanned-header { + color: $summary_text; + } + .not-scanned-text { + color: $summary_text; + } + } + .stats-button path { + fill: #FFF; + stroke: #FFF; + } +} + +// This CSS is compatible with all extension versions as of 8.4.1 +#ghostery-header { + .header-tab { + color: #FFF; + background-color: $tab_inactive; + &.active { + color: #FFF; + background-color: $tab_active; + } + &:last-of-type.active { + color: #FFF; + background-color: $tab_active; + } + } + .top-bar { + background-color: $palm_green; + color: $background; + .subscriber-badge { + path {fill: $background;} + path.text {fill: $caption;} + } + .header-logo { + .back-arrow { + path { + fill: $background; + } + } + .logo-icon { + path { + fill: #FFF; + } + svg > g > path:nth-child(3) { + fill: $background; + } + } + } + .header-kebab { + path { + fill: #FFF; + } + } + .profile-svg { + g > g { + fill: #124559; + stroke: #124559; + } + } + } +} + +#content-stats { + .stats-top-header { + .stats-top-header-icon.trackersSeen g { + fill: #124559; + } + .stats-top-header-icon.trackersBlocked path { + &:first-of-type { + fill: #FFF; + stroke: #FFF; + } + &:nth-of-type(2) { + stroke: #124559; + } + &:last-of-type { + fill: #124559; + } + } + .stats-top-header-icon.trackersAnonymized path { + stroke: #124559; + } + .stats-top-header-icon.adsBlocked path { + fill: #124559; + stroke: #124559; + } + } + .stats-top-header-reset { + color: #124559; + } + .tab-header { + background-color: #124559; + .tab-container > .tab { + background-color: #7f98a2; + } + } + .tile-container > .tile > .tile-value { + .tile-value-content { + color: #124559; + } + &.active > .active-underline { + background-color: #124559; + } + } + .modal-container { + .modal-hollow-button { + border: #124559 1px solid; + color: #124559; + } + .modal-filled-button { + border: #124559 1px solid; + background-color:#124559;; + } + } +} + +.line-graph-container { + #stats-back { + background-image: buildLeftCaret(#124559); + } + #stats-forward { + background-image: buildRightCaret(#124559); + } +} \ No newline at end of file From 8a66ff9e8e131050d4e2f8e067810dd8ad24811c Mon Sep 17 00:00:00 2001 From: Serge Zarembsky Date: Thu, 19 Mar 2020 11:14:28 -0400 Subject: [PATCH 08/48] Adding comments. --- BranchComments.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 BranchComments.txt diff --git a/BranchComments.txt b/BranchComments.txt new file mode 100644 index 000000000..8ae11bcdb --- /dev/null +++ b/BranchComments.txt @@ -0,0 +1,7 @@ +1. Two theme scss files palm-theme.scss and midnight-theme.scss are added under app\scss +2. Couple of lines in .\webpack.config.js ensure the themes are compiled as the rest of SCSS files. +They end up in dist\css as palm_theme.css and midnight_theme.css. Will refer to them by file paths. +3. In src\classes\account.js getTheme function mimics the original, but returns file paths instead of +css stream. +4. In app\panel\utils\utils.js setTheme function is changed to add +element instead of inline