Search

Filter Data Breaches

Time

Explore relations between cyber attackers and their targets.

Filter Data Breaches
View live example →

Filtering complex data with KeyLines lets you go from a wide angle view of a vast data landscape to a focused exploration of key items.

This demo features data from the Verizon Data Breach Investigations Report (DBIR) which looks at thousands of data breaches across the world and examines attackers, attack vectors, and victims.

KeyLines features can identify broad trends right away:

  • Clicking Size Companies sizes the nodes representing victims in proportion to the number of times they were attacked.
  • Links are colour-coded by attack vector. Selecting Advanced tech reveals that the Activist group favour this attack vector. In contrast, selecting Basic Tech highlights their use by End-user or regular employees.
  • The time bar histogram and navigation controls do more than just show when attacks happened. Select multiple attack vectors to compare their overlaid trend lines with the aggregate volume of attacks to identify patterns.
  • Donuts on attacker nodes consist of colour-coded segments that show the relative proportion of attack vectors used. You can zoom in and examine them or use the time bar navigation controls to see how the proportions change over time.

Key functions used:

import KeyLines from "keylines";
import { data } from "./data.js";

let chart;
let timebar;
let suppressedChecks = [];

const linkColours = [
  "rgba(255, 0, 13, 0.7)",
  "rgba(252, 132, 39, 0.7)",
  "rgba(255, 207, 9, 0.7)",
  "rgba(33, 252, 13, 0.7)",
  "rgba(0, 253, 255, 0.7)",
  "rgba(229, 153, 255, 0.7)",
  "rgba(227, 19, 254, 0.7)",
  "rgba(186, 153, 15, 0.7)",
];

const orange = "rgb(255, 127, 14)";

const typeToCategories = {
  advanced: {
    "Web application": 1,
    "Remote access": 1,
    "Backdoor or C2": 1,
    "Command shell": 1,
    VPN: 1,
    "Web drive-by": 1,
  },
  basic: {
    "LAN access": 1,
    "Desktop sharing": 1,
    Phone: 1,
    Documents: 1,
    "Direct install": 1,
    "3rd party desktop": 1,
    "Software update": 1,
  },
  careless: {
    Carelessness: 1,
    "Inadequate processes": 1,
    "Inadequate technology": 1,
    "Non-corporate": 1,
  },
  vArea: {
    "Victim work area": 1,
    "Victim public area": 1,
    "Victim grounds": 1,
    "Victim secure area": 1,
  },
  tArea: { "Public facility": 1, "Partner facility": 1, "Public vehicle": 1 },
  email: {
    Email: 1,
    "Email attachment": 1,
    "Email autoexecute": 1,
    "Email link": 1,
  },
  physical: {
    "Physical access": 1,
    "Personal residence": 1,
    "Personal vehicle": 1,
    "In-person": 1,
  },
  unknown: { Unknown: 1, Other: 1, "Random error": 1 },
};

// later we'll reverse the dictionary above to quickly filter items
const categoryToType = {};

function linkColoursByNode(nodes, links) {
  const linksByNode = {};
  nodes.forEach((node) => {
    linksByNode[node.id] = [];
  });

  links.forEach((link) => {
    if (link && link.c) {
      const linkColour = link.c;
      if (linksByNode[link.id1]) {
        linksByNode[link.id1].push(linkColour);
      }
      if (linksByNode[link.id2]) {
        linksByNode[link.id2].push(linkColour);
      }
    }
  });

  return linksByNode;
}

/**
 * Given an async function (fn), this function returns
 * a new function that will queue up to 1 call to fn when
 * invoked concurrently.
 */
function asyncThrottle(fn) {
  // 0 = ready, 1 = running, 2 = queued
  let state = 0;

  const run = async () => {
    if (state > 0) {
      state = 2;
    } else {
      state = 1;
      await fn();
      const queued = state > 1;
      state = 0;
      if (queued) run();
    }
  };

  return run;
}

function doLayout(mode) {
  return chart.layout("organic", {
    time: 300,
    easing: "linear",
    mode,
    tightness: 8,
  });
}

function getDonutsForActorNodes(nodes, linksByNode) {
  return nodes.map((node) => {
    const donutValues = [0, 0, 0, 0, 0, 0, 0, 0];
    const linkColourList = linksByNode[node.id];
    if (linkColourList) {
      linkColourList.forEach((linkColour) => {
        const index = linkColours.indexOf(linkColour);
        if (index !== -1) {
          donutValues[index]++;
        }
      });
    }
    return { id: node.id, donut: { v: donutValues } };
  });
}

function getActorNodeIdsInRange(linkIdsInRange) {
  const allNodeIds = [];
  linkIdsInRange.forEach((id) => {
    const link = chart.getItem(id);
    if (link && !allNodeIds.includes(link.id1)) allNodeIds.push(link.id1);
    if (link && !allNodeIds.includes(link.id2)) allNodeIds.push(link.id2);
  });

  return allNodeIds.filter((id) => {
    const node = chart.getItem(id);
    return node.d.type === "actor";
  });
}

function updateDonuts() {
  const range = timebar.range();

  // find the attacks that occured within the timebar's range
  const linkIdsInRange = timebar.getIds(range.dt1, range.dt2);
  const linksInRange = chart.getItem(linkIdsInRange);

  // find the actor nodes that are adjacent to those links
  const actorNodeIdsInRange = getActorNodeIdsInRange(linkIdsInRange);
  const actorNodesInRange = chart.getItem(actorNodeIdsInRange);

  // get an object listing all the link colours for each of those actor nodes
  const actorLinkColours = linkColoursByNode(actorNodesInRange, linksInRange);

  // use the lists of link colours to make donuts for those actor nodes
  const donutsToUpdate = getDonutsForActorNodes(actorNodesInRange, actorLinkColours);
  chart.animateProperties(donutsToUpdate, { time: 300, easing: "cubic" });
}

function resetTimebarSelection() {
  timebar.selection([]);
}

function itemsAndNeighbours(ids) {
  const result = {};
  const items = chart.getItem(ids);

  const neighbourIds = chart.graph().neighbours(ids, { all: true });

  neighbourIds.links.concat(neighbourIds.nodes).forEach((neighbourId) => {
    result[neighbourId] = true;
  });

  items.forEach((item) => {
    result[item.id] = true;
  });
  return result;
}

function neighbouringCriterion(ids) {
  const idsToForeground = itemsAndNeighbours(ids);
  return (item) => idsToForeground[item.id];
}

// foreground/background the chart items based on whether they neighbour a checked attack vector
function foregroundCheckedAttackVectors() {
  // make all checkboxes determinate
  document.querySelectorAll(".vector input").forEach((checkbox) => {
    checkbox.indeterminate = false;
  });
  // re-check suppressed checkboxes
  suppressedChecks.forEach((checkbox) => {
    checkbox.checked = true;
  });
  suppressedChecks = [];

  const threshold = 3;

  // first read the number of checkboxes checked
  const checked = document.querySelectorAll(".vector input:checked");
  // if there are more than 3 uncheck this last one and return
  if (checked.length > threshold) {
    // just exit
    this.checked = false;
    return;
  }

  document.querySelectorAll(".vector input:not(:checked)").forEach((checkbox) => {
    checkbox.disabled = checked.length === threshold;
  });

  resetTimebarSelection();

  const criteria = [];

  if (checked.length) {
    const checkedTypes = {};

    checked.forEach((el, i) => {
      // save type -> selection object in this dictionary
      checkedTypes[el.id] = {
        id: [],
        index: i,
        c: el.parentElement.querySelector("span.color-legend").style.backgroundColor,
      };
    });

    chart.each({ type: "link" }, (link) => {
      const type = categoryToType[link.d.type];
      if (type in checkedTypes) {
        checkedTypes[type].id.push(link.id);
      }
    });

    const selectionList = [];

    Object.keys(checkedTypes).forEach((index) => {
      const ids = checkedTypes[index].id;

      criteria.push(neighbouringCriterion(ids));

      selectionList.push(checkedTypes[index]);
    });

    timebar.selection(selectionList);

    // foreground the checked vectors
    chart.foreground((item) => criteria.some((criterion) => criterion(item)));
  } else {
    // no vector checkboxes are checked, so foreground everything
    chart.foreground(() => true);
  }
}

function forEachVictimNode(fn) {
  chart.each({ type: "node" }, (node) => {
    if (node.d.type === "victim") {
      fn(node);
    }
  });
}

async function resetVector(e) {
  // reset the checkboxes
  document.querySelectorAll(".vector input").forEach((input) => {
    input.checked = false;
    input.disabled = false;
    input.indeterminate = false;
  });
  // clear the chart selection
  chart.selection([]);

  resetTimebarSelection();
  chart.foreground(() => true);
  // reset the size of companies as well
  const changes = [];
  forEachVictimNode((node) => {
    changes.push({ id: node.id, e: 1 });
  });
  await chart.animateProperties(changes, {});
  doLayout("adaptive");
  e.preventDefault();
}

function normalize(value, min, max) {
  if (min === max) {
    return value;
  }
  return (value - min) / (max - min);
}

async function sizeByCompanyVectors() {
  const degrees = chart.graph().degrees();
  const changes = [];
  let max = -Infinity;
  let min = Infinity;
  // first pass: find the max and min degrees
  forEachVictimNode((node) => {
    if (node.id in degrees) {
      max = Math.max(max, degrees[node.id]);
      min = Math.min(min, degrees[node.id]);
    }
  });
  // second pass, now size the nodes
  forEachVictimNode((node) => {
    if (node.id in degrees) {
      changes.push({ id: node.id, e: 1 + 6 * normalize(degrees[node.id], min, max) });
    }
  });
  await chart.animateProperties(changes, { time: 800 });
  doLayout("adaptive");
}

const filterOnTimebarChange = asyncThrottle(async () => {
  // filter the chart to show only items in the new range
  await chart.filter(timebar.inRange, { animate: false, type: "link" });
  updateDonuts();
  await doLayout("adaptive");
});

function foregroundOnSelectionChange() {
  resetTimebarSelection();
  const selection = chart.selection();

  if (selection.length) {
    // foreground the selected items, and any neighbours thereof
    const foreground = itemsAndNeighbours(selection);

    // find all the attack types that have a link in the foreground
    const selectedAttackTypes = [];
    chart.foreground(
      (link) => {
        if (foreground[link.id]) {
          const type = categoryToType[link.d.type];
          selectedAttackTypes.push(type);
          return true;
        }
        return false;
      },
      { type: "link" }
    );

    document.querySelectorAll(".vector input").forEach((checkbox) => {
      // for the selected attack types, make the corresponding checkboxes indeterminate
      checkbox.indeterminate = selectedAttackTypes.includes(checkbox.id);
      // uncheck any other checked checkboxes
      if (checkbox.checked && !checkbox.indeterminate) {
        checkbox.checked = false;
        // record that we unchecked this checkbox, so we can re-check it later
        suppressedChecks.push(checkbox);
      }
    });
  } else {
    // In this case, the click was on the chart background,
    // so we do the foregrounding in accordance with checkbox state.
    foregroundCheckedAttackVectors();
  }
}

async function klReady(components) {
  [chart, timebar] = components;

  chart.load(data);
  chart.zoom("fit");

  timebar.load(data);
  await timebar.zoom("fit", { time: 100 });

  // Setup Filters
  // when the time bar range changes, filter the chart accordingly
  timebar.on("change", filterOnTimebarChange);
  // handle clicks by foregrounding the selected item(s) and neighbours thereof
  chart.on("selection-change", foregroundOnSelectionChange);

  // reverse the typeToCategory dictionary
  Object.keys(typeToCategories).forEach((type) => {
    const categories = typeToCategories[type];
    Object.keys(categories).forEach((category) => {
      categoryToType[category] = type;
    });
  });

  // Vector Filter
  document.querySelectorAll(".vector input").forEach((input) => {
    input.addEventListener("change", foregroundCheckedAttackVectors, false);
    input.addEventListener("keyup", foregroundCheckedAttackVectors, false);
  });

  document.getElementById("reset").addEventListener("click", resetVector, false);
  // add an explanation to the vector categories
  document.querySelectorAll(".vector").forEach((el) => {
    const categories = typeToCategories[el.querySelector("input").getAttribute("id")];
    const names = Object.keys(categories);
    const label = el.querySelector("span.text-legend");
    const wrapperSpan = el.querySelector("span.popover-wrapper");
    wrapperSpan.setAttribute("data-title", label.textContent);
    wrapperSpan.setAttribute("data-content", names.join(", "));
  });

  // Layout button
  document.getElementById("layout").addEventListener("click", doLayout, false);
  document.getElementById("degrees").addEventListener("click", sizeByCompanyVectors, false);
}

async function startKeyLines() {
  const attackerIcon = "fas fa-users";
  const chartOptions = {
    controlTheme: "dark",
    drag: {
      links: false,
    },
    handMode: true,
    iconFontFamily: "Font Awesome 5 Free",
    overview: { icon: false, shown: false },
    minZoom: 0.01,
    selectionColour: orange,
    linkEnds: { avoidLabels: false },
    imageAlignment: {},
    backColour: "#2d383f",
  };

  chartOptions.imageAlignment[attackerIcon] = {
    e: 0.8,
  };

  const timeBarOptions = {
    area: { colour: "#FFFFFF" },
    backColour: "#2d383f",
    controlBarTheme: "dark",
    scale: { highlightColour: "#475259" },
    playSpeed: 50,
    sliders: "none",
    type: "area",
  };

  const components = await KeyLines.create([
    {
      container: "klchart",
      type: "chart",
      options: chartOptions,
    },
    {
      container: "kltimebar",
      type: "timebar",
      options: timeBarOptions,
    },
  ]);
  klReady(components);
}

function loadFontsAndStart() {
  document.fonts.load('24px "Font Awesome 5 Free"').then(startKeyLines);
}

window.addEventListener("DOMContentLoaded", loadFontsAndStart);
export const data = {
  type: "LinkChart",
  items: [
    {
      id: "Azerenerji:Activist:Web application",
      id1: "Azerenerji",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378322940000],
      off: 0,
    },
    {
      id: "Combined Systems:Activist:Web application",
      id1: "Combined Systems",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361242863000],
      off: 0,
    },
    {
      id: "Northrop Grumman Corporation:State-affiliated:Unknown",
      id1: "Northrop Grumman Corporation",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405192769000],
      off: 0,
    },
    {
      id: "Mangement of Aggressive Behavior Training International, Inc:Activist:Unknown",
      id1: "Mangement of Aggressive Behavior Training International, Inc",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361243495000],
      off: 0,
    },
    {
      id: "Syrian Arab News Agency:Activist:Web application",
      id1: "Syrian Arab News Agency",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379103720000],
      off: 0,
    },
    {
      id: "Eastern Buffet:Cashier:Physical access",
      id1: "Eastern Buffet",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1363299196000],
      off: 0,
    },
    {
      id: "UConn Health Center:Former employee:Physical access",
      id1: "UConn Health Center",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1387297020000],
      off: 0,
    },
    {
      id: "Alamance County Department of Social Services:Other:Physical access",
      id1: "Alamance County Department of Social Services",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1415893560000],
      off: 0,
    },
    {
      id: "Telvent Canada Ltd:State-affiliated:Unknown",
      id1: "Telvent Canada Ltd",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1416497640000],
      off: 0,
    },
    {
      id: "Medway Maritime Hospital:End-user:LAN access",
      id1: "Medway Maritime Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1418431403000],
      off: 20,
    },
    {
      id: "Flowers Hospital:End-user:Physical access",
      id1: "Flowers Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1398956640000],
      off: 0,
    },
    {
      id: "Plymouth City Council:System admin:Unknown",
      id1: "Plymouth City Council",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408741440000],
      off: 0,
    },
    {
      id: "Alabama Book Store, Inc.:Organized crime:Web application",
      id1: "Alabama Book Store, Inc.",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360947399000],
      off: 0,
    },
    {
      id: "Singapore Prime Minister's Office:Activist:Web application",
      id1: "Singapore Prime Minister's Office",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1384051680000],
      off: 0,
    },
    {
      id: "Coast Capital Savings Credit Union:Helpdesk:LAN access",
      id1: "Coast Capital Savings Credit Union",
      id2: "Helpdesk",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1377300960000],
      off: 0,
    },
    {
      id: "Creative Banner Assemblies:Organized crime:Unknown",
      id1: "Creative Banner Assemblies",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378234860000],
      off: 0,
    },
    {
      id: "Teachers Insurance and Annuity Association - College Retirement Equities Fund:Organized crime:Web application",
      id1: "Teachers Insurance and Annuity Association - College Retirement Equities Fund",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406041560000],
      off: 0,
    },
    {
      id: "NZ Government of New Zealand:Activist:Web application",
      id1: "NZ Government of New Zealand",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379695740000],
      off: 0,
    },
    {
      id: "DJArts:Unaffiliated:Web application",
      id1: "DJArts",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361992515000],
      off: 0,
    },
    {
      id: "Viber:Activist:Web application",
      id1: "Viber",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1377466227000],
      off: 0,
    },
    {
      id: "Kenya National Registration Bureau:Activist:Web application",
      id1: "Kenya National Registration Bureau",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1377011378000],
      off: 0,
    },
    {
      id: "NATO Cooperative Cyber Defence Centre of Excellence:Activist:Web application",
      id1: "NATO Cooperative Cyber Defence Centre of Excellence",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1384048500000],
      off: 0,
    },
    {
      id: "Citywide Mortgage:Finance:LAN access",
      id1: "Citywide Mortgage",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1407854160000],
      off: 0,
    },
    {
      id: "Bon Secours DePaul Medical Center:End-user:LAN access",
      id1: "Bon Secours DePaul Medical Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370369131000],
      off: 0,
    },
    {
      id: "Bon Secours DePaul Medical Center:Unaffiliated:LAN access",
      id1: "Bon Secours DePaul Medical Center",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370369131000],
      off: 0,
    },
    {
      id: "Government of Albania:Unaffiliated:Web application",
      id1: "Government of Albania",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1394220720000],
      off: 0,
    },
    {
      id: "Alexza Pharmaceuticals:Activist:Web application",
      id1: "Alexza Pharmaceuticals",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "PS Palestine Ministry of Justice:Activist:Web application",
      id1: "PS Palestine Ministry of Justice",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381141380000],
      off: 0,
    },
    {
      id: "LexisNexis:Organized crime:Web application",
      id1: "LexisNexis",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1380121860000],
      off: 0,
    },
    {
      id: "University of New Haven:Other:Unknown",
      id1: "University of New Haven",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1388958060000],
      off: 0,
    },
    {
      id: "Home Office (Govt. of the United Kingdom):System admin:Unknown",
      id1: "Home Office (Govt. of the United Kingdom)",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1389017100000],
      off: 0,
    },
    {
      id: "Randor Township School Disctrict:System admin:Inadequate technology",
      id1: "Randor Township School Disctrict",
      id2: "System admin",
      type: "link",
      w: 10,
      d: {
        type: "Inadequate technology",
      },
      dt: [1387207260000],
      off: 0,
      c: "rgba(255, 207, 9, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Randor Township School Disctrict:Other:Inadequate technology",
      id1: "Randor Township School Disctrict",
      id2: "Other",
      type: "link",
      w: 10,
      d: {
        type: "Inadequate technology",
      },
      dt: [1387207260000],
      off: 0,
      c: "rgba(255, 207, 9, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "North Wales Transportation Committee:Activist:Web application",
      id1: "North Wales Transportation Committee",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1387228560000],
      off: 0,
    },
    {
      id: "Turkey Ministry of Food, Agriculture and Livestock:Activist:Web application",
      id1: "Turkey Ministry of Food, Agriculture and Livestock",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378859280000],
      off: 0,
    },
    {
      id: "Australian Federal Police:Activist:Web application",
      id1: "Australian Federal Police",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1389623100000],
      off: 0,
    },
    {
      id: "Strategic Forecasting, Inc.:Activist:Web application",
      id1: "Strategic Forecasting, Inc.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360387488000],
      off: 0,
    },
    {
      id: "Swansea Police Department:Organized crime:Unknown",
      id1: "Swansea Police Department",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1385604420000],
      off: 0,
    },
    {
      id: "Grindr LLC:Unaffiliated:Other",
      id1: "Grindr LLC",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1407771720000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Lewisham Council:End-user:Carelessness",
      id1: "Lewisham Council",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1372719229000],
      off: 0,
    },
    {
      id: "California State University San Marcos:End-user:Physical access",
      id1: "California State University San Marcos",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1361375898000],
      off: 0,
    },
    {
      id: "Certified Tax Consultants:End-user:LAN access",
      id1: "Certified Tax Consultants",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1386355740000],
      off: 0,
    },
    {
      id: "Hidalgo County:Activist:Web application",
      id1: "Hidalgo County",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381142400000],
      off: 0,
    },
    {
      id: "Steam, Origin, Battle.net, and League of Legends:Activist:Web application",
      id1: "Steam, Origin, Battle.net, and League of Legends",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399763731237],
      off: 0,
    },
    {
      id: "Praxair Healthcare Services, Inc.:Former employee:Victim work area",
      id1: "Praxair Healthcare Services, Inc.",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1365805796000],
      off: 0,
    },
    {
      id: "Ameritas Life Insurance Corp.:Unaffiliated:Personal vehicle",
      id1: "Ameritas Life Insurance Corp.",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Personal vehicle",
      },
      dt: [1360041473000],
      off: 0,
    },
    {
      id: "Midlothian Council:End-user:Carelessness",
      id1: "Midlothian Council",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1372199058000],
      off: 0,
    },
    {
      id: "Massachusetts Technical Institute:Activist:Web application",
      id1: "Massachusetts Technical Institute",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1389545760000],
      off: 0,
    },
    {
      id: "New York City Police Department:Other:LAN access",
      id1: "New York City Police Department",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1377479738000],
      off: 0,
    },
    {
      id: "TL Government of Timor-Leste:Nation-state:Unknown",
      id1: "TL Government of Timor-Leste",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1395155940000],
      off: 0,
    },
    {
      id: "Baylor Law School:End-user:Random error",
      id1: "Baylor Law School",
      id2: "End-user",
      type: "link",
      w: 10,
      d: {
        type: "Random error",
      },
      dt: [1360702744000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Nationalist Movement Website:Activist:Web application",
      id1: "Nationalist Movement Website",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388877780000],
      off: 0,
    },
    {
      id: "Dream Host:Unaffiliated:Unknown",
      id1: "Dream Host",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1363292897000],
      off: 0,
    },
    {
      id: "L-3 Communications Holdings, Inc.:Other:Victim work area",
      id1: "L-3 Communications Holdings, Inc.",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1377129826000],
      off: 0,
    },
    {
      id: "KTSU Radio:Other:LAN access",
      id1: "KTSU Radio",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1372464511000],
      off: 0,
    },
    {
      id: "Linode:Activist:Web application",
      id1: "Linode",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "BENTON'S ADULT FOSTER CARE:End-user:Physical access",
      id1: "BENTON'S ADULT FOSTER CARE",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1376928229000],
      off: 0,
    },
    {
      id: "Dell Inc:State-affiliated:Unknown",
      id1: "Dell Inc",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405087500000],
      off: 0,
    },
    {
      id: "Federal Sentencing Commission:Activist:Web application",
      id1: "Federal Sentencing Commission",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1415824200000],
      off: 0,
    },
    {
      id: "Interactive Data:Unaffiliated:Web application",
      id1: "Interactive Data",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1372797243000],
      off: 0,
    },
    {
      id: "Ha Dinh Primary School:Competitor:Unknown",
      id1: "Ha Dinh Primary School",
      id2: "Competitor",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378926480000],
      off: 0,
    },
    {
      id: "East Lothian Council:End-user:Carelessness",
      id1: "East Lothian Council",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1363297806000],
      off: 0,
    },
    {
      id: "Al Arabiya:Activist:Web application",
      id1: "Al Arabiya",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1396535220000],
      off: 0,
    },
    {
      id: "COUNTRYWIDE HOME LOANS, INC.:Finance:LAN access",
      id1: "COUNTRYWIDE HOME LOANS, INC.",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1391804247000],
      off: -20,
    },
    {
      id: "COUNTRYWIDE HOME LOANS, INC.:Finance:Physical access",
      id1: "COUNTRYWIDE HOME LOANS, INC.",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1391804247000],
      off: 20,
    },
    {
      id: "HSBC:End-user:Carelessness",
      id1: "HSBC",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1372722697000],
      off: 20,
    },
    {
      id: "Vodafone:Activist:Web application",
      id1: "Vodafone",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "Sony Pictures Entertainment Inc.:Activist:Web application",
      id1: "Sony Pictures Entertainment Inc.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1392263795000],
      off: 0,
    },
    {
      id: "Texas Department of Health and Human Services:End-user:LAN access",
      id1: "Texas Department of Health and Human Services",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378844012000],
      off: 20,
    },
    {
      id: "Bank of Nova Scotia:End-user:LAN access",
      id1: "Bank of Nova Scotia",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1405099440000],
      off: 0,
    },
    {
      id: "Wset Incorporated:Organized crime:Email attachment",
      id1: "Wset Incorporated",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(229, 153, 255, 0.7)",
      d: {
        type: "Email attachment",
      },
      dt: [1391197800000],
      off: 0,
    },
    {
      id: "Taco Bell Corp.:Cashier:Physical access",
      id1: "Taco Bell Corp.",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1391404682000],
      off: 0,
    },
    {
      id: "Concepta, Inc:Former employee:Unknown",
      id1: "Concepta, Inc",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1377201332000],
      off: 0,
    },
    {
      id: "Northumbria Police:Unaffiliated:Unknown",
      id1: "Northumbria Police",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1414693500000],
      off: 0,
    },
    {
      id: "Yakima Police Department:End-user:Remote access",
      id1: "Yakima Police Department",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Remote access",
      },
      dt: [1404070440000],
      off: 0,
    },
    {
      id: "BD Government:Activist:Web application",
      id1: "BD Government",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "Bank of the West:Organized crime:Unknown",
      id1: "Bank of the West",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378220040000],
      off: 0,
    },
    {
      id: "Palm Beach County Health Department:End-user:Physical access",
      id1: "Palm Beach County Health Department",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1361299873000],
      off: 20,
    },
    {
      id: "Palm Beach County Health Department:End-user:LAN access",
      id1: "Palm Beach County Health Department",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361299873000],
      off: -20,
    },
    {
      id: "University of Rochester Medical Center:End-user:Unknown",
      id1: "University of Rochester Medical Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "BD NGO Affairs Bureau:Activist:Web application",
      id1: "BD NGO Affairs Bureau",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381248774000],
      off: 0,
    },
    {
      id: "United Nations - Armenia/Slovenia- website:Activist:Web application",
      id1: "United Nations - Armenia/Slovenia- website",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379105460000],
      off: 0,
    },
    {
      id: "Jamaica Hospital Medical Center:End-user:LAN access",
      id1: "Jamaica Hospital Medical Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1396298220000],
      off: 0,
    },
    {
      id: "MIC Electronics Ltd:Developer:LAN access",
      id1: "MIC Electronics Ltd",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1379356020000],
      off: 0,
    },
    {
      id: "PetSmart, Inc.:End-user:Other",
      id1: "PetSmart, Inc.",
      id2: "End-user",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1380040380000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Cambridge:Unaffiliated:Web application",
      id1: "University of Cambridge",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378859280000],
      off: 0,
    },
    {
      id: "Kremlin:Activist:Web application",
      id1: "Kremlin",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1401090867026],
      off: 0,
    },
    {
      id: "CA Department of Education:Customer:Victim work area",
      id1: "CA Department of Education",
      id2: "Customer",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1406054760000],
      off: 0,
    },
    {
      id: "The Houstonian Hotel, Club & Spa:Organized crime:Unknown",
      id1: "The Houstonian Hotel, Club & Spa",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405088520000],
      off: 0,
    },
    {
      id: "United Nations Development Program in Ecuador:Activist:Web application",
      id1: "United Nations Development Program in Ecuador",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388947560000],
      off: 0,
    },
    {
      id: "Warren County Public Schools:Other:Unknown",
      id1: "Warren County Public Schools",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1415716740000],
      off: 0,
    },
    {
      id: "NASA Interagency Advanced Power Group:Activist:Web application",
      id1: "NASA Interagency Advanced Power Group",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361290409000],
      off: 0,
    },
    {
      id: "Waze:Unaffiliated:Web application",
      id1: "Waze",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1405533840000],
      off: 0,
    },
    {
      id: "United Kingdom Court of Appeals:End-user:Physical access",
      id1: "United Kingdom Court of Appeals",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1372197112000],
      off: 0,
    },
    {
      id: "EX ARMY UK:Unaffiliated:Web application",
      id1: "EX ARMY UK",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1373377514000],
      off: 0,
    },
    {
      id: "Nintendo Co Ltd:Unaffiliated:Web application",
      id1: "Nintendo Co Ltd",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1408385340000],
      off: 0,
    },
    {
      id: "Domino's Pizza Inc:Organized crime:Unknown",
      id1: "Domino's Pizza Inc",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1402686780000],
      off: 0,
    },
    {
      id: "Tata Motors Ltd:Activist:Web application",
      id1: "Tata Motors Ltd",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1400452980000],
      off: 0,
    },
    {
      id: "University of Oxford:Unaffiliated:Web application",
      id1: "University of Oxford",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378859280000],
      off: 0,
    },
    {
      id: "Kelly Plaza Dental Center:End-user:Unknown",
      id1: "Kelly Plaza Dental Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1389628980000],
      off: 0,
    },
    {
      id: "PrezidentBank and Turkmenbashi bank:Activist:Unknown",
      id1: "PrezidentBank and Turkmenbashi bank",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399496841648],
      off: 0,
    },
    {
      id: "Outbrain Inc.:Activist:VPN",
      id1: "Outbrain Inc.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "VPN",
      },
      dt: [1377181010000],
      off: 20,
    },
    {
      id: "Outbrain Inc.:Activist:Web application",
      id1: "Outbrain Inc.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1377181010000],
      off: -20,
    },
    {
      id: "German Federal Police:Other:Unknown",
      id1: "German Federal Police",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360639099000],
      off: 0,
    },
    {
      id: "Hong Kong Police Dept.:Other:Unknown",
      id1: "Hong Kong Police Dept.",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1407359040000],
      off: 0,
    },
    {
      id: "Vevo LLC:Unaffiliated:Web application",
      id1: "Vevo LLC",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1396364580000],
      off: 0,
    },
    {
      id: "The Johns Hopkins University:Activist:Web application",
      id1: "The Johns Hopkins University",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1394649780000],
      off: 0,
    },
    {
      id: "Rouge Valley Health System:Competitor:LAN access",
      id1: "Rouge Valley Health System",
      id2: "Competitor",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1402511220000],
      off: 0,
    },
    {
      id: "Oligil Tax Services:Manager:LAN access",
      id1: "Oligil Tax Services",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1365530024000],
      off: 0,
    },
    {
      id: "City of Taylor Police Department:End-user:LAN access",
      id1: "City of Taylor Police Department",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1386939480000],
      off: 0,
    },
    {
      id: "Israel Institute of Technology:Activist:Unknown",
      id1: "Israel Institute of Technology",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1363194883000],
      off: 0,
    },
    {
      id: "Panda Security:Activist:Web application",
      id1: "Panda Security",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1364480900000],
      off: 0,
    },
    {
      id: "Pirate Bay:Unaffiliated:Web application",
      id1: "Pirate Bay",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1392674520000],
      off: 0,
    },
    {
      id: "Community Health Center, Inc:Executive:Physical access",
      id1: "Community Health Center, Inc",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1403792160000],
      off: 0,
    },
    {
      id: "Ferris State University:Other:Web application",
      id1: "Ferris State University",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1376923893000],
      off: 0,
    },
    {
      id: "Riot Games:Activist:Web application",
      id1: "Riot Games",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1400161121970],
      off: 0,
    },
    {
      id: "British Pregnancy Advisory Service:Unaffiliated:Web application",
      id1: "British Pregnancy Advisory Service",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360989279000],
      off: -20,
    },
    {
      id: "Nefesh Bnefesh:Activist:Unknown",
      id1: "Nefesh Bnefesh",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361368761000],
      off: 0,
    },
    {
      id: "Back in Motion Physiotherapy:Organized crime:Unknown",
      id1: "Back in Motion Physiotherapy",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1369441892000],
      off: 0,
    },
    {
      id: "Goldman Sachs Group Inc/The:Executive:Other",
      id1: "Goldman Sachs Group Inc/The",
      id2: "Executive",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1411139160000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Perry Hospital:End-user:Physical access",
      id1: "Perry Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1416492120000],
      off: 0,
    },
    {
      id: "Live, Love and Dance Studio:Manager:Physical access",
      id1: "Live, Love and Dance Studio",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1406300580000],
      off: 0,
    },
    {
      id: "uzfiles.com:Activist:Web application",
      id1: "uzfiles.com",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360735089000],
      off: 0,
    },
    {
      id: "NECA/IBEW Family Medical Care Plan:End-user:Unknown",
      id1: "NECA/IBEW Family Medical Care Plan",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "University of Massachussets-Amsherst:Unaffiliated:Unknown",
      id1: "University of Massachussets-Amsherst",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378225860000],
      off: 0,
    },
    {
      id: "CCS Medical, Inc.:End-user:Physical access",
      id1: "CCS Medical, Inc.",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1361051471000],
      off: -20,
    },
    {
      id: "CCS Medical, Inc.:End-user:LAN access",
      id1: "CCS Medical, Inc.",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361051471000],
      off: 20,
    },
    {
      id: "Erie County Department of Social Services:End-user:Unknown",
      id1: "Erie County Department of Social Services",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Alicare, Inc.:Other:Unknown",
      id1: "Alicare, Inc.",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360603004000],
      off: 0,
    },
    {
      id: "City of Springfield Missouri (springfieldmo.gov):Activist:Web application",
      id1: "City of Springfield Missouri (springfieldmo.gov)",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1405095000000],
      off: 0,
    },
    {
      id: "UK Essex Police Department:End-user:Unknown",
      id1: "UK Essex Police Department",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1398622080000],
      off: 0,
    },
    {
      id: "National Intelligence Council:Activist:Unknown",
      id1: "National Intelligence Council",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1406161080000],
      off: 0,
    },
    {
      id: "Audibel Hearing Healthcare:Cashier:Physical access",
      id1: "Audibel Hearing Healthcare",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1413301320000],
      off: 0,
    },
    {
      id: "Washington University:End-user:Physical access",
      id1: "Washington University",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1360814543000],
      off: 20,
    },
    {
      id: "Washington University:End-user:LAN access",
      id1: "Washington University",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360814543000],
      off: -20,
    },
    {
      id: "Tunisian Ministry of Interior:End-user:LAN access",
      id1: "Tunisian Ministry of Interior",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1406839080000],
      off: 0,
    },
    {
      id: "Spirol International:Activist:Web application",
      id1: "Spirol International",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1407360060000],
      off: 0,
    },
    {
      id: "Community Hospitals of Indiana:End-user:LAN access",
      id1: "Community Hospitals of Indiana",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370355183000],
      off: 0,
    },
    {
      id: "Commidea Ltd:Organized crime:Unknown",
      id1: "Commidea Ltd",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1379358660000],
      off: 0,
    },
    {
      id: "Vantiv Inc:Organized crime:Unknown",
      id1: "Vantiv Inc",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405713480000],
      off: 0,
    },
    {
      id: "PUBLIC EMPLOYEES RETIREMENT SYSTEM, CALIFORNIA:End-user:Unknown",
      id1: "PUBLIC EMPLOYEES RETIREMENT SYSTEM, CALIFORNIA",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1412285160000],
      off: 0,
    },
    {
      id: "United States Sentencing Commission:Activist:Web application",
      id1: "United States Sentencing Commission",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1405726020000],
      off: 0,
    },
    {
      id: "Just Yo:Unaffiliated:Unknown",
      id1: "Just Yo",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1407169620000],
      off: 0,
    },
    {
      id: "Egyptian Govt Military education:Activist:Web application",
      id1: "Egyptian Govt Military education",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1401089214728],
      off: 0,
    },
    {
      id: "US Central Intelligence Agency:End-user:Unknown",
      id1: "US Central Intelligence Agency",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1401199260000],
      off: 0,
    },
    {
      id: "Bel-Air village in Makati City:Activist:Web application",
      id1: "Bel-Air village in Makati City",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381499580000],
      off: 0,
    },
    {
      id: "MiniMins.com:Unaffiliated:Web application",
      id1: "MiniMins.com",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361209898000],
      off: 0,
    },
    {
      id: "Barclays Bank PLC:Organized crime:Victim work area",
      id1: "Barclays Bank PLC",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1379947860000],
      off: 0,
    },
    {
      id: "TJX Cos Inc:Organized crime:Other",
      id1: "TJX Cos Inc",
      id2: "Organized crime",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1378996920000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "International Association of Chiefs of Police:Activist:Web application",
      id1: "International Association of Chiefs of Police",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1403917860000],
      off: 0,
    },
    {
      id: "Federal Bureau of Investigation:Activist:Unknown",
      id1: "Federal Bureau of Investigation",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361588435000],
      off: 20,
    },
    {
      id: "City College of San Francisco:Organized crime:Unknown",
      id1: "City College of San Francisco",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1370526918000],
      off: 0,
    },
    {
      id: "BAE Systems:End-user:LAN access",
      id1: "BAE Systems",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361402521000],
      off: 0,
    },
    {
      id: "Atlanta Womens Health Group:Unaffiliated:Victim work area",
      id1: "Atlanta Womens Health Group",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1361295448000],
      off: 0,
    },
    {
      id: "Cooperative Institute of Management and Technology and Kerala Cultural Welfare Development:Activist:Web application",
      id1: "Cooperative Institute of Management and Technology and Kerala Cultural Welfare Development",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399411141309],
      off: 0,
    },
    {
      id: "RBC Royal Bank of Canada:Unaffiliated:Victim public area",
      id1: "RBC Royal Bank of Canada",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1380486840000],
      off: 0,
    },
    {
      id: "United Airlines:Force majeure:Unknown",
      id1: "United Airlines",
      id2: "Force majeure",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1412951160000],
      off: 0,
    },
    {
      id: "Central University Of Tibetan Studies in India:State-affiliated:Email attachment",
      id1: "Central University Of Tibetan Studies in India",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(229, 153, 255, 0.7)",
      d: {
        type: "Email attachment",
      },
      dt: [1389039060000],
      off: 0,
    },
    {
      id: "Missouri Credit Union:System admin:Unknown",
      id1: "Missouri Credit Union",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378475220000],
      off: 0,
    },
    {
      id: "Children's Healthcare:Executive:LAN access",
      id1: "Children's Healthcare",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1383320400000],
      off: 0,
    },
    {
      id: "Commercial Metals Co:End-user:LAN access",
      id1: "Commercial Metals Co",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1406049120000],
      off: 0,
    },
    {
      id: "Cedars-Sinai Medical Center:End-user:LAN access",
      id1: "Cedars-Sinai Medical Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "National Aeronautics and Space Administration:Activist:Web application",
      id1: "National Aeronautics and Space Administration",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378859280000],
      off: 0,
    },
    {
      id: "Qatar Domains Registry:Activist:Unknown",
      id1: "Qatar Domains Registry",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1384002000000],
      off: 0,
    },
    {
      id: "H&T Multi Services:Finance:Physical access",
      id1: "H&T Multi Services",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377042696000],
      off: 0,
    },
    {
      id: "Berkeley HeartLab:Executive:LAN access",
      id1: "Berkeley HeartLab",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1399075140000],
      off: 0,
    },
    {
      id: "Berkeley HeartLab:Other:LAN access",
      id1: "Berkeley HeartLab",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1399075140000],
      off: 0,
    },
    {
      id: "University of Connecticut Health Center:End-user:LAN access",
      id1: "University of Connecticut Health Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1372878283000],
      off: 0,
    },
    {
      id: "Kenya Domain Registrar:Unaffiliated:Unknown",
      id1: "Kenya Domain Registrar",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1410269280000],
      off: 0,
    },
    {
      id: "PC World Philippines:Activist:Unknown",
      id1: "PC World Philippines",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1407853440000],
      off: 0,
    },
    {
      id: "Kara Falck, LCSW-C:End-user:Unknown",
      id1: "Kara Falck, LCSW-C",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378826400000],
      off: 0,
    },
    {
      id: "CN Hong Kong Police Force:Activist:Web application",
      id1: "CN Hong Kong Police Force",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1405954440000],
      off: 0,
    },
    {
      id: "Johns Hopkins Medical:End-user:LAN access",
      id1: "Johns Hopkins Medical",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1377466998000],
      off: 0,
    },
    {
      id: "Scottrade:Unaffiliated:Web application",
      id1: "Scottrade",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1411152300000],
      off: 0,
    },
    {
      id: "grc.com:Unaffiliated:Web application",
      id1: "grc.com",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399583520000],
      off: 0,
    },
    {
      id: "National Security Agency:Activist:Unknown",
      id1: "National Security Agency",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1409853900000],
      off: 0,
    },
    {
      id: "Saudi Aramco:Nation-state:Unknown",
      id1: "Saudi Aramco",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1411055460000],
      off: 0,
    },
    {
      id: "Martin Memorial Health Systems, Inc.:Force majeure:Unknown",
      id1: "Martin Memorial Health Systems, Inc.",
      id2: "Force majeure",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1412095620000],
      off: 0,
    },
    {
      id: "Isuzu France:Unaffiliated:Web application",
      id1: "Isuzu France",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1375720119000],
      off: 0,
    },
    {
      id: "LabMD, Inc.:Manager:LAN access",
      id1: "LabMD, Inc.",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1381510920000],
      off: 0,
    },
    {
      id: "Governors Office in Tunceli:Activist:Unknown",
      id1: "Governors Office in Tunceli",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1401898140000],
      off: 0,
    },
    {
      id: "Indian BioResource Information Network:Activist:Other",
      id1: "Indian BioResource Information Network",
      id2: "Activist",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1378316940000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "England Football Sqaud:Other:Unknown",
      id1: "England Football Sqaud",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1402066980000],
      off: 0,
    },
    {
      id: "U.S. Bancorp:Unaffiliated:Victim grounds",
      id1: "U.S. Bancorp",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim grounds",
      },
      dt: [1380553740000],
      off: 0,
    },
    {
      id: "University of Mississippi Medical Center:End-user:Unknown",
      id1: "University of Mississippi Medical Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1377458876000],
      off: 0,
    },
    {
      id: "Aberdeen Hospital in New Glasgow, N.S:End-user:Inadequate processes",
      id1: "Aberdeen Hospital in New Glasgow, N.S",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Inadequate processes",
      },
      dt: [1404418560000],
      off: 0,
    },
    {
      id: "Dave & Buster's:Cashier:Physical access",
      id1: "Dave & Buster's",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1396240620000],
      off: 0,
    },
    {
      id: "Allied Irish Banks, p.l.c.:Organized crime:Victim grounds",
      id1: "Allied Irish Banks, p.l.c.",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim grounds",
      },
      dt: [1383571320000],
      off: 0,
    },
    {
      id: "Kearny Mesa Infiniti:End-user:LAN access",
      id1: "Kearny Mesa Infiniti",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1383140760000],
      off: 0,
    },
    {
      id: "Turkish Government:Activist:Web application",
      id1: "Turkish Government",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1404068100000],
      off: 0,
    },
    {
      id: "Northern Inyo Hospital:End-user:Physical access",
      id1: "Northern Inyo Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1382160180000],
      off: 0,
    },
    {
      id: "VG:Unaffiliated:Unknown",
      id1: "VG",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1382730840000],
      off: 0,
    },
    {
      id: "VG:Former employee:Unknown",
      id1: "VG",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1382730840000],
      off: 0,
    },
    {
      id: "Under Armour:Other:Carelessness",
      id1: "Under Armour",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1360467849000],
      off: 0,
    },
    {
      id: "PayPal, Inc.:Activist:Web application",
      id1: "PayPal, Inc.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1391385720000],
      off: 0,
    },
    {
      id: "New York Department of Motor Vehicles:End-user:LAN access",
      id1: "New York Department of Motor Vehicles",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1375657082000],
      off: 0,
    },
    {
      id: "Association of American Medical Colleges:Unaffiliated:Unknown",
      id1: "Association of American Medical Colleges",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1387205340000],
      off: 0,
    },
    {
      id: "Long Islands Head Injury Association:End-user:LAN access",
      id1: "Long Islands Head Injury Association",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361511465000],
      off: 0,
    },
    {
      id: "PR Newswire:Organized crime:Web application",
      id1: "PR Newswire",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1383592860000],
      off: 0,
    },
    {
      id: "Tampa General Hospital:End-user:LAN access",
      id1: "Tampa General Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1376926636000],
      off: 0,
    },
    {
      id: "Forbes Inc.:Activist:Web application",
      id1: "Forbes Inc.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1392489830000],
      off: 0,
    },
    {
      id: "A Caring Hand Home Health Care Services, Inc.:End-user:LAN access",
      id1: "A Caring Hand Home Health Care Services, Inc.",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361492713000],
      off: 0,
    },
    {
      id: "Alabamas ABC 33/40:Organized crime:Unknown",
      id1: "Alabamas ABC 33/40",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1391198100000],
      off: 0,
    },
    {
      id: "Financial Times Ltd.:Activist:Web application",
      id1: "Financial Times Ltd.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1370287720000],
      off: 0,
    },
    {
      id: "Dallas Police Department:Unaffiliated:Web application",
      id1: "Dallas Police Department",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361384363000],
      off: 0,
    },
    {
      id: "GE Healthcare:End-user:LAN access",
      id1: "GE Healthcare",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1412007540000],
      off: 0,
    },
    {
      id: "University of North Carolina at Chapel Hill:System admin:Unknown",
      id1: "University of North Carolina at Chapel Hill",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1387218540000],
      off: 0,
    },
    {
      id: "Johns Hopkins Medical:Other:Unknown",
      id1: "Johns Hopkins Medical",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1367347881000],
      off: 0,
    },
    {
      id: "Commerce Bank:Cashier:LAN access",
      id1: "Commerce Bank",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1404828120000],
      off: 0,
    },
    {
      id: "Commerce Bank:Unaffiliated:LAN access",
      id1: "Commerce Bank",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1404828120000],
      off: 0,
    },
    {
      id: "Experian:Other:LAN access",
      id1: "Experian",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360260657000],
      off: 0,
    },
    {
      id: "Penang State Tourism Development & Culture:Unaffiliated:Web application",
      id1: "Penang State Tourism Development & Culture",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1400099160000],
      off: 0,
    },
    {
      id: "National Air Traffic Services, Ltd.:Force majeure:Unknown",
      id1: "National Air Traffic Services, Ltd.",
      id2: "Force majeure",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1387208520000],
      off: 0,
    },
    {
      id: "Td Bank Usa, NA:Unaffiliated:Victim grounds",
      id1: "Td Bank Usa, NA",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim grounds",
      },
      dt: [1377879540000],
      off: 0,
    },
    {
      id: "Bruce G. Peller, DMD, PA:Manager:LAN access",
      id1: "Bruce G. Peller, DMD, PA",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1365436841000],
      off: 0,
    },
    {
      id: "Catholic Health Initiatives:Unaffiliated:Unknown",
      id1: "Catholic Health Initiatives",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399903740000],
      off: 0,
    },
    {
      id: "Julius Baer:End-user:LAN access",
      id1: "Julius Baer",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1377214065000],
      off: 0,
    },
    {
      id: "Steubenville High School Football Teams Website:Activist:Web application",
      id1: "Steubenville High School Football Teams Website",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361049541000],
      off: 0,
    },
    {
      id: "Electronic Arts Inc:Unaffiliated:Web application",
      id1: "Electronic Arts Inc",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1389620040000],
      off: 0,
    },
    {
      id: "Rajiv Gandhi University of health sciences:Activist:Web application",
      id1: "Rajiv Gandhi University of health sciences",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379966400000],
      off: 0,
    },
    {
      id: "TH CAT Telecom:Activist:Unknown",
      id1: "TH CAT Telecom",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1409754000000],
      off: 0,
    },
    {
      id: "MassMutual Financial Group:End-user:Unknown",
      id1: "MassMutual Financial Group",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Saudi Aramco:Activist:Unknown",
      id1: "Saudi Aramco",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405111800000],
      off: 0,
    },
    {
      id: "Kenya Domain Registrar:Activist:Other",
      id1: "Kenya Domain Registrar",
      id2: "Activist",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1379970360000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "csgameservs.com:Unaffiliated:Web application",
      id1: "csgameservs.com",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361376253000],
      off: 0,
    },
    {
      id: "State of California - Health and Human Services Agency - Department of Health Care Services:System admin:Unknown",
      id1: "State of California - Health and Human Services Agency - Department of Health Care Services",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1407879480000],
      off: 0,
    },
    {
      id: "Wilson County School District:Other:Unknown",
      id1: "Wilson County School District",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360885043000],
      off: 0,
    },
    {
      id: "Auntie Anne's Inc.:Unaffiliated:Personal vehicle",
      id1: "Auntie Anne's Inc.",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Personal vehicle",
      },
      dt: [1389024000000],
      off: 0,
    },
    {
      id: "macrumors.com:Unaffiliated:Web application",
      id1: "macrumors.com",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1384468140000],
      off: 0,
    },
    {
      id: "Bashas' Family of Stores:Organized crime:Unknown",
      id1: "Bashas' Family of Stores",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1406299620000],
      off: 0,
    },
    {
      id: "Easton Area School District:System admin:LAN access",
      id1: "Easton Area School District",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1412094180000],
      off: 0,
    },
    {
      id: "Pfizer, Inc.:End-user:LAN access",
      id1: "Pfizer, Inc.",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361551125000],
      off: 0,
    },
    {
      id: "NRAD Medical Associates:Former employee:Web application",
      id1: "NRAD Medical Associates",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1411406940000],
      off: 0,
    },
    {
      id: "Russian Embassy in the US:Activist:Web application",
      id1: "Russian Embassy in the US",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399299300000],
      off: 0,
    },
    {
      id: "Broward County Court:End-user:LAN access",
      id1: "Broward County Court",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1403886060000],
      off: 0,
    },
    {
      id: "County of Baltimore:Other:Other",
      id1: "County of Baltimore",
      id2: "Other",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1383506520000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Elizabethton City School System:Manager:Unknown",
      id1: "Elizabethton City School System",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1410525120000],
      off: 0,
    },
    {
      id: "RBS Worldpay:Organized crime:Web application",
      id1: "RBS Worldpay",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1392676140000],
      off: 0,
    },
    {
      id: "Vitalit Health Network:End-user:LAN access",
      id1: "Vitalit Health Network",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1404405060000],
      off: 0,
    },
    {
      id: "Washington Network Group:Unaffiliated:Web application",
      id1: "Washington Network Group",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378572900000],
      off: 0,
    },
    {
      id: "Zynga:Executive:LAN access",
      id1: "Zynga",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361552618000],
      off: 0,
    },
    {
      id: "Republic of Turkey Ministry of National Education:Organized crime:Web application",
      id1: "Republic of Turkey Ministry of National Education",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1410452820000],
      off: 0,
    },
    {
      id: "Temple City Gas Station:Organized crime:Public facility",
      id1: "Temple City Gas Station",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(0, 253, 255, 0.7)",
      d: {
        type: "Public facility",
      },
      dt: [1379971800000],
      off: 0,
    },
    {
      id: "IHS Inc:Activist:Web application",
      id1: "IHS Inc",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1369846227000],
      off: 0,
    },
    {
      id: "TeaM Madleets:Activist:Unknown",
      id1: "TeaM Madleets",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1401088335155],
      off: 0,
    },
    {
      id: "Givaudan Fragrances Corporation:Other:Unknown",
      id1: "Givaudan Fragrances Corporation",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1382036040000],
      off: -20,
    },
    {
      id: "Givaudan Fragrances Corporation:Other:LAN access",
      id1: "Givaudan Fragrances Corporation",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1382036040000],
      off: 20,
    },
    {
      id: "Allied Bank Limited:Activist:Web application",
      id1: "Allied Bank Limited",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406161740000],
      off: 0,
    },
    {
      id: "University of Georgia:Other:Unknown",
      id1: "University of Georgia",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361334541000],
      off: 0,
    },
    {
      id: "Alabama Department of Corrections:End-user:LAN access",
      id1: "Alabama Department of Corrections",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1400856600000],
      off: 0,
    },
    {
      id: "Defense Finance and Accounting Service:Organized crime:Web application",
      id1: "Defense Finance and Accounting Service",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406041200000],
      off: 0,
    },
    {
      id: "Leicestershire Partnership NHS Trust:End-user:Unknown",
      id1: "Leicestershire Partnership NHS Trust",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1370471732000],
      off: 0,
    },
    {
      id: "LexisNexis:System admin:Unknown",
      id1: "LexisNexis",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360299497000],
      off: 0,
    },
    {
      id: "ARY News Channel:Activist:Web application",
      id1: "ARY News Channel",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1402924080000],
      off: 0,
    },
    {
      id: "Indian Passport and Visa Application Center in Manama, Bahrain:Activist:Web application",
      id1: "Indian Passport and Visa Application Center in Manama, Bahrain",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378859280000],
      off: 0,
    },
    {
      id: "Environmental Protection Agency:Organized crime:Email",
      id1: "Environmental Protection Agency",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(229, 153, 255, 0.7)",
      d: {
        type: "Email",
      },
      dt: [1402671960000],
      off: 0,
    },
    {
      id: "Murphy USA:Organized crime:Victim public area",
      id1: "Murphy USA",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1379791740000],
      off: 0,
    },
    {
      id: "JO Prime Minister of Jordan:Activist:Web application",
      id1: "JO Prime Minister of Jordan",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381248774000],
      off: 0,
    },
    {
      id: "Community Health Systems Inc:Nation-state:Other",
      id1: "Community Health Systems Inc",
      id2: "Nation-state",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1416510420000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Fundtech Corporation:Organized crime:Web application",
      id1: "Fundtech Corporation",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406038020000],
      off: 0,
    },
    {
      id: "Iowa Department of Human Services:Maintenance:Unknown",
      id1: "Iowa Department of Human Services",
      id2: "Maintenance",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1363027849000],
      off: 0,
    },
    {
      id: "translate.com:Activist:Web application",
      id1: "translate.com",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379970780000],
      off: 0,
    },
    {
      id: "Millard High School:Other:Other",
      id1: "Millard High School",
      id2: "Other",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1361207799000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cook Islands Ministry of Foreign Affairs:Unaffiliated:Web application",
      id1: "Cook Islands Ministry of Foreign Affairs",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378341780000],
      off: 0,
    },
    {
      id: "APEX CARY INSURANCE AGENCY:Organized crime:Email attachment",
      id1: "APEX CARY INSURANCE AGENCY",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(229, 153, 255, 0.7)",
      d: {
        type: "Email attachment",
      },
      dt: [1391198700000],
      off: 0,
    },
    {
      id: "TR Government of Turkey:Activist:Web application",
      id1: "TR Government of Turkey",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "HM Prison Services:Other:Unknown",
      id1: "HM Prison Services",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1409848560000],
      off: 0,
    },
    {
      id: "UA Government of Ukraine:Activist:Web application",
      id1: "UA Government of Ukraine",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "Microsoft:Activist:Unknown",
      id1: "Microsoft",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1389877020000],
      off: 0,
    },
    {
      id: "Symantec Corporation:State-affiliated:Unknown",
      id1: "Symantec Corporation",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405192769000],
      off: 0,
    },
    {
      id: "Central Pacific Bank:Unaffiliated:Victim public area",
      id1: "Central Pacific Bank",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1379004060000],
      off: 0,
    },
    {
      id: "Walmart:Cashier:Physical access",
      id1: "Walmart",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1372117722000],
      off: 0,
    },
    {
      id: "International Police Association of Australia:Activist:Backdoor or C2",
      id1: "International Police Association of Australia",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1363193937000],
      off: 0,
    },
    {
      id: "Vice Magazine:Activist:Web application",
      id1: "Vice Magazine",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1386356040000],
      off: 0,
    },
    {
      id: "Life Flight:Other:Unknown",
      id1: "Life Flight",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1370536082000],
      off: 0,
    },
    {
      id: "FileDen:Unaffiliated:Unknown",
      id1: "FileDen",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1365001093000],
      off: 0,
    },
    {
      id: "Volunteer State Community College:End-user:Unknown",
      id1: "Volunteer State Community College",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360790932000],
      off: 0,
    },
    {
      id: "Case Western Reserve University:Unaffiliated:Victim work area",
      id1: "Case Western Reserve University",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1361245561000],
      off: 0,
    },
    {
      id: "Edge Auto Sales:Executive:Physical access",
      id1: "Edge Auto Sales",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1360780483000],
      off: -20,
    },
    {
      id: "Edge Auto Sales:Executive:LAN access",
      id1: "Edge Auto Sales",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360780483000],
      off: 20,
    },
    {
      id: "Russian Government:Activist:Web application",
      id1: "Russian Government",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1382729700000],
      off: 0,
    },
    {
      id: "Consumer's Credit Union:Other:LAN access",
      id1: "Consumer's Credit Union",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1377465840000],
      off: 0,
    },
    {
      id: "US Navy:Executive:Unknown",
      id1: "US Navy",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1389203880000],
      off: 0,
    },
    {
      id: "Texas Tech University Health Sciences Center:End-user:Unknown",
      id1: "Texas Tech University Health Sciences Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1372782595000],
      off: 0,
    },
    {
      id: "Pakistan International Airline:Developer:Unknown",
      id1: "Pakistan International Airline",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378218660000],
      off: 0,
    },
    {
      id: "Apple Inc.:Activist:Unknown",
      id1: "Apple Inc.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1374784482000],
      off: 0,
    },
    {
      id: "Australian Federal Police:End-user:LAN access",
      id1: "Australian Federal Police",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1410188760000],
      off: 0,
    },
    {
      id: "Minnesota Department of Public Safety Driver and Vehicle Services (DVS):End-user:LAN access",
      id1: "Minnesota Department of Public Safety Driver and Vehicle Services (DVS)",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361494201000],
      off: 0,
    },
    {
      id: "LEAM DRILLING SYSTEMS:Organized crime:Email attachment",
      id1: "LEAM DRILLING SYSTEMS",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(229, 153, 255, 0.7)",
      d: {
        type: "Email attachment",
      },
      dt: [1391199600000],
      off: 0,
    },
    {
      id: "Sentara General Hospital:Other:LAN access",
      id1: "Sentara General Hospital",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1377212724000],
      off: 0,
    },
    {
      id: "MIssissippi Department of Public Safety:End-user:Physical access",
      id1: "MIssissippi Department of Public Safety",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1408721280000],
      off: 0,
    },
    {
      id: "MIssissippi Department of Public Safety:Unaffiliated:Physical access",
      id1: "MIssissippi Department of Public Safety",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1408721280000],
      off: 0,
    },
    {
      id: "LK Advani:Activist:Web application",
      id1: "LK Advani",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1398370860000],
      off: 0,
    },
    {
      id: "Defence Research and Development Organisation (DRDO):State-affiliated:Unknown",
      id1: "Defence Research and Development Organisation (DRDO)",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1409849940000],
      off: 0,
    },
    {
      id: "The Royal Bank of Scotland Group plc:Activist:Web application",
      id1: "The Royal Bank of Scotland Group plc",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1387215000000],
      off: 0,
    },
    {
      id: "Duke University Health System:Finance:Unknown",
      id1: "Duke University Health System",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1363295806000],
      off: 0,
    },
    {
      id: "City of Rogersville, AL:End-user:Unknown",
      id1: "City of Rogersville, AL",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1400268840000],
      off: 0,
    },
    {
      id: "Kalmar Airport:Activist:Web application",
      id1: "Kalmar Airport",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360621004000],
      off: 0,
    },
    {
      id: "Sprechman & Associates:End-user:LAN access",
      id1: "Sprechman & Associates",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360386947000],
      off: 0,
    },
    {
      id: "Eastern Illinois University:End-user:Unknown",
      id1: "Eastern Illinois University",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Eddie Merlot's:Manager:Physical access",
      id1: "Eddie Merlot's",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1378314360000],
      off: 0,
    },
    {
      id: "Chicago Board of Elections:Activist:Web application",
      id1: "Chicago Board of Elections",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1392677520000],
      off: 0,
    },
    {
      id: "Bringham Young University:End-user:Unknown",
      id1: "Bringham Young University",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360704057000],
      off: 0,
    },
    {
      id: "NZ Defense Force:Human resources:LAN access",
      id1: "NZ Defense Force",
      id2: "Human resources",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1381857660000],
      off: 0,
    },
    {
      id: "Hagerty Insurance:Developer:Unknown",
      id1: "Hagerty Insurance",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361572125000],
      off: 0,
    },
    {
      id: "Taiwan Air Force:Executive:Unknown",
      id1: "Taiwan Air Force",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1398960060000],
      off: 0,
    },
    {
      id: "Taiwan Air Force:Nation-state:Unknown",
      id1: "Taiwan Air Force",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1398960060000],
      off: 0,
    },
    {
      id: "Heber City Police Department:End-user:Unknown",
      id1: "Heber City Police Department",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1389546420000],
      off: 0,
    },
    {
      id: "Kali Linux:Activist:Unknown",
      id1: "Kali Linux",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399297997278],
      off: 0,
    },
    {
      id: "vBCoderz:Activist:Web application",
      id1: "vBCoderz",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360778014000],
      off: 0,
    },
    {
      id: "Valve Corporation:Force majeure:Unknown",
      id1: "Valve Corporation",
      id2: "Force majeure",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1382197320000],
      off: 0,
    },
    {
      id: "St. Louis Housing Authority:Manager:Physical access",
      id1: "St. Louis Housing Authority",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1408722780000],
      off: 0,
    },
    {
      id: "Gawker Media:Activist:Web application",
      id1: "Gawker Media",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1392403240000],
      off: 0,
    },
    {
      id: "MN Department of Public Safety:End-user:Unknown",
      id1: "MN Department of Public Safety",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1380643740000],
      off: 0,
    },
    {
      id: "gabonactu.com:Activist:Unknown",
      id1: "gabonactu.com",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1377200648000],
      off: 0,
    },
    {
      id: "Mango:Nation-state:Backdoor or C2",
      id1: "Mango",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1404416872000],
      off: 0,
    },
    {
      id: "USIS US Investigative Services:Nation-state:Unknown",
      id1: "USIS US Investigative Services",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408117080000],
      off: 0,
    },
    {
      id: "USIS US Investigative Services:State-affiliated:Unknown",
      id1: "USIS US Investigative Services",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408117080000],
      off: 0,
    },
    {
      id: "Indian Government Website:Activist:Unknown",
      id1: "Indian Government Website",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399484954292],
      off: 0,
    },
    {
      id: "BSNL:Activist:Web application",
      id1: "BSNL",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1382943900000],
      off: 0,
    },
    {
      id: "Florida Hospital:End-user:LAN access",
      id1: "Florida Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1406298960000],
      off: 0,
    },
    {
      id: "The Dow Chemical Company:State-affiliated:Unknown",
      id1: "The Dow Chemical Company",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405192769000],
      off: 0,
    },
    {
      id: "Santander bank:Other:Victim public area",
      id1: "Santander bank",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1407361080000],
      off: 0,
    },
    {
      id: "Kent Police Website:Unaffiliated:Web application",
      id1: "Kent Police Website",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378859280000],
      off: 0,
    },
    {
      id: "Redenet:Activist:Web application",
      id1: "Redenet",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1408386360000],
      off: 0,
    },
    {
      id: "Syracuse Police Department:Activist:Web application",
      id1: "Syracuse Police Department",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360712820000],
      off: 0,
    },
    {
      id: "Avira antivirus:Activist:Web application",
      id1: "Avira antivirus",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379294640000],
      off: 0,
    },
    {
      id: "Genesis Rehabilitation Service:End-user:Unknown",
      id1: "Genesis Rehabilitation Service",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1383685020000],
      off: 0,
    },
    {
      id: "Brentwood Primary Care Clinic:End-user:Victim work area",
      id1: "Brentwood Primary Care Clinic",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1378844012000],
      off: -40,
    },
    {
      id: "Capella University, Inc.:Finance:LAN access",
      id1: "Capella University, Inc.",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370361147000],
      off: 0,
    },
    {
      id: "Latvia State Employment Agency:Activist:Unknown",
      id1: "Latvia State Employment Agency",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1384117500000],
      off: 0,
    },
    {
      id: "Radiant Systems:System admin:Unknown",
      id1: "Radiant Systems",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1382711340000],
      off: 0,
    },
    {
      id: "National Research Council:Nation-state:Unknown",
      id1: "National Research Council",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1412105820000],
      off: 0,
    },
    {
      id: "Adults and Children with learning and Developmental Disabilities, Inc:Other:Victim work area",
      id1: "Adults and Children with learning and Developmental Disabilities, Inc",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1413302940000],
      off: 0,
    },
    {
      id: "Alabama Title Loans, Inc.:Finance:Physical access",
      id1: "Alabama Title Loans, Inc.",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1375721420000],
      off: 0,
    },
    {
      id: "Puthiyathalaimurai:Activist:Web application",
      id1: "Puthiyathalaimurai",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "Fifth Third Bancorp:Organized crime:Victim public area",
      id1: "Fifth Third Bancorp",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1370379137000],
      off: 0,
    },
    {
      id: "Siam Commercial Bank PCL:Organized crime:Victim grounds",
      id1: "Siam Commercial Bank PCL",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim grounds",
      },
      dt: [1384000740000],
      off: 0,
    },
    {
      id: "San Jose Medical Supply Company:Executive:Physical access",
      id1: "San Jose Medical Supply Company",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377147078000],
      off: 0,
    },
    {
      id: "NongHyup Bank:State-affiliated:Backdoor or C2",
      id1: "NongHyup Bank",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1389634320000],
      off: 0,
    },
    {
      id: "Inova Health System:System admin:Unknown",
      id1: "Inova Health System",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1417028172000],
      off: 0,
    },
    {
      id: "Valve Corporation:Activist:Web application",
      id1: "Valve Corporation",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360472194000],
      off: 0,
    },
    {
      id: "Victoria Police:Other:Unknown",
      id1: "Victoria Police",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1407288840000],
      off: 0,
    },
    {
      id: "Caribbean islands of Antigua and Barbuda:Activist:Web application",
      id1: "Caribbean islands of Antigua and Barbuda",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381248774000],
      off: 0,
    },
    {
      id: "Chicago Board of Elections:End-user:Inadequate technology",
      id1: "Chicago Board of Elections",
      id2: "End-user",
      type: "link",
      w: 10,
      d: {
        type: "Inadequate technology",
      },
      dt: [1392678060000],
      off: 0,
      c: "rgba(255, 207, 9, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "HSBC:End-user:LAN access",
      id1: "HSBC",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361591419000],
      off: -20,
    },
    {
      id: "City of Sumner:Other:Physical access",
      id1: "City of Sumner",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1388367900000],
      off: 0,
    },
    {
      id: "Google Inc.:Activist:Web application",
      id1: "Google Inc.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "UA Customs Service:Activist:Unknown",
      id1: "UA Customs Service",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1384532640000],
      off: 0,
    },
    {
      id: "Federal Bar Association:Activist:Web application",
      id1: "Federal Bar Association",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1377233931000],
      off: 0,
    },
    {
      id: "Healing Hearts:Manager:LAN access",
      id1: "Healing Hearts",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "University of Virginia Law School:Human resources:Unknown",
      id1: "University of Virginia Law School",
      id2: "Human resources",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1402315200000],
      off: 0,
    },
    {
      id: "MX Mexican House of Representatives:Activist:Web application",
      id1: "MX Mexican House of Representatives",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378303920000],
      off: 0,
    },
    {
      id: "Tinder:Unaffiliated:Web application",
      id1: "Tinder",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1404829020000],
      off: 0,
    },
    {
      id: "Homeplus:Executive:Unknown",
      id1: "Homeplus",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1419609968000],
      off: 0,
    },
    {
      id: "Central Tibetan Administration:Nation-state:Web application",
      id1: "Central Tibetan Administration",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1416490500000],
      off: 0,
    },
    {
      id: "Bar-Ilan University:Activist:Web application",
      id1: "Bar-Ilan University",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360639633000],
      off: 0,
    },
    {
      id: "GreenNet:Nation-state:Backdoor or C2",
      id1: "GreenNet",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1404416872000],
      off: 0,
    },
    {
      id: "St. Aldhelm's Academy:Organized crime:Email",
      id1: "St. Aldhelm's Academy",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(229, 153, 255, 0.7)",
      d: {
        type: "Email",
      },
      dt: [1415123340000],
      off: 0,
    },
    {
      id: "Zone Technologies:Activist:Web application",
      id1: "Zone Technologies",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360945200000],
      off: 0,
    },
    {
      id: "HTC Corporation:Executive:LAN access",
      id1: "HTC Corporation",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1377982380000],
      off: 0,
    },
    {
      id: "Royal Jubilee Hospital:Other:Physical access",
      id1: "Royal Jubilee Hospital",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377218871000],
      off: 0,
    },
    {
      id: "Deutsche Telekom AG:End-user:LAN access",
      id1: "Deutsche Telekom AG",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378076280000],
      off: 0,
    },
    {
      id: "Jaime Delgado Zegarra:Unaffiliated:Web application",
      id1: "Jaime Delgado Zegarra",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1394220360000],
      off: 0,
    },
    {
      id: "Google Inc.:State-affiliated:Unknown",
      id1: "Google Inc.",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405192769000],
      off: 0,
    },
    {
      id: "Arhan Technologies:Competitor:Remote access",
      id1: "Arhan Technologies",
      id2: "Competitor",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Remote access",
      },
      dt: [1403802000000],
      off: 0,
    },
    {
      id: "Arhan Technologies:Former employee:Remote access",
      id1: "Arhan Technologies",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Remote access",
      },
      dt: [1403802000000],
      off: 0,
    },
    {
      id: "Ateneo de Manila University:Activist:Unknown",
      id1: "Ateneo de Manila University",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399468968591],
      off: 0,
    },
    {
      id: "Trustmark Corp:Manager:Unknown",
      id1: "Trustmark Corp",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1400507220000],
      off: 0,
    },
    {
      id: "Washington State Department of Social and Health Services:Unaffiliated:Physical access",
      id1: "Washington State Department of Social and Health Services",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1372265706000],
      off: 0,
    },
    {
      id: "Hill Air Force Base:End-user:LAN access",
      id1: "Hill Air Force Base",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1377318667000],
      off: 0,
    },
    {
      id: "DigitalOcean:Activist:Web application",
      id1: "DigitalOcean",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378427280000],
      off: 0,
    },
    {
      id: "Prime Healthcare Services:Executive:Other",
      id1: "Prime Healthcare Services",
      id2: "Executive",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1375887133000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alabama State Employees Insurance Board :End-user:Physical access",
      id1: "Alabama State Employees Insurance Board ",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377289585000],
      off: -20,
    },
    {
      id: "Alabama State Employees Insurance Board :End-user:LAN access",
      id1: "Alabama State Employees Insurance Board ",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1377289585000],
      off: 20,
    },
    {
      id: "Alabama State Employees Insurance Board :Organized crime:Physical access",
      id1: "Alabama State Employees Insurance Board ",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377289585000],
      off: -20,
    },
    {
      id: "Alabama State Employees Insurance Board :Organized crime:LAN access",
      id1: "Alabama State Employees Insurance Board ",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1377289585000],
      off: 20,
    },
    {
      id: "Bluefield State College:Unaffiliated:Victim grounds",
      id1: "Bluefield State College",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim grounds",
      },
      dt: [1399855500000],
      off: 0,
    },
    {
      id: "English Defence League:Activist:Web application",
      id1: "English Defence League",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1377197990000],
      off: 20,
    },
    {
      id: "Hogan Services Inc. Health Care Premium Plan:System admin:Unknown",
      id1: "Hogan Services Inc. Health Care Premium Plan",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1363025277000],
      off: 0,
    },
    {
      id: "Florida Department of Health:Other:Physical access",
      id1: "Florida Department of Health",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1417541881000],
      off: 0,
    },
    {
      id: "Back Country Hospital:Former employee:Victim secure area",
      id1: "Back Country Hospital",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim secure area",
      },
      dt: [1381755000000],
      off: 0,
    },
    {
      id: "Aberdeen Hospital:End-user:Physical access",
      id1: "Aberdeen Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1406231220000],
      off: 0,
    },
    {
      id: "Ziggo B.V.:Other:Unknown",
      id1: "Ziggo B.V.",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1382710140000],
      off: 0,
    },
    {
      id: "Russian Radio:Activist:Web application",
      id1: "Russian Radio",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1408327680000],
      off: 0,
    },
    {
      id: "BJP Junagadh:Unaffiliated:Web application",
      id1: "BJP Junagadh",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1397152800000],
      off: 0,
    },
    {
      id: "Odense Council:Executive:LAN access",
      id1: "Odense Council",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1383684180000],
      off: 0,
    },
    {
      id: "South Florida State Hospital:End-user:LAN access",
      id1: "South Florida State Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "National Electoral Commission of Argentina:Unaffiliated:Web application",
      id1: "National Electoral Commission of Argentina",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1386965040000],
      off: 0,
    },
    {
      id: "Pentagon Force Protection Agency:Force majeure:Unknown",
      id1: "Pentagon Force Protection Agency",
      id2: "Force majeure",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1401996960000],
      off: 0,
    },
    {
      id: "Tampa General Hospital:Finance:LAN access",
      id1: "Tampa General Hospital",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1376924897000],
      off: 0,
    },
    {
      id: "North Korea:Activist:Web application",
      id1: "North Korea",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1410536520000],
      off: 0,
    },
    {
      id: "Japan's Ministry of Agriculture, Forestry and Fisheries:State-affiliated:Unknown",
      id1: "Japan's Ministry of Agriculture, Forestry and Fisheries",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1416498960000],
      off: 0,
    },
    {
      id: "Huntington Bank:Executive:LAN access",
      id1: "Huntington Bank",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1376956982000],
      off: 0,
    },
    {
      id: "Minnesota Department of Labor and Industry:End-user:LAN access",
      id1: "Minnesota Department of Labor and Industry",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1383335460000],
      off: 0,
    },
    {
      id: "Mercotour.com:Activist:Unknown",
      id1: "Mercotour.com",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361199347000],
      off: 0,
    },
    {
      id: "North Cumbria University Hospitals NHS Trust:Other:Carelessness",
      id1: "North Cumbria University Hospitals NHS Trust",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1361456724000],
      off: 0,
    },
    {
      id: "BIPS:Organized crime:Unknown",
      id1: "BIPS",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399384500000],
      off: 0,
    },
    {
      id: "Google Inc:Activist:Web application",
      id1: "Google Inc",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1382121180000],
      off: 20,
    },
    {
      id: "Bill & Melinda Gates Foundation:End-user:Unknown",
      id1: "Bill & Melinda Gates Foundation",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360188837000],
      off: 0,
    },
    {
      id: "Claire's Stores:Human resources:Carelessness",
      id1: "Claire's Stores",
      id2: "Human resources",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1361239266000],
      off: 0,
    },
    {
      id: "Federal Bureau of Investigation (FBI):End-user:Unknown",
      id1: "Federal Bureau of Investigation (FBI)",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1409241360000],
      off: 0,
    },
    {
      id: "Urological Associates of Southern Arizona, P.C.:End-user:Inadequate processes",
      id1: "Urological Associates of Southern Arizona, P.C.",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Inadequate processes",
      },
      dt: [1407769320000],
      off: 0,
    },
    {
      id: "Internal Revenue Service:Finance:LAN access",
      id1: "Internal Revenue Service",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1391404682000],
      off: 0,
    },
    {
      id: "United Nations Population Fund (UNFPA):Activist:Web application",
      id1: "United Nations Population Fund (UNFPA)",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388369040000],
      off: 0,
    },
    {
      id: "Moca Asian Bistro:Cashier:Physical access",
      id1: "Moca Asian Bistro",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1402627440000],
      off: 0,
    },
    {
      id: "LA Fitness:Other:Unknown",
      id1: "LA Fitness",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1363375160000],
      off: 0,
    },
    {
      id: "Namesco Limited:Force majeure:3rd party desktop",
      id1: "Namesco Limited",
      id2: "Force majeure",
      type: "link",
      w: 10,
      d: {
        type: "3rd party desktop",
      },
      dt: [1361289195000],
      off: 0,
      c: "rgba(252, 132, 39, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Club Soda:Organized crime:Unknown",
      id1: "Club Soda",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405704660000],
      off: 0,
    },
    {
      id: "US Postal Service:Other:Victim work area",
      id1: "US Postal Service",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1383745380000],
      off: 0,
    },
    {
      id: "TSYS:Other:Physical access",
      id1: "TSYS",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1380491040000],
      off: 0,
    },
    {
      id: "realestate.sy:Activist:Web application",
      id1: "realestate.sy",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1396886280000],
      off: 0,
    },
    {
      id: "Arrowe Park Hospital:End-user:Unknown",
      id1: "Arrowe Park Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1418423549000],
      off: 0,
    },
    {
      id: "Exel Transportation Services:Former employee:Other",
      id1: "Exel Transportation Services",
      id2: "Former employee",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1372782898000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "presidental office website of nepal :Terrorist:Unknown",
      id1: "presidental office website of nepal ",
      id2: "Terrorist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399499023633],
      off: 0,
    },
    {
      id: "Internal Revenue Services:Other:Unknown",
      id1: "Internal Revenue Services",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1417541317000],
      off: 0,
    },
    {
      id: "almshaheer.com:Activist:Web application",
      id1: "almshaheer.com",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360950780000],
      off: 0,
    },
    {
      id: "Heartland Payment Systems, Inc.:Organized crime:Web application",
      id1: "Heartland Payment Systems, Inc.",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1391572415000],
      off: 0,
    },
    {
      id: "ASPX Vietnam:Activist:Web application",
      id1: "ASPX Vietnam",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381248774000],
      off: 0,
    },
    {
      id: "Tinder:Developer:Unknown",
      id1: "Tinder",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1377467944000],
      off: 0,
    },
    {
      id: "Radio Telef_s ireann:Organized crime:Unknown",
      id1: "Radio Telef_s ireann",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408742340000],
      off: 0,
    },
    {
      id: "Fifth Third Bancorp:Cashier:LAN access",
      id1: "Fifth Third Bancorp",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370288391000],
      off: 0,
    },
    {
      id: "Uniontown Hospital:Activist:Unknown",
      id1: "Uniontown Hospital",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Elgin Police Department:Manager:LAN access",
      id1: "Elgin Police Department",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1408318200000],
      off: 0,
    },
    {
      id: "Prince Edward Island School Systems:Other:Physical access",
      id1: "Prince Edward Island School Systems",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1415891700000],
      off: 0,
    },
    {
      id: "Aetna:System admin:Unknown",
      id1: "Aetna",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1365805796000],
      off: 0,
    },
    {
      id: "British Pregnancy Advisory Service:Activist:Web application",
      id1: "British Pregnancy Advisory Service",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406557740000],
      off: 0,
    },
    {
      id: "US Social Security Administration:Executive:LAN access",
      id1: "US Social Security Administration",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1380035040000],
      off: 0,
    },
    {
      id: "Antioch Unified School District:End-user:Unknown",
      id1: "Antioch Unified School District",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Economic Development Association Scotland:Unaffiliated:Web application",
      id1: "Economic Development Association Scotland",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1363301392000],
      off: 0,
    },
    {
      id: "City of Madison:System admin:Unknown",
      id1: "City of Madison",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405088220000],
      off: 0,
    },
    {
      id: "Target Corporation:Organized crime:Web application",
      id1: "Target Corporation",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1390939570000],
      off: 0,
    },
    {
      id: "Bit9:State-affiliated:Web application",
      id1: "Bit9",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1382445420000],
      off: -20,
    },
    {
      id: "Bit9:State-affiliated:Backdoor or C2",
      id1: "Bit9",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1382445420000],
      off: 20,
    },
    {
      id: "City of Cuero, TX:Former employee:Physical access",
      id1: "City of Cuero, TX",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1388418840000],
      off: 0,
    },
    {
      id: "Americash Loans LLC:Activist:Web application",
      id1: "Americash Loans LLC",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1403102520000],
      off: 0,
    },
    {
      id: "KH Cambodia Anti-Corruption Unit (ACU):Activist:Unknown",
      id1: "KH Cambodia Anti-Corruption Unit (ACU)",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399555680000],
      off: 0,
    },
    {
      id: "Turkish Police Department:Activist:Unknown",
      id1: "Turkish Police Department",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378928580000],
      off: 0,
    },
    {
      id: "Department of Energy:Nation-state:Unknown",
      id1: "Department of Energy",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405101420000],
      off: 0,
    },
    {
      id: "Jumbo Chinese Buffet:End-user:Victim work area",
      id1: "Jumbo Chinese Buffet",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1389547200000],
      off: 0,
    },
    {
      id: "Jeju Bank Co., Ltd.:State-affiliated:Backdoor or C2",
      id1: "Jeju Bank Co., Ltd.",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1389635100000],
      off: 0,
    },
    {
      id: "Internal Revenue Service:Other:Other",
      id1: "Internal Revenue Service",
      id2: "Other",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1407116040000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Back of American and Chase:Activist:Web application",
      id1: "Back of American and Chase",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399417605567],
      off: 0,
    },
    {
      id: "AAPT:Activist:Unknown",
      id1: "AAPT",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1404941100000],
      off: -20,
    },
    {
      id: "McGowan Institute for Regenerative Medicine:Activist:Web application",
      id1: "McGowan Institute for Regenerative Medicine",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1370284593000],
      off: 0,
    },
    {
      id: "Lakewood Ranch Hospital:End-user:LAN access",
      id1: "Lakewood Ranch Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1418422924000],
      off: 0,
    },
    {
      id: "Daffodil University:Activist:Web application",
      id1: "Daffodil University",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378427280000],
      off: 0,
    },
    {
      id: "Boxcar Hosting:Customer:Web application",
      id1: "Boxcar Hosting",
      id2: "Customer",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1395780540000],
      off: 0,
    },
    {
      id: "Dun & Bradstreet Corporation:Organized crime:Web application",
      id1: "Dun & Bradstreet Corporation",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1380122100000],
      off: 0,
    },
    {
      id: "West Benagals public health engineering department:Activist:Web application",
      id1: "West Benagals public health engineering department",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399342113996],
      off: 0,
    },
    {
      id: "Japan’s Ministry of Agriculture, Forestry and Fisheries:Activist:Web application",
      id1: "Japan’s Ministry of Agriculture, Forestry and Fisheries",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399562697229],
      off: 0,
    },
    {
      id: "Juniper Networks, Inc.:State-affiliated:Unknown",
      id1: "Juniper Networks, Inc.",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405192769000],
      off: 0,
    },
    {
      id: "AhaShare:Unaffiliated:Web application",
      id1: "AhaShare",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1382035440000],
      off: 0,
    },
    {
      id: "Keetch Clothing:Activist:Unknown",
      id1: "Keetch Clothing",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1363290647000],
      off: 0,
    },
    {
      id: "Family Healthcare Group Inc. and Houston Compassionate Care:End-user:Physical access",
      id1: "Family Healthcare Group Inc. and Houston Compassionate Care",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1361491110000],
      off: 20,
    },
    {
      id: "Family Healthcare Group Inc. and Houston Compassionate Care:End-user:LAN access",
      id1: "Family Healthcare Group Inc. and Houston Compassionate Care",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361491110000],
      off: -20,
    },
    {
      id: "Cricfire:Unaffiliated:Web application",
      id1: "Cricfire",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361373802000],
      off: 0,
    },
    {
      id: "Quebec Institute of Public Health:Activist:Web application",
      id1: "Quebec Institute of Public Health",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1405953300000],
      off: 0,
    },
    {
      id: "JPMorgan Chase & Co.:Unaffiliated:Other",
      id1: "JPMorgan Chase & Co.",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1370287107000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jinbonet:Nation-state:Backdoor or C2",
      id1: "Jinbonet",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1404416872000],
      off: 0,
    },
    {
      id: "Greenhost:Nation-state:Backdoor or C2",
      id1: "Greenhost",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1404416872000],
      off: 0,
    },
    {
      id: "World Poker Tour Amateur Poker League:Unaffiliated:Web application",
      id1: "World Poker Tour Amateur Poker League",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1402571220000],
      off: 0,
    },
    {
      id: "CL Chile Ministry of Agriculture:Activist:Web application",
      id1: "CL Chile Ministry of Agriculture",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379458380000],
      off: 0,
    },
    {
      id: "Sunshine Pharmacy:End-user:LAN access",
      id1: "Sunshine Pharmacy",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1384193220000],
      off: 0,
    },
    {
      id: "Amazon Web Services, Inc.:Customer:Carelessness",
      id1: "Amazon Web Services, Inc.",
      id2: "Customer",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1396361580000],
      off: 0,
    },
    {
      id: "Amazon Web Services, Inc.:Unaffiliated:Carelessness",
      id1: "Amazon Web Services, Inc.",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1396361580000],
      off: 0,
    },
    {
      id: "Turkish ICA:Activist:Web application",
      id1: "Turkish ICA",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361554799000],
      off: 0,
    },
    {
      id: "California Workplace Health, Safety and Compensation Commission (WHSCC):End-user:LAN access",
      id1: "California Workplace Health, Safety and Compensation Commission (WHSCC)",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360022764000],
      off: 0,
    },
    {
      id: "Truecaller:Activist:Unknown",
      id1: "Truecaller",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1416501180000],
      off: 0,
    },
    {
      id: "Rent-A-Center:End-user:Carelessness",
      id1: "Rent-A-Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1383625140000],
      off: 0,
    },
    {
      id: "Valve Corporation:Other:Unknown",
      id1: "Valve Corporation",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1389619620000],
      off: 0,
    },
    {
      id: "Krungthai Bank:Organized crime:Victim public area",
      id1: "Krungthai Bank",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1408852020000],
      off: 0,
    },
    {
      id: "Centrelink:Manager:Unknown",
      id1: "Centrelink",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1410187140000],
      off: 0,
    },
    {
      id: "Bon Secours Regional Medical Center:End-user:LAN access",
      id1: "Bon Secours Regional Medical Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370376032000],
      off: 0,
    },
    {
      id: "Windstream Communications:Former employee:Physical access",
      id1: "Windstream Communications",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1360885394000],
      off: 0,
    },
    {
      id: "Chinese Government (unknown):Nation-state:LAN access",
      id1: "Chinese Government (unknown)",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1399661220000],
      off: 0,
    },
    {
      id: "UK Royal Air Force:End-user:Carelessness",
      id1: "UK Royal Air Force",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1403792880000],
      off: 0,
    },
    {
      id: "Washington Inventory Company:Human resources:Unknown",
      id1: "Washington Inventory Company",
      id2: "Human resources",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1379000220000],
      off: 0,
    },
    {
      id: "Rocky Mountain Spine Clinic:Finance:LAN access",
      id1: "Rocky Mountain Spine Clinic",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1416525300000],
      off: 0,
    },
    {
      id: "Los Angeles County Department of Public Social Services:End-user:LAN access",
      id1: "Los Angeles County Department of Public Social Services",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "National Oceanic and Atmospheric Administration:Other:LAN access",
      id1: "National Oceanic and Atmospheric Administration",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1418053416000],
      off: 0,
    },
    {
      id: "Sylvan Learning Center:End-user:Unknown",
      id1: "Sylvan Learning Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1377290166000],
      off: 0,
    },
    {
      id: "Christian Teen Forums:Unaffiliated:Web application",
      id1: "Christian Teen Forums",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361293752000],
      off: 0,
    },
    {
      id: "Wayne County Department of Personnel/Human Resources:Human resources:Unknown",
      id1: "Wayne County Department of Personnel/Human Resources",
      id2: "Human resources",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360815563000],
      off: 0,
    },
    {
      id: "Jaya TV:Activist:Web application",
      id1: "Jaya TV",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "PARK HILL SCHOOL DISTRICT:Former employee:Physical access",
      id1: "PARK HILL SCHOOL DISTRICT",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1418064906000],
      off: 0,
    },
    {
      id: "U.S. Sentencing Commission:Activist:Web application",
      id1: "U.S. Sentencing Commission",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1389620760000],
      off: 0,
    },
    {
      id: "Hotel Hippo:Other:Web application",
      id1: "Hotel Hippo",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1409841660000],
      off: 0,
    },
    {
      id: "Petro Stopping Center:Finance:LAN access",
      id1: "Petro Stopping Center",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1383598740000],
      off: 20,
    },
    {
      id: "Petro Stopping Center:Finance:Physical access",
      id1: "Petro Stopping Center",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1383598740000],
      off: -20,
    },
    {
      id: "US Department of the Air Force:Activist:Web application",
      id1: "US Department of the Air Force",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1380486240000],
      off: 0,
    },
    {
      id: "Office of Dr. Sandra Bujanda-Wagner:End-user:Unknown",
      id1: "Office of Dr. Sandra Bujanda-Wagner",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Woodrow Wilson National Fellowship Foundation:System admin:Unknown",
      id1: "Woodrow Wilson National Fellowship Foundation",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360553958000],
      off: 0,
    },
    {
      id: "Philippine Navy:Activist:Web application",
      id1: "Philippine Navy",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1377233474000],
      off: 0,
    },
    {
      id: "App Developer Magazine:Activist:Web application",
      id1: "App Developer Magazine",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378427280000],
      off: 0,
    },
    {
      id: "ShareThis, Inc.:Activist:Web application",
      id1: "ShareThis, Inc.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378835760000],
      off: 0,
    },
    {
      id: "Goldman Sachs Group, Inc.:System admin:Unknown",
      id1: "Goldman Sachs Group, Inc.",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378220880000],
      off: 0,
    },
    {
      id: "Moseslaketalk.com:Executive:LAN access",
      id1: "Moseslaketalk.com",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1381262834000],
      off: 0,
    },
    {
      id: "Bank of Montreal:Unaffiliated:Physical access",
      id1: "Bank of Montreal",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1402606920000],
      off: 0,
    },
    {
      id: "City of Wayland Public Schools:Finance:LAN access",
      id1: "City of Wayland Public Schools",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1380048900000],
      off: 0,
    },
    {
      id: "Kaiser Permanente Medical Care Program:Other:Unknown",
      id1: "Kaiser Permanente Medical Care Program",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1379084880000],
      off: 0,
    },
    {
      id: "Aflac Inc:End-user:Unknown",
      id1: "Aflac Inc",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1409855220000],
      off: 0,
    },
    {
      id: "Netlima:Activist:Unknown",
      id1: "Netlima",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1407104400000],
      off: 0,
    },
    {
      id: "Reyes Beverage Group:Auditor:Unknown",
      id1: "Reyes Beverage Group",
      id2: "Auditor",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408378020000],
      off: 0,
    },
    {
      id: "SodaHead.com:Unaffiliated:Web application",
      id1: "SodaHead.com",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1383611100000],
      off: 0,
    },
    {
      id: "Wedgewood Legacy Medical:Executive:Random error",
      id1: "Wedgewood Legacy Medical",
      id2: "Executive",
      type: "link",
      w: 10,
      d: {
        type: "Random error",
      },
      dt: [1375891298000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "East San Gabriel Valley Regional Occupational Program:End-user:Unknown",
      id1: "East San Gabriel Valley Regional Occupational Program",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360084180000],
      off: 0,
    },
    {
      id: "Integral Development Company:Executive:Unknown",
      id1: "Integral Development Company",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1383625560000],
      off: 0,
    },
    {
      id: "International Atomic Energy Agency:Activist:Unknown",
      id1: "International Atomic Energy Agency",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361508842000],
      off: 0,
    },
    {
      id: "AAPT:Activist:Web application",
      id1: "AAPT",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361490180000],
      off: 20,
    },
    {
      id: "Plateau:Activist:Web application",
      id1: "Plateau",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1377127870000],
      off: 0,
    },
    {
      id: "Eramet Comilog Manganese:Activist:Web application",
      id1: "Eramet Comilog Manganese",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1377012159000],
      off: 0,
    },
    {
      id: "Federal Government of Brazil:Activist:Web application",
      id1: "Federal Government of Brazil",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1394648400000],
      off: 0,
    },
    {
      id: "Opening Ceremony Online LLC:Unaffiliated:Web application",
      id1: "Opening Ceremony Online LLC",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1364315249000],
      off: 0,
    },
    {
      id: "East Kent Hospital Trust:End-user:LAN access",
      id1: "East Kent Hospital Trust",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1418431655000],
      off: 0,
    },
    {
      id: "Yahoo! Inc.:State-affiliated:Unknown",
      id1: "Yahoo! Inc.",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405192769000],
      off: 0,
    },
    {
      id: "IN Punjab Public Works:Activist:Web application",
      id1: "IN Punjab Public Works",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381248774000],
      off: 0,
    },
    {
      id: "Equinox:Cashier:Physical access",
      id1: "Equinox",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1408316280000],
      off: 0,
    },
    {
      id: "Adventist Health System/Florida Hospital Celebration:End-user:LAN access",
      id1: "Adventist Health System/Florida Hospital Celebration",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370541141000],
      off: 0,
    },
    {
      id: "Rothamsted Research:Unaffiliated:Unknown",
      id1: "Rothamsted Research",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1370285869000],
      off: 0,
    },
    {
      id: "IE Road Safety Authority:Developer:Unknown",
      id1: "IE Road Safety Authority",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1384627200000],
      off: 0,
    },
    {
      id: "Los Alamos National Laboratory:End-user:Physical access",
      id1: "Los Alamos National Laboratory",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1372184108000],
      off: 20,
    },
    {
      id: "Los Alamos National Laboratory:End-user:LAN access",
      id1: "Los Alamos National Laboratory",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1372184108000],
      off: -20,
    },
    {
      id: "FOX News Network, LLC:System admin:Unknown",
      id1: "FOX News Network, LLC",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1383785520000],
      off: 0,
    },
    {
      id: "Albany International Airport:Unaffiliated:Web application",
      id1: "Albany International Airport",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1372446872000],
      off: 0,
    },
    {
      id: "Ephrata Community Hospital:End-user:LAN access",
      id1: "Ephrata Community Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Big Brothers, Big Sisters:Other:Physical access",
      id1: "Big Brothers, Big Sisters",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1387220160000],
      off: 0,
    },
    {
      id: "Tom Sawyer Software:Unaffiliated:Web application",
      id1: "Tom Sawyer Software",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1400257620000],
      off: 0,
    },
    {
      id: "Phoenix Cardiac Surgery Group:Other:Unknown",
      id1: "Phoenix Cardiac Surgery Group",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361317190000],
      off: 0,
    },
    {
      id: "Florida Hospital Tampa/University Community Hospital:End-user:Physical access",
      id1: "Florida Hospital Tampa/University Community Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1361508496000],
      off: 20,
    },
    {
      id: "Florida Hospital Tampa/University Community Hospital:End-user:LAN access",
      id1: "Florida Hospital Tampa/University Community Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361508496000],
      off: -20,
    },
    {
      id: "CSS Corp:Activist:Web application",
      id1: "CSS Corp",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361377045000],
      off: 0,
    },
    {
      id: "KTSU Texas Southern University:End-user:LAN access",
      id1: "KTSU Texas Southern University",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Alliance Workplace Solutions:Other:Unknown",
      id1: "Alliance Workplace Solutions",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1418051488000],
      off: 0,
    },
    {
      id: "East Baton Rouge Acceleration Academy:Other:Victim work area",
      id1: "East Baton Rouge Acceleration Academy",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1363296706000],
      off: 0,
    },
    {
      id: "Prudential Financial Inc:Cashier:LAN access",
      id1: "Prudential Financial Inc",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1404828540000],
      off: 0,
    },
    {
      id: "Prudential Financial Inc:Unaffiliated:LAN access",
      id1: "Prudential Financial Inc",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1404828540000],
      off: 0,
    },
    {
      id: "RaceWay Gas:Organized crime:Victim public area",
      id1: "RaceWay Gas",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1372783370000],
      off: 0,
    },
    {
      id: "Abeo Management Corporation:End-user:LAN access",
      id1: "Abeo Management Corporation",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1394650260000],
      off: 0,
    },
    {
      id: "Israeli Airforce:Activist:Web application",
      id1: "Israeli Airforce",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360784251000],
      off: 0,
    },
    {
      id: "Massachusetts Bay Transportation Authority:Unaffiliated:Other",
      id1: "Massachusetts Bay Transportation Authority",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1397050920000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Riot Games, Inc.:Unaffiliated:Web application",
      id1: "Riot Games, Inc.",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1377094308000],
      off: 0,
    },
    {
      id: "McDonald's Corp:Cashier:Physical access",
      id1: "McDonald's Corp",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1400270100000],
      off: 0,
    },
    {
      id: "McDonald's Corp:Unaffiliated:Physical access",
      id1: "McDonald's Corp",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1400270100000],
      off: 0,
    },
    {
      id: "Montana State University:System admin:Unknown",
      id1: "Montana State University",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360300565000],
      off: 0,
    },
    {
      id: "Exxon Mobil Corporation:End-user:Physical access",
      id1: "Exxon Mobil Corporation",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1381262834000],
      off: 0,
    },
    {
      id: "BZ Brazil Air Force:Activist:Web application",
      id1: "BZ Brazil Air Force",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "E. I. du Pont de Nemours and Company:State-affiliated:Other",
      id1: "E. I. du Pont de Nemours and Company",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1394518860000],
      off: -20,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "E. I. du Pont de Nemours and Company:Unaffiliated:Other",
      id1: "E. I. du Pont de Nemours and Company",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1394518860000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "E. I. du Pont de Nemours and Company:Former employee:Other",
      id1: "E. I. du Pont de Nemours and Company",
      id2: "Former employee",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1394518860000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Rajasthan Government:Activist:Unknown",
      id1: "Rajasthan Government",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399420209777],
      off: 0,
    },
    {
      id: "General Motors Co:Other:LAN access",
      id1: "General Motors Co",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1386530340000],
      off: 0,
    },
    {
      id: "Brentwood Primary Care Clinic:End-user:Physical access",
      id1: "Brentwood Primary Care Clinic",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1370476315000],
      off: 0,
    },
    {
      id: "Brentwood Primary Care Clinic:End-user:LAN access",
      id1: "Brentwood Primary Care Clinic",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370476315000],
      off: 40,
    },
    {
      id: "Urban League of Columbus, OH:Executive:LAN access",
      id1: "Urban League of Columbus, OH",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1379527020000],
      off: 20,
    },
    {
      id: "Urban League of Columbus, OH:Executive:Physical access",
      id1: "Urban League of Columbus, OH",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1379527020000],
      off: -20,
    },
    {
      id: "Haneda Airport:End-user:Unknown",
      id1: "Haneda Airport",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1398357720000],
      off: 0,
    },
    {
      id: "Institutional Shareholder Services:End-user:LAN access",
      id1: "Institutional Shareholder Services",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "TooJay:Cashier:Physical access",
      id1: "TooJay",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377982740000],
      off: 0,
    },
    {
      id: "KCG Holdings Inc:Executive:LAN access",
      id1: "KCG Holdings Inc",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1402684380000],
      off: 0,
    },
    {
      id: "Chase Bank:Organized crime:Public facility",
      id1: "Chase Bank",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(0, 253, 255, 0.7)",
      d: {
        type: "Public facility",
      },
      dt: [1377218097000],
      off: -40,
    },
    {
      id: "St. Joseph Health:End-user:Carelessness",
      id1: "St. Joseph Health",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1406227620000],
      off: 0,
    },
    {
      id: "Mass Event:Activist:Web application",
      id1: "Mass Event",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379606100000],
      off: 0,
    },
    {
      id: "DSW SHOE WAREHOUSE, INC:Organized crime:Unknown",
      id1: "DSW SHOE WAREHOUSE, INC",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1391791331000],
      off: 0,
    },
    {
      id: "The Central Bank of Kenya:Activist:Web application",
      id1: "The Central Bank of Kenya",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1413941460000],
      off: 0,
    },
    {
      id: "Stanford University:Activist:Web application",
      id1: "Stanford University",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1364498203000],
      off: 0,
    },
    {
      id: "Massachusetts Mutual Life Insurance Company:Manager:Unknown",
      id1: "Massachusetts Mutual Life Insurance Company",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1388948160000],
      off: 0,
    },
    {
      id: "Preventine Life Care Pvt Ltd:End-user:Unknown",
      id1: "Preventine Life Care Pvt Ltd",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408325160000],
      off: 0,
    },
    {
      id: "Biogenesis of America:Former employee:Victim work area",
      id1: "Biogenesis of America",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1377051524000],
      off: 0,
    },
    {
      id: "Texas Auto Center Dealership:Other:LAN access",
      id1: "Texas Auto Center Dealership",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1388878800000],
      off: 0,
    },
    {
      id: "Children's Healthcare of Atlanta:Other:LAN access",
      id1: "Children's Healthcare of Atlanta",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1418070542000],
      off: 0,
    },
    {
      id: "Manpower Corporation:Activist:Web application",
      id1: "Manpower Corporation",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1410564840000],
      off: 0,
    },
    {
      id: "Rotech Healthcare Inc:End-user:LAN access",
      id1: "Rotech Healthcare Inc",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1384176960000],
      off: 0,
    },
    {
      id: "Fairfax County Public Schools:End-user:Non-corporate",
      id1: "Fairfax County Public Schools",
      id2: "End-user",
      type: "link",
      w: 10,
      d: {
        type: "Non-corporate",
      },
      dt: [1406938380000],
      off: 0,
      c: "rgba(255, 207, 9, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alabama Social Security Administration:Call center:LAN access",
      id1: "Alabama Social Security Administration",
      id2: "Call center",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1388374500000],
      off: 0,
    },
    {
      id: "Three Oaks High School:Other:Unknown",
      id1: "Three Oaks High School",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408380480000],
      off: 0,
    },
    {
      id: "Thunder Burger and Bar:Cashier:Physical access",
      id1: "Thunder Burger and Bar",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1382708880000],
      off: 0,
    },
    {
      id: "ECS Tuning:Unaffiliated:Web application",
      id1: "ECS Tuning",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1363355419000],
      off: 0,
    },
    {
      id: "United States Federal Reserve:Activist:Unknown",
      id1: "United States Federal Reserve",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Curledge Street Academy:End-user:Unknown",
      id1: "Curledge Street Academy",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1406838480000],
      off: 0,
    },
    {
      id: "Kaiser Permante Bellflower Medical Center:Other:LAN access",
      id1: "Kaiser Permante Bellflower Medical Center",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1408023420000],
      off: 0,
    },
    {
      id: "Korn/Ferry International:Former employee:LAN access",
      id1: "Korn/Ferry International",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1399076820000],
      off: 0,
    },
    {
      id: "Saudi Binladen Group:Activist:Unknown",
      id1: "Saudi Binladen Group",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1407104760000],
      off: 0,
    },
    {
      id: "Smartphone Experts:Unaffiliated:Web application",
      id1: "Smartphone Experts",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1415801820000],
      off: 0,
    },
    {
      id: "Belfast City Council:End-user:Random error",
      id1: "Belfast City Council",
      id2: "End-user",
      type: "link",
      w: 10,
      d: {
        type: "Random error",
      },
      dt: [1360957364000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Belfast City Council:Unaffiliated:Random error",
      id1: "Belfast City Council",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      d: {
        type: "Random error",
      },
      dt: [1360957364000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jos A Bank Clothiers Inc:Cashier:LAN access",
      id1: "Jos A Bank Clothiers Inc",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1396883340000],
      off: 0,
    },
    {
      id: "Environmental Protection Agency:System admin:Unknown",
      id1: "Environmental Protection Agency",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1412176200000],
      off: 0,
    },
    {
      id: "Bach Khoa Internetwork Security Company:Unaffiliated:Web application",
      id1: "Bach Khoa Internetwork Security Company",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361302558000],
      off: 0,
    },
    {
      id: "Premier Tax:Manager:LAN access",
      id1: "Premier Tax",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Lohud.com:System admin:Physical access",
      id1: "Lohud.com",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1364486741000],
      off: 0,
    },
    {
      id: "Jackson Health System:End-user:Physical access",
      id1: "Jackson Health System",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1361426560000],
      off: 0,
    },
    {
      id: "British Pregnancy Advisory Service:System admin:Unknown",
      id1: "British Pregnancy Advisory Service",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1394651580000],
      off: 0,
    },
    {
      id: "British Pregnancy Advisory Service:Unaffiliated:Unknown",
      id1: "British Pregnancy Advisory Service",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1394651580000],
      off: 20,
    },
    {
      id: "Yemen Ministry of Human Rights:Activist:Web application",
      id1: "Yemen Ministry of Human Rights",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399862400000],
      off: 0,
    },
    {
      id: "Kochi Metro Rail Corporation:Activist:Web application",
      id1: "Kochi Metro Rail Corporation",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1408024980000],
      off: 0,
    },
    {
      id: "Providence Physician Services Company:End-user:Physical access",
      id1: "Providence Physician Services Company",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1380846000000],
      off: 0,
    },
    {
      id: "NetCologne:Activist:Web application",
      id1: "NetCologne",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381840140000],
      off: 0,
    },
    {
      id: "US Postal Service:Organized crime:Public facility",
      id1: "US Postal Service",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(0, 253, 255, 0.7)",
      d: {
        type: "Public facility",
      },
      dt: [1382469600000],
      off: 0,
    },
    {
      id: "Monroeville 911 dispatch center:End-user:LAN access",
      id1: "Monroeville 911 dispatch center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370545724000],
      off: 0,
    },
    {
      id: "zssf.gov.cn:Activist:Web application",
      id1: "zssf.gov.cn",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360945502000],
      off: 0,
    },
    {
      id: "Belgacom SA:Nation-state:Backdoor or C2",
      id1: "Belgacom SA",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1384531200000],
      off: -20,
    },
    {
      id: "Total Systems Heating and Cooling Inc:Organized crime:Email attachment",
      id1: "Total Systems Heating and Cooling Inc",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(229, 153, 255, 0.7)",
      d: {
        type: "Email attachment",
      },
      dt: [1391199000000],
      off: 0,
    },
    {
      id: "Citizens Bancorp/PA:Cashier:LAN access",
      id1: "Citizens Bancorp/PA",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1404828360000],
      off: 0,
    },
    {
      id: "Citizens Bancorp/PA:Unaffiliated:LAN access",
      id1: "Citizens Bancorp/PA",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1404828360000],
      off: 0,
    },
    {
      id: "Department of Defense:Finance:LAN access",
      id1: "Department of Defense",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1379972340000],
      off: 0,
    },
    {
      id: "Commercial Bank of Ethiopia:Activist:Web application",
      id1: "Commercial Bank of Ethiopia",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361284648000],
      off: 0,
    },
    {
      id: "Checkers:Manager:Physical access",
      id1: "Checkers",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1410445380000],
      off: 0,
    },
    {
      id: "City of Victoria:Organized crime:Web application",
      id1: "City of Victoria",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1415122680000],
      off: 0,
    },
    {
      id: "Office of Ronald Ferguson, Jr, DPM:Executive:Victim work area",
      id1: "Office of Ronald Ferguson, Jr, DPM",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1361394260000],
      off: 0,
    },
    {
      id: "Syrian Investment Agency:Activist:Web application",
      id1: "Syrian Investment Agency",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381248774000],
      off: 0,
    },
    {
      id: "Medway Maritime Hospital:End-user:Unknown",
      id1: "Medway Maritime Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1418431294000],
      off: -20,
    },
    {
      id: "github.com:Nation-state:Web application",
      id1: "github.com",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1410210600000],
      off: 0,
    },
    {
      id: "YTN:State-affiliated:Backdoor or C2",
      id1: "YTN",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1389636720000],
      off: 0,
    },
    {
      id: "The Home Depot:Human resources:LAN access",
      id1: "The Home Depot",
      id2: "Human resources",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360280499000],
      off: 0,
    },
    {
      id: "Baltimore Police Department:Other:LAN access",
      id1: "Baltimore Police Department",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1377467259000],
      off: 0,
    },
    {
      id: "Internal Revenue Service:End-user:Physical access",
      id1: "Internal Revenue Service",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1382713320000],
      off: 0,
    },
    {
      id: "American Superconductor Corporation:Executive:LAN access",
      id1: "American Superconductor Corporation",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378914660000],
      off: 0,
    },
    {
      id: "American Superconductor Corporation:Competitor:LAN access",
      id1: "American Superconductor Corporation",
      id2: "Competitor",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378914660000],
      off: 0,
    },
    {
      id: "Rajasthan Information and Public Relations Department:Activist:Web application",
      id1: "Rajasthan Information and Public Relations Department",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1405957380000],
      off: 0,
    },
    {
      id: "Banco do Brasil SA:Developer:Unknown",
      id1: "Banco do Brasil SA",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1386966060000],
      off: 0,
    },
    {
      id: "Israeli Government:Activist:Web application",
      id1: "Israeli Government",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406552520000],
      off: 0,
    },
    {
      id: "DiarioBasta.com:Unaffiliated:Web application",
      id1: "DiarioBasta.com",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361550873000],
      off: 0,
    },
    {
      id: "Undead Labs:Activist:Web application",
      id1: "Undead Labs",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "Florida Department of Health:End-user:Unknown",
      id1: "Florida Department of Health",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1383319140000],
      off: 0,
    },
    {
      id: "Bank Sarasin:System admin:Physical access",
      id1: "Bank Sarasin",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1360628493000],
      off: 0,
    },
    {
      id: "Butera's Restaurant:Cashier:Physical access",
      id1: "Butera's Restaurant",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1379545380000],
      off: 0,
    },
    {
      id: "Berrien County Sheriff's Department:Activist:Web application",
      id1: "Berrien County Sheriff's Department",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361292900000],
      off: 0,
    },
    {
      id: "Cheyney University:Other:Unknown",
      id1: "Cheyney University",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1407115140000],
      off: 0,
    },
    {
      id: '"a college in Songjiang District":Unaffiliated:Unknown',
      id1: '"a college in Songjiang District"',
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399663980000],
      off: 0,
    },
    {
      id: "Minnesota National Guard:Other:LAN access",
      id1: "Minnesota National Guard",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1387310940000],
      off: 0,
    },
    {
      id: "Spellman High Voltage Electronics Corporation:End-user:LAN access",
      id1: "Spellman High Voltage Electronics Corporation",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Schneck Medical Center:End-user:Unknown",
      id1: "Schneck Medical Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Drago's Seafood Restaurant:Cashier:Physical access",
      id1: "Drago's Seafood Restaurant",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1362012666000],
      off: 0,
    },
    {
      id: "IN Rajasthan Government:Unaffiliated:Web application",
      id1: "IN Rajasthan Government",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "US Postal Service:Cashier:Physical access",
      id1: "US Postal Service",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1378564560000],
      off: 0,
    },
    {
      id: "Gabonese Republic Office of the President:Activist:Web application",
      id1: "Gabonese Republic Office of the President",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378859280000],
      off: 0,
    },
    {
      id: "Grant Income Tax Bookkeeping and Check Cash:Manager:LAN access",
      id1: "Grant Income Tax Bookkeeping and Check Cash",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1365530479000],
      off: 0,
    },
    {
      id: "TurkTrust:System admin:Unknown",
      id1: "TurkTrust",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361423873000],
      off: 0,
    },
    {
      id: "Ace Homecare LLC:Unaffiliated:Personal residence",
      id1: "Ace Homecare LLC",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Personal residence",
      },
      dt: [1369836171000],
      off: 0,
    },
    {
      id: "Sky Network Television Ltd:Activist:Unknown",
      id1: "Sky Network Television Ltd",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1407852600000],
      off: 0,
    },
    {
      id: "Chase Bank:Organized crime:Web application",
      id1: "Chase Bank",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406038560000],
      off: 0,
    },
    {
      id: "Lawrence Melrose Medical Electronic Record:Former employee:Remote access",
      id1: "Lawrence Melrose Medical Electronic Record",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Remote access",
      },
      dt: [1404062820000],
      off: 0,
    },
    {
      id: "Verizon Communications Inc:Other:LAN access",
      id1: "Verizon Communications Inc",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1403919360000],
      off: 0,
    },
    {
      id: "E-Sports Entertainment Association:Developer:Software update",
      id1: "E-Sports Entertainment Association",
      id2: "Developer",
      type: "link",
      w: 10,
      d: {
        type: "Software update",
      },
      dt: [1408368240000],
      off: 0,
      c: "rgba(252, 132, 39, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Loyola University Medical Center:End-user:LAN access",
      id1: "Loyola University Medical Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1379519220000],
      off: 0,
    },
    {
      id: "Commonwealth Scientific and Industrial Research Organisation (CSIRO):Other:LAN access",
      id1: "Commonwealth Scientific and Industrial Research Organisation (CSIRO)",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1386445920000],
      off: -20,
    },
    {
      id: "Commonwealth Scientific and Industrial Research Organisation (CSIRO):Other:Physical access",
      id1: "Commonwealth Scientific and Industrial Research Organisation (CSIRO)",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1386445920000],
      off: 20,
    },
    {
      id: "Florida Digestive Health Specialists, LLP:End-user:Physical access",
      id1: "Florida Digestive Health Specialists, LLP",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1399296660000],
      off: 0,
    },
    {
      id: "IN Board of Higher Secondary Education Delhi, India:Activist:Web application",
      id1: "IN Board of Higher Secondary Education Delhi, India",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1380823260000],
      off: 0,
    },
    {
      id: "City of Wichita, KS:Activist:Web application",
      id1: "City of Wichita, KS",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381512840000],
      off: 0,
    },
    {
      id: "Hindustan Times:Activist:Web application",
      id1: "Hindustan Times",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381841160000],
      off: 0,
    },
    {
      id: "Nippon Express:Other:Victim grounds",
      id1: "Nippon Express",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim grounds",
      },
      dt: [1361393184000],
      off: 0,
    },
    {
      id: "AR Argentina Military:Activist:Web application",
      id1: "AR Argentina Military",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "Tax Administration Jamaica:System admin:LAN access",
      id1: "Tax Administration Jamaica",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1415664060000],
      off: 0,
    },
    {
      id: "IN State Bank of Patiala:Activist:Web application",
      id1: "IN State Bank of Patiala",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "National Security Service of the Republic of Armenia:Activist:Web application",
      id1: "National Security Service of the Republic of Armenia",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1384015680000],
      off: 0,
    },
    {
      id: "Nielsen Audio:Human resources:Unknown",
      id1: "Nielsen Audio",
      id2: "Human resources",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1412093280000],
      off: 0,
    },
    {
      id: "SeaWorld Entertainment Inc:Former employee:Victim public area",
      id1: "SeaWorld Entertainment Inc",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1388443620000],
      off: 0,
    },
    {
      id: "Thunder Bay Regional Health Sciences Centre:End-user:LAN access",
      id1: "Thunder Bay Regional Health Sciences Centre",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370458035000],
      off: 0,
    },
    {
      id: "Symbius Medical:Other:LAN access",
      id1: "Symbius Medical",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1416523500000],
      off: 0,
    },
    {
      id: "AdNet Telecom:Unaffiliated:Unknown",
      id1: "AdNet Telecom",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1387208040000],
      off: 0,
    },
    {
      id: "King Drug & Home Care:End-user:Unknown",
      id1: "King Drug & Home Care",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Quest Diagnostics:End-user:LAN access",
      id1: "Quest Diagnostics",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360363512000],
      off: 0,
    },
    {
      id: "Korea Credit Bureau:End-user:LAN access",
      id1: "Korea Credit Bureau",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1391382180000],
      off: 20,
    },
    {
      id: "Korea Credit Bureau:End-user:Physical access",
      id1: "Korea Credit Bureau",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1391382180000],
      off: -20,
    },
    {
      id: "Purdue University:Unaffiliated:Unknown",
      id1: "Purdue University",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1404222180000],
      off: 0,
    },
    {
      id: "Virgin Atlantic Airways:End-user:Physical access",
      id1: "Virgin Atlantic Airways",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1360781006000],
      off: 20,
    },
    {
      id: "Virgin Atlantic Airways:End-user:LAN access",
      id1: "Virgin Atlantic Airways",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360781006000],
      off: -20,
    },
    {
      id: "Electronic Payments Inc.:Organized crime:Web application",
      id1: "Electronic Payments Inc.",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406039760000],
      off: 0,
    },
    {
      id: "Benjamin F. Edwards Co.:Organized crime:Unknown",
      id1: "Benjamin F. Edwards Co.",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1410447000000],
      off: 0,
    },
    {
      id: "Minneapolis City Hall:End-user:LAN access",
      id1: "Minneapolis City Hall",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361554414000],
      off: 0,
    },
    {
      id: "Inputs.io:Organized crime:Unknown",
      id1: "Inputs.io",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1384653540000],
      off: -20,
    },
    {
      id: "Inputs.io:Organized crime:Web application",
      id1: "Inputs.io",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1384653540000],
      off: 20,
    },
    {
      id: "Iron Mountain Inc:Other:Unknown",
      id1: "Iron Mountain Inc",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1402629000000],
      off: 0,
    },
    {
      id: "Citibank:Other:Unknown",
      id1: "Citibank",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1388961420000],
      off: 0,
    },
    {
      id: "Police Service of Northern Ireland:Terrorist:Victim secure area",
      id1: "Police Service of Northern Ireland",
      id2: "Terrorist",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim secure area",
      },
      dt: [1407100500000],
      off: 0,
    },
    {
      id: "Federal Reserve Bank:Activist:Web application",
      id1: "Federal Reserve Bank",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378742820000],
      off: 0,
    },
    {
      id: "Los Angeles Times:Other:Remote access",
      id1: "Los Angeles Times",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Remote access",
      },
      dt: [1410803280000],
      off: 0,
    },
    {
      id: "linkinpark.co.il:Activist:Unknown",
      id1: "linkinpark.co.il",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1386357180000],
      off: 0,
    },
    {
      id: "Abu Dhabi International Montessori Nursery:Unaffiliated:Web application",
      id1: "Abu Dhabi International Montessori Nursery",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378427280000],
      off: 0,
    },
    {
      id: "Bit9, Inc.:State-affiliated:Web application",
      id1: "Bit9, Inc.",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1386941940000],
      off: 0,
    },
    {
      id: "Just10time.com (Big Rock Enterprises Incorporated):Unaffiliated:Unknown",
      id1: "Just10time.com (Big Rock Enterprises Incorporated)",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1363270789000],
      off: 0,
    },
    {
      id: "America OnLine (AOL):System admin:Carelessness",
      id1: "America OnLine (AOL)",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1370274307000],
      off: 0,
    },
    {
      id: "Auto-Dress.ru:Activist:Web application",
      id1: "Auto-Dress.ru",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1370285435000],
      off: 0,
    },
    {
      id: "Northwestern Memorial Hospital:End-user:Physical access",
      id1: "Northwestern Memorial Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377006893000],
      off: 0,
    },
    {
      id: "Devil's Cafe:Unaffiliated:Web application",
      id1: "Devil's Cafe",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361548003000],
      off: 0,
    },
    {
      id: "Pret A:Other:Physical access",
      id1: "Pret A",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377041485000],
      off: 0,
    },
    {
      id: "International Police Association - International Administration Center:Activist:Web application",
      id1: "International Police Association - International Administration Center",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1363192588000],
      off: 0,
    },
    {
      id: "Hylant Group:End-user:LAN access",
      id1: "Hylant Group",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1408851780000],
      off: 0,
    },
    {
      id: "7-ELEVEN, INC.:Unaffiliated:Unknown",
      id1: "7-ELEVEN, INC.",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378917540000],
      off: 0,
    },
    {
      id: "NATO:Activist:Web application",
      id1: "NATO",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1398640562823],
      off: 0,
    },
    {
      id: "Palm Garden Nursing Home:End-user:LAN access",
      id1: "Palm Garden Nursing Home",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370469492000],
      off: 0,
    },
    {
      id: "Government of Pakistan:Activist:Web application",
      id1: "Government of Pakistan",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1412023200000],
      off: 0,
    },
    {
      id: "Cook Islands Investment Corporation:Unaffiliated:Web application",
      id1: "Cook Islands Investment Corporation",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378342020000],
      off: 0,
    },
    {
      id: "Social Affairs Ministry:Developer:LAN access",
      id1: "Social Affairs Ministry",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1392268452000],
      off: 0,
    },
    {
      id: "Polk County School District:End-user:Unknown",
      id1: "Polk County School District",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1370536036000],
      off: 0,
    },
    {
      id: "SY Ministry of Electricity:Activist:Web application",
      id1: "SY Ministry of Electricity",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "Syria Customs Office:Activist:Web application",
      id1: "Syria Customs Office",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1383595860000],
      off: 0,
    },
    {
      id: "Charlie Norwood VA Medical Center:Unaffiliated:Public facility",
      id1: "Charlie Norwood VA Medical Center",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(0, 253, 255, 0.7)",
      d: {
        type: "Public facility",
      },
      dt: [1360987864000],
      off: 0,
    },
    {
      id: "Basecamp:Organized crime:Unknown",
      id1: "Basecamp",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1395974640000],
      off: 0,
    },
    {
      id: "Salt Lake Police Department:Activist:Web application",
      id1: "Salt Lake Police Department",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379517900000],
      off: 0,
    },
    {
      id: "Jackson South Community Hospital:End-user:Unknown",
      id1: "Jackson South Community Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1370468745000],
      off: 0,
    },
    {
      id: "Flight Centre Ltd:End-user:LAN access",
      id1: "Flight Centre Ltd",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1404407580000],
      off: 0,
    },
    {
      id: "Russia Today:Activist:Unknown",
      id1: "Russia Today",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399351491328],
      off: 0,
    },
    {
      id: "Niagara College Of Applied Arts & Technology:Other:Direct install",
      id1: "Niagara College Of Applied Arts & Technology",
      id2: "Other",
      type: "link",
      w: 10,
      d: {
        type: "Direct install",
      },
      dt: [1395423960000],
      off: 0,
      c: "rgba(252, 132, 39, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Mahanagar Telephone Nigam Limited:Activist:Web application",
      id1: "Mahanagar Telephone Nigam Limited",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1377008424000],
      off: 0,
    },
    {
      id: "University of Florida:End-user:LAN access",
      id1: "University of Florida",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370472690000],
      off: 0,
    },
    {
      id: "National Democratic Party (NPD):Activist:Web application",
      id1: "National Democratic Party (NPD)",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360626536000],
      off: 0,
    },
    {
      id: "Columbia University:Developer:Unknown",
      id1: "Columbia University",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360212144000],
      off: 0,
    },
    {
      id: "Fairfax:Activist:Web application",
      id1: "Fairfax",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360694328000],
      off: 0,
    },
    {
      id: "colmic.tv:Unaffiliated:Web application",
      id1: "colmic.tv",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361241033000],
      off: 0,
    },
    {
      id: "McDonald's Franchise:Executive:LAN access",
      id1: "McDonald's Franchise",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1380035880000],
      off: 0,
    },
    {
      id: "London Underground:Organized crime:Public facility",
      id1: "London Underground",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(0, 253, 255, 0.7)",
      d: {
        type: "Public facility",
      },
      dt: [1377094626000],
      off: 0,
    },
    {
      id: "GCHQ:Developer:Unknown",
      id1: "GCHQ",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1407204420000],
      off: 0,
    },
    {
      id: "Korean Broadcasting System:State-affiliated:Backdoor or C2",
      id1: "Korean Broadcasting System",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1389636360000],
      off: 0,
    },
    {
      id: "Baseball Canada:Activist:Web application",
      id1: "Baseball Canada",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381248774000],
      off: 0,
    },
    {
      id: "Spamhaus:Organized crime:Unknown",
      id1: "Spamhaus",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1380490200000],
      off: 0,
    },
    {
      id: "PL Poland Ministry of Economy:Activist:Unknown",
      id1: "PL Poland Ministry of Economy",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1382111400000],
      off: 0,
    },
    {
      id: "Higher Commission for Scientific Research:Activist:Web application",
      id1: "Higher Commission for Scientific Research",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406650260000],
      off: 0,
    },
    {
      id: "United States Post Office:End-user:Victim work area",
      id1: "United States Post Office",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1377300349000],
      off: 20,
    },
    {
      id: "Telecom Test Australia:Activist:Unknown",
      id1: "Telecom Test Australia",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1404063540000],
      off: 0,
    },
    {
      id: "CenterPoint Energy, Inc:End-user:LAN access",
      id1: "CenterPoint Energy, Inc",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370356452000],
      off: 0,
    },
    {
      id: "Texas Durable Medical Company:Executive:LAN access",
      id1: "Texas Durable Medical Company",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1410450720000],
      off: 0,
    },
    {
      id: "Jpost:Activist:Web application",
      id1: "Jpost",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378859280000],
      off: 0,
    },
    {
      id: "BD Prime Ministers Office:Activist:Web application",
      id1: "BD Prime Ministers Office",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381141020000],
      off: 0,
    },
    {
      id: "GB Ministry of Justice:End-user:Carelessness",
      id1: "GB Ministry of Justice",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1382752320000],
      off: 0,
    },
    {
      id: "PhysioMedicor:Organized crime:Web application",
      id1: "PhysioMedicor",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1416495840000],
      off: 0,
    },
    {
      id: "New York Metropolitan Transportation Authority:Organized crime:Public facility",
      id1: "New York Metropolitan Transportation Authority",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(0, 253, 255, 0.7)",
      d: {
        type: "Public facility",
      },
      dt: [1383684540000],
      off: 0,
    },
    {
      id: "US Department of Agriculture:Force majeure:Unknown",
      id1: "US Department of Agriculture",
      id2: "Force majeure",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378741080000],
      off: 0,
    },
    {
      id: "CareFirst:End-user:Unknown",
      id1: "CareFirst",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1373327652000],
      off: 0,
    },
    {
      id: "Grigoriy Mashkevich, M.D.:End-user:LAN access",
      id1: "Grigoriy Mashkevich, M.D.",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1406161440000],
      off: 0,
    },
    {
      id: "West Virginia Chiefs of Police Association:Activist:Web application",
      id1: "West Virginia Chiefs of Police Association",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360816267000],
      off: 0,
    },
    {
      id: "CISCE India Board of Education:Unaffiliated:Web application",
      id1: "CISCE India Board of Education",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1370869638000],
      off: 0,
    },
    {
      id: "Ted's Jumbo Red Hots:Organized crime:Desktop sharing",
      id1: "Ted's Jumbo Red Hots",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "Desktop sharing",
      },
      dt: [1417027529000],
      off: 0,
    },
    {
      id: "San Francisco State University:Organized crime:Unknown",
      id1: "San Francisco State University",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1377288532000],
      off: 0,
    },
    {
      id: "Principal Life Insurance Company:End-user:Unknown",
      id1: "Principal Life Insurance Company",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360362752000],
      off: 0,
    },
    {
      id: "The Coca-Cola Company:End-user:Victim work area",
      id1: "The Coca-Cola Company",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1393952173000],
      off: 0,
    },
    {
      id: "Miami Dolphins Ltd:Activist:Web application",
      id1: "Miami Dolphins Ltd",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "Olson & White Orthodontics:Unaffiliated:Victim work area",
      id1: "Olson & White Orthodontics",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1377983040000],
      off: 0,
    },
    {
      id: "MidCentral District Health Board:End-user:Unknown",
      id1: "MidCentral District Health Board",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361558879000],
      off: 0,
    },
    {
      id: "Citigroup Inc.:Other:Unknown",
      id1: "Citigroup Inc.",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1367280029000],
      off: 0,
    },
    {
      id: "Health Care Solutions Network Inc.:Executive:LAN access",
      id1: "Health Care Solutions Network Inc.",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1379016900000],
      off: 20,
    },
    {
      id: "Health Care Solutions Network Inc.:Executive:Physical access",
      id1: "Health Care Solutions Network Inc.",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1379016900000],
      off: -20,
    },
    {
      id: "4chan:Unaffiliated:Web application",
      id1: "4chan",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399037160000],
      off: 0,
    },
    {
      id: "Washington Department of Revenue:End-user:LAN access",
      id1: "Washington Department of Revenue",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1402925220000],
      off: 0,
    },
    {
      id: "Home Federal Bancorp Inc/KT:Cashier:LAN access",
      id1: "Home Federal Bancorp Inc/KT",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1386968040000],
      off: 0,
    },
    {
      id: "Karmei Hesed:Activist:Web application",
      id1: "Karmei Hesed",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "Aberdeen City Council:End-user:Unknown",
      id1: "Aberdeen City Council",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378215300000],
      off: 0,
    },
    {
      id: "Unnamed Point of Sale Company:Organized crime:Unknown",
      id1: "Unnamed Point of Sale Company",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1401485100000],
      off: 0,
    },
    {
      id: "Best Buy Co., Inc.:Helpdesk:Physical access",
      id1: "Best Buy Co., Inc.",
      id2: "Helpdesk",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377009492000],
      off: 0,
    },
    {
      id: "Unisys:End-user:Unknown",
      id1: "Unisys",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "http://gabonactu.com/:Activist:Unknown",
      id1: "http://gabonactu.com/",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1377094806000],
      off: 0,
    },
    {
      id: "BBC:End-user:Non-corporate",
      id1: "BBC",
      id2: "End-user",
      type: "link",
      w: 10,
      d: {
        type: "Non-corporate",
      },
      dt: [1414690680000],
      off: 0,
      c: "rgba(255, 207, 9, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Computerworld Philippines:Activist:Web application",
      id1: "Computerworld Philippines",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1403889000000],
      off: 0,
    },
    {
      id: "HN Government of Honduras:Activist:Web application",
      id1: "HN Government of Honduras",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "British Broadcasting Corporation:Unaffiliated:Web application",
      id1: "British Broadcasting Corporation",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388375340000],
      off: 0,
    },
    {
      id: "Miami Police Department:End-user:Unknown",
      id1: "Miami Police Department",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1391404682000],
      off: 0,
    },
    {
      id: "H. J. Heinz:Finance:Physical access",
      id1: "H. J. Heinz",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1383625920000],
      off: 0,
    },
    {
      id: "Titus Regional Medical Center:End-user:LAN access",
      id1: "Titus Regional Medical Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361318748000],
      off: 0,
    },
    {
      id: "Tango.me:Activist:Web application",
      id1: "Tango.me",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1408726680000],
      off: 0,
    },
    {
      id: "AR Sergio Massa:Activist:Web application",
      id1: "AR Sergio Massa",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "Warsaw Stock Exchange:Activist:Web application",
      id1: "Warsaw Stock Exchange",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1415716140000],
      off: 0,
    },
    {
      id: "Dubai International Airport:Activist:Web application",
      id1: "Dubai International Airport",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1405954620000],
      off: 0,
    },
    {
      id: "Indiana University School of Optometry:System admin:Unknown",
      id1: "Indiana University School of Optometry",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1365805796000],
      off: 0,
    },
    {
      id: "New York State Association of Chiefs of Police:Activist:Web application",
      id1: "New York State Association of Chiefs of Police",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1403918820000],
      off: 0,
    },
    {
      id: "Hashraa:Activist:Web application",
      id1: "Hashraa",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378752360000],
      off: 0,
    },
    {
      id: "Yahoo! Inc:State-affiliated:Public facility",
      id1: "Yahoo! Inc",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(0, 253, 255, 0.7)",
      d: {
        type: "Public facility",
      },
      dt: [1393520280000],
      off: 0,
    },
    {
      id: "EmblemHealth:End-user:Unknown",
      id1: "EmblemHealth",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361405503000],
      off: -20,
    },
    {
      id: "Staffing Solutions:Other:Unknown",
      id1: "Staffing Solutions",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360699888000],
      off: 0,
    },
    {
      id: "Microsoft Store India:Activist:Web application",
      id1: "Microsoft Store India",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361204319000],
      off: 0,
    },
    {
      id: "Network Solutions:Activist:Web application",
      id1: "Network Solutions",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1402694040000],
      off: 0,
    },
    {
      id: "Harris County Hospital District:End-user:Physical access",
      id1: "Harris County Hospital District",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1361295320000],
      off: 20,
    },
    {
      id: "Harris County Hospital District:End-user:LAN access",
      id1: "Harris County Hospital District",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361295320000],
      off: -20,
    },
    {
      id: "Elantis:Organized crime:Web application",
      id1: "Elantis",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1363636552000],
      off: 0,
    },
    {
      id: "Jonathan M. Wainwright Memorial VA Medical Center:Other:Unknown",
      id1: "Jonathan M. Wainwright Memorial VA Medical Center",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1388415000000],
      off: 0,
    },
    {
      id: "Jacksonville Sheriffs Office:Other:LAN access",
      id1: "Jacksonville Sheriffs Office",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1386969240000],
      off: 0,
    },
    {
      id: "Florida Department of Juvenile Justice:End-user:LAN access",
      id1: "Florida Department of Juvenile Justice",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1398980940000],
      off: 0,
    },
    {
      id: "Alberta Health Services:System admin:Unknown",
      id1: "Alberta Health Services",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1412178060000],
      off: 0,
    },
    {
      id: "US Department of State:Activist:Web application",
      id1: "US Department of State",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1382894400000],
      off: 0,
    },
    {
      id: "All India Anna Dravida Munnetra Kazhagam (AIADMK):Activist:Web application",
      id1: "All India Anna Dravida Munnetra Kazhagam (AIADMK)",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "Riseup:Nation-state:Backdoor or C2",
      id1: "Riseup",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1404416872000],
      off: 0,
    },
    {
      id: "E-Trade:Organized crime:Web application",
      id1: "E-Trade",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406039460000],
      off: 0,
    },
    {
      id: "Flow Traders:End-user:Unknown",
      id1: "Flow Traders",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378385100000],
      off: 20,
    },
    {
      id: "Flow Traders:End-user:LAN access",
      id1: "Flow Traders",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378385100000],
      off: -20,
    },
    {
      id: "Union of Municipalities of Turkey:Activist:Web application",
      id1: "Union of Municipalities of Turkey",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378745580000],
      off: 0,
    },
    {
      id: "New York City Taxi and Limousine Commission:Other:Non-corporate",
      id1: "New York City Taxi and Limousine Commission",
      id2: "Other",
      type: "link",
      w: 10,
      d: {
        type: "Non-corporate",
      },
      dt: [1416501180000],
      off: 0,
      c: "rgba(255, 207, 9, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "EC Ecuador Province of Azuay:Activist:Web application",
      id1: "EC Ecuador Province of Azuay",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381248774000],
      off: 0,
    },
    {
      id: "Coalition of Law Enforcement and Retail:Activist:Web application",
      id1: "Coalition of Law Enforcement and Retail",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1403918520000],
      off: 0,
    },
    {
      id: "Medway Maritime Hospital:Unaffiliated:In-person",
      id1: "Medway Maritime Hospital",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "In-person",
      },
      dt: [1418431095000],
      off: 0,
    },
    {
      id: "Jeffrey Paul Edelstein MD:Other:Victim secure area",
      id1: "Jeffrey Paul Edelstein MD",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim secure area",
      },
      dt: [1360766805000],
      off: 0,
    },
    {
      id: "United States Department of Energy:Nation-state:Unknown",
      id1: "United States Department of Energy",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1372198169000],
      off: 0,
    },
    {
      id: "Northwestern Mutual:Finance:LAN access",
      id1: "Northwestern Mutual",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370537218000],
      off: 0,
    },
    {
      id: "National Examination Council Nigeria:Activist:Web application",
      id1: "National Examination Council Nigeria",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1364304782000],
      off: 0,
    },
    {
      id: "D.W. McMillan Hospital:Finance:LAN access",
      id1: "D.W. McMillan Hospital",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1416559620000],
      off: 0,
    },
    {
      id: "Tajikistan Domain registrar:Activist:Web application",
      id1: "Tajikistan Domain registrar",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1389620820000],
      off: 0,
    },
    {
      id: "Charter Communications Inc:Unaffiliated:Unknown",
      id1: "Charter Communications Inc",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1406232480000],
      off: 0,
    },
    {
      id: "THE NATIONAL BANK OF RAS AL-KHAIMAH (P.S.C):Organized crime:Unknown",
      id1: "THE NATIONAL BANK OF RAS AL-KHAIMAH (P.S.C)",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408375200000],
      off: 0,
    },
    {
      id: "Electronic Arts:Organized crime:Web application",
      id1: "Electronic Arts",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1395542100000],
      off: 0,
    },
    {
      id: "PNC Financial Services Group Inc/The:Executive:LAN access",
      id1: "PNC Financial Services Group Inc/The",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1395016620000],
      off: 20,
    },
    {
      id: "PNC Financial Services Group Inc/The:Executive:Physical access",
      id1: "PNC Financial Services Group Inc/The",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1395016620000],
      off: -20,
    },
    {
      id: "CL Government of Chile:Activist:Unknown",
      id1: "CL Government of Chile",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1392397372000],
      off: 0,
    },
    {
      id: "460 Productions:Unaffiliated:Web application",
      id1: "460 Productions",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360723678000],
      off: 0,
    },
    {
      id: "Anti-Shabiha.com:Activist:Web application",
      id1: "Anti-Shabiha.com",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "Citibank, N.A.:Helpdesk:LAN access",
      id1: "Citibank, N.A.",
      id2: "Helpdesk",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1377874200000],
      off: 0,
    },
    {
      id: "EZ Loan and Tax Services:Finance:Physical access",
      id1: "EZ Loan and Tax Services",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377051267000],
      off: 0,
    },
    {
      id: "Road Safety Authority:Developer:Unknown",
      id1: "Road Safety Authority",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1403882700000],
      off: 0,
    },
    {
      id: "US Office of Personnel Management:Nation-state:Unknown",
      id1: "US Office of Personnel Management",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408117920000],
      off: 0,
    },
    {
      id: "US Office of Personnel Management:State-affiliated:Unknown",
      id1: "US Office of Personnel Management",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408117920000],
      off: 0,
    },
    {
      id: "Ginbot 7:State-affiliated:Email attachment",
      id1: "Ginbot 7",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(229, 153, 255, 0.7)",
      d: {
        type: "Email attachment",
      },
      dt: [1392644581000],
      off: 0,
    },
    {
      id: "Tullamore Credit Union:System admin:Unknown",
      id1: "Tullamore Credit Union",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1389621600000],
      off: 0,
    },
    {
      id: "City of Akron:Activist:Unknown",
      id1: "City of Akron",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "South London Healthcare Trust:End-user:Carelessness",
      id1: "South London Healthcare Trust",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1372718998000],
      off: 0,
    },
    {
      id: "Reyes Beverage Group:End-user:Carelessness",
      id1: "Reyes Beverage Group",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1360037228000],
      off: 0,
    },
    {
      id: "ICICI Bank Ltd:Unaffiliated:Unknown",
      id1: "ICICI Bank Ltd",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1406212440000],
      off: 0,
    },
    {
      id: "Portsmouth Naval Medical Center:End-user:LAN access",
      id1: "Portsmouth Naval Medical Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1406640600000],
      off: 0,
    },
    {
      id: "BSNL:State-affiliated:Email attachment",
      id1: "BSNL",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(229, 153, 255, 0.7)",
      d: {
        type: "Email attachment",
      },
      dt: [1377458104000],
      off: 0,
    },
    {
      id: "Tetriary Education Commission:Other:Unknown",
      id1: "Tetriary Education Commission",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408988160000],
      off: 0,
    },
    {
      id: "Korea Coast Guard:Manager:Unknown",
      id1: "Korea Coast Guard",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1401998160000],
      off: 0,
    },
    {
      id: "billorielly.com:Unaffiliated:Web application",
      id1: "billorielly.com",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399341750699],
      off: 0,
    },
    {
      id: "alamiravideo.com:Activist:Web application",
      id1: "alamiravideo.com",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360948506000],
      off: 0,
    },
    {
      id: "Palestinian Broadcasting Corporation:Unaffiliated:Unknown",
      id1: "Palestinian Broadcasting Corporation",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1386356580000],
      off: 0,
    },
    {
      id: "Puerto Rico Department of Health:Competitor:Unknown",
      id1: "Puerto Rico Department of Health",
      id2: "Competitor",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1365805796000],
      off: 0,
    },
    {
      id: "CROZER-KEYSTONE HEALTH SYSTEM:Other:Physical access",
      id1: "CROZER-KEYSTONE HEALTH SYSTEM",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1369452726000],
      off: 0,
    },
    {
      id: "CROZER-KEYSTONE HEALTH SYSTEM:Unaffiliated:Physical access",
      id1: "CROZER-KEYSTONE HEALTH SYSTEM",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1369452726000],
      off: 0,
    },
    {
      id: "Vision Technologies, Inc.:Other:Unknown",
      id1: "Vision Technologies, Inc.",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1363374522000],
      off: 0,
    },
    {
      id: "City of New York:Unaffiliated:Public vehicle",
      id1: "City of New York",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(0, 253, 255, 0.7)",
      d: {
        type: "Public vehicle",
      },
      dt: [1378758120000],
      off: 0,
    },
    {
      id: "Schlumberger Omnes, Inc.:Executive:LAN access",
      id1: "Schlumberger Omnes, Inc.",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1409844240000],
      off: 0,
    },
    {
      id: "Ho Yeow Sun:Activist:Web application",
      id1: "Ho Yeow Sun",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378427280000],
      off: 0,
    },
    {
      id: "PY National Police of Paraguay:Activist:Web application",
      id1: "PY National Police of Paraguay",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1382894700000],
      off: 0,
    },
    {
      id: "TD Ameritrade Holding Corp:Organized crime:Unknown",
      id1: "TD Ameritrade Holding Corp",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1392518256000],
      off: 20,
    },
    {
      id: "Compass Bank:Developer:Victim work area",
      id1: "Compass Bank",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1392851340000],
      off: 0,
    },
    {
      id: "Fitch Ratings Lanka Limited:Activist:Web application",
      id1: "Fitch Ratings Lanka Limited",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1365005866000],
      off: 0,
    },
    {
      id: "Automatic Data Processing (ADP):Developer:Unknown",
      id1: "Automatic Data Processing (ADP)",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378921440000],
      off: 0,
    },
    {
      id: "TD Ameritrade Holding Corp:Organized crime:Web application",
      id1: "TD Ameritrade Holding Corp",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406040840000],
      off: -20,
    },
    {
      id: "Google Inc:Activist:Unknown",
      id1: "Google Inc",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378227060000],
      off: -20,
    },
    {
      id: "Isaraeli Job Search Portal:Activist:Web application",
      id1: "Isaraeli Job Search Portal",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1382108760000],
      off: 0,
    },
    {
      id: "Community Health Med-Check:End-user:LAN access",
      id1: "Community Health Med-Check",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370480063000],
      off: 0,
    },
    {
      id: "Yahoo! Inc:Unaffiliated:Web application",
      id1: "Yahoo! Inc",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1398436200000],
      off: 0,
    },
    {
      id: "Federal Bureau of Investigation:Activist:Other",
      id1: "Federal Bureau of Investigation",
      id2: "Activist",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1361592180000],
      off: -20,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Interactive Response Technologies:Call center:LAN access",
      id1: "Interactive Response Technologies",
      id2: "Call center",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1416495240000],
      off: 0,
    },
    {
      id: "Interactive Response Technologies:Unaffiliated:LAN access",
      id1: "Interactive Response Technologies",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1416495240000],
      off: 0,
    },
    {
      id: "Tahir News:Activist:Unknown",
      id1: "Tahir News",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378218180000],
      off: 0,
    },
    {
      id: "First State Financial Corp/FL:Finance:Unknown",
      id1: "First State Financial Corp/FL",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1416429420000],
      off: 0,
    },
    {
      id: "AO Republic of Angola Embassy in Spain:Activist:Web application",
      id1: "AO Republic of Angola Embassy in Spain",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "University of Florida Shands Medical Center:End-user:LAN access",
      id1: "University of Florida Shands Medical Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370475351000],
      off: 0,
    },
    {
      id: "U.S. Department of State:Unaffiliated:Web application",
      id1: "U.S. Department of State",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1382974260000],
      off: 0,
    },
    {
      id: "Work and Income New Zealand:End-user:Carelessness",
      id1: "Work and Income New Zealand",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1370270133000],
      off: 0,
    },
    {
      id: "Vodafone Group PLC:End-user:Unknown",
      id1: "Vodafone Group PLC",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1381410900000],
      off: 0,
    },
    {
      id: "Compound Semiconductor:Unaffiliated:Web application",
      id1: "Compound Semiconductor",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1372447582000],
      off: 0,
    },
    {
      id: "JP Morgan Chase:Activist:Web application",
      id1: "JP Morgan Chase",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1404742980000],
      off: 0,
    },
    {
      id: "Canadian Imperial Bank of Commerce:Cashier:Unknown",
      id1: "Canadian Imperial Bank of Commerce",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1380130740000],
      off: 0,
    },
    {
      id: "Matthew David Hair Design:Executive:Physical access",
      id1: "Matthew David Hair Design",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1380124860000],
      off: 0,
    },
    {
      id: "National Iranian Oil Company:Force majeure:Unknown",
      id1: "National Iranian Oil Company",
      id2: "Force majeure",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1412091000000],
      off: 0,
    },
    {
      id: "Best Buy Co., Inc.:End-user:Physical access",
      id1: "Best Buy Co., Inc.",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1406645100000],
      off: 0,
    },
    {
      id: "Motorola Mobility Inc.:Developer:Unknown",
      id1: "Motorola Mobility Inc.",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361251448000],
      off: 0,
    },
    {
      id: "Panpacific University North Philippines:Activist:Unknown",
      id1: "Panpacific University North Philippines",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1364484676000],
      off: 0,
    },
    {
      id: "Billabong International Limited:Activist:Web application",
      id1: "Billabong International Limited",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "United States Post Office:End-user:Physical access",
      id1: "United States Post Office",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1361070496000],
      off: -20,
    },
    {
      id: "Hillside Police Department:Activist:Web application",
      id1: "Hillside Police Department",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "Olive Garden:Cashier:Victim work area",
      id1: "Olive Garden",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1410805020000],
      off: 0,
    },
    {
      id: "Greene and Letts Law Firm:End-user:Inadequate processes",
      id1: "Greene and Letts Law Firm",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Inadequate processes",
      },
      dt: [1403709720000],
      off: 0,
    },
    {
      id: "Waters, Kraus & Paul:Other:Physical access",
      id1: "Waters, Kraus & Paul",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1360814989000],
      off: 20,
    },
    {
      id: "Waters, Kraus & Paul:Other:LAN access",
      id1: "Waters, Kraus & Paul",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360814989000],
      off: -20,
    },
    {
      id: "NEW MEADOWLANDS STADIUM COMPANY, LLC:Unaffiliated:Carelessness",
      id1: "NEW MEADOWLANDS STADIUM COMPANY, LLC",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1391478240000],
      off: 0,
    },
    {
      id: "Verizon Communications Inc.:Developer:Unknown",
      id1: "Verizon Communications Inc.",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1382626080000],
      off: 0,
    },
    {
      id: "Verizon Communications Inc.:Unaffiliated:Unknown",
      id1: "Verizon Communications Inc.",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1382626080000],
      off: 0,
    },
    {
      id: "Shinhan Financial Group Co., Ltd.:State-affiliated:Backdoor or C2",
      id1: "Shinhan Financial Group Co., Ltd.",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1389635460000],
      off: 0,
    },
    {
      id: "US Central Intelligence Agency:Executive:Inadequate processes",
      id1: "US Central Intelligence Agency",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Inadequate processes",
      },
      dt: [1387071360000],
      off: 0,
    },
    {
      id: "Northrim Benefits Group:System admin:Unknown",
      id1: "Northrim Benefits Group",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405089540000],
      off: 0,
    },
    {
      id: "Staples Inc:Cashier:Physical access",
      id1: "Staples Inc",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1411402200000],
      off: 0,
    },
    {
      id: "University of California Los Angeles:End-user:LAN access",
      id1: "University of California Los Angeles",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361333255000],
      off: 0,
    },
    {
      id: "Christina Care:End-user:LAN access",
      id1: "Christina Care",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1373329150000],
      off: 0,
    },
    {
      id: "99 Cents Only Stores LLC:Organized crime:Victim work area",
      id1: "99 Cents Only Stores LLC",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1379018640000],
      off: 0,
    },
    {
      id: "Islamic Finder:Activist:Web application",
      id1: "Islamic Finder",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1363190289000],
      off: 0,
    },
    {
      id: "US Marine Corps:Activist:Web application",
      id1: "US Marine Corps",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378174800000],
      off: 0,
    },
    {
      id: "Manpower UK Ltd:Other:Unknown",
      id1: "Manpower UK Ltd",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1363639646000],
      off: 0,
    },
    {
      id: "Government of Brazil Websites:Activist:Web application",
      id1: "Government of Brazil Websites",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388962620000],
      off: 0,
    },
    {
      id: "Interdisciplinary Center Herzliya:Nation-state:Web application",
      id1: "Interdisciplinary Center Herzliya",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1410526800000],
      off: 0,
    },
    {
      id: "Rhode Island Attorney General:Unaffiliated:Personal vehicle",
      id1: "Rhode Island Attorney General",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Personal vehicle",
      },
      dt: [1405088400000],
      off: 0,
    },
    {
      id: "SunTrust:Unaffiliated:Documents",
      id1: "SunTrust",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      d: {
        type: "Documents",
      },
      dt: [1375883656000],
      off: -20,
      c: "rgba(252, 132, 39, 0.7)",
    },
    {
      id: "SunTrust:Unaffiliated:In-person",
      id1: "SunTrust",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "In-person",
      },
      dt: [1375883656000],
      off: 20,
    },
    {
      id: "New Mexico State University:Unaffiliated:Victim public area",
      id1: "New Mexico State University",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1408732320000],
      off: 0,
    },
    {
      id: "Boxee.tv:Unaffiliated:Web application",
      id1: "Boxee.tv",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1404162420000],
      off: 0,
    },
    {
      id: "Elliott Greenleaf & Siedzikowski:Executive:LAN access",
      id1: "Elliott Greenleaf & Siedzikowski",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1363638960000],
      off: 0,
    },
    {
      id: "Virginia Military Institute:Executive:Unknown",
      id1: "Virginia Military Institute",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360783997000],
      off: 0,
    },
    {
      id: "United States Airforce:End-user:Unknown",
      id1: "United States Airforce",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1372464818000],
      off: 0,
    },
    {
      id: "MAXIMUS Inc:Call center:Unknown",
      id1: "MAXIMUS Inc",
      id2: "Call center",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1402581180000],
      off: 0,
    },
    {
      id: "IN Regional Bench Jaipur:Activist:Web application",
      id1: "IN Regional Bench Jaipur",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "Los Angeles County Department of Public Social Services:Other:LAN access",
      id1: "Los Angeles County Department of Public Social Services",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1365531839000],
      off: 0,
    },
    {
      id: "California Correctional Health Care Services:End-user:Unknown",
      id1: "California Correctional Health Care Services",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360107879000],
      off: 0,
    },
    {
      id: "RW NIC:Activist:Web application",
      id1: "RW NIC",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381248774000],
      off: 0,
    },
    {
      id: "The Home Depot:Organized crime:Unknown",
      id1: "The Home Depot",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1414691820000],
      off: 0,
    },
    {
      id: "H&R Block Inc:Executive:LAN access",
      id1: "H&R Block Inc",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1415646360000],
      off: 0,
    },
    {
      id: "Walgreen Co:End-user:LAN access",
      id1: "Walgreen Co",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1377007696000],
      off: 0,
    },
    {
      id: "City of Lexington, KY:Activist:Web application",
      id1: "City of Lexington, KY",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1380485220000],
      off: 0,
    },
    {
      id: "U.S. Department of Labor:State-affiliated:Web application",
      id1: "U.S. Department of Labor",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Nebraska State College System:End-user:Web application",
      id1: "Nebraska State College System",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361071068000],
      off: 0,
    },
    {
      id: "Egyptian Homeland Security:Activist:Carelessness",
      id1: "Egyptian Homeland Security",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1384566180000],
      off: 0,
    },
    {
      id: "Wells Fargo & Company:Cashier:LAN access",
      id1: "Wells Fargo & Company",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1376938756000],
      off: 0,
    },
    {
      id: "Woodwinds Hospital:End-user:Victim work area",
      id1: "Woodwinds Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Ukraine's Interior Ministry Website:Other:Web application",
      id1: "Ukraine's Interior Ministry Website",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1389625440000],
      off: 0,
    },
    {
      id: "Seventh-day Adventist Church:Organized crime:Email",
      id1: "Seventh-day Adventist Church",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(229, 153, 255, 0.7)",
      d: {
        type: "Email",
      },
      dt: [1404162720000],
      off: 0,
    },
    {
      id: "CenturyLink Inc:Force majeure:Unknown",
      id1: "CenturyLink Inc",
      id2: "Force majeure",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1404767340000],
      off: 0,
    },
    {
      id: "US National Security Agency:Other:LAN access",
      id1: "US National Security Agency",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1406905020000],
      off: 0,
    },
    {
      id: "US Army:Manager:LAN access",
      id1: "US Army",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1415804220000],
      off: 0,
    },
    {
      id: "Cook Islands Ministry of Cultural Development:Unaffiliated:Web application",
      id1: "Cook Islands Ministry of Cultural Development",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378341540000],
      off: 0,
    },
    {
      id: "URM Stores, Inc.:Organized crime:Unknown",
      id1: "URM Stores, Inc.",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399296240000],
      off: 0,
    },
    {
      id: "Medica Health Plans:System admin:Unknown",
      id1: "Medica Health Plans",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1392256315000],
      off: 0,
    },
    {
      id: "London Probation Trust:Other:LAN access",
      id1: "London Probation Trust",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1377125219000],
      off: 0,
    },
    {
      id: "Wawa:Cashier:Physical access",
      id1: "Wawa",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1405012320000],
      off: 0,
    },
    {
      id: "Montana State University:Human resources:Unknown",
      id1: "Montana State University",
      id2: "Human resources",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1375885083000],
      off: 0,
    },
    {
      id: "Kasikornbank PCL:Organized crime:Other",
      id1: "Kasikornbank PCL",
      id2: "Organized crime",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1383999960000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United Stated Department of Defense:State-affiliated:Web drive-by",
      id1: "United Stated Department of Defense",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      d: {
        type: "Web drive-by",
      },
      dt: [1408724183000],
      off: 0,
      c: "rgba(255, 0, 13, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Centinela State Prison, State of CA - Dept of Corrections and Rehabilitation:System admin:Unknown",
      id1: "Centinela State Prison, State of CA - Dept of Corrections and Rehabilitation",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1377142563000],
      off: 0,
    },
    {
      id: "Alabama Criminal Justice Information Center:Activist:Web application",
      id1: "Alabama Criminal Justice Information Center",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1404766740000],
      off: 0,
    },
    {
      id: "Epson:Activist:Web application",
      id1: "Epson",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1364223115000],
      off: 0,
    },
    {
      id: "City of Bognor Police Department:End-user:LAN access",
      id1: "City of Bognor Police Department",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1379951760000],
      off: 0,
    },
    {
      id: "Murfreesboro Ambulance Service:Executive:Physical access",
      id1: "Murfreesboro Ambulance Service",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1370386431000],
      off: 0,
    },
    {
      id: "Australian Security Intelligence Organization:Nation-state:Unknown",
      id1: "Australian Security Intelligence Organization",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1370370684000],
      off: 0,
    },
    {
      id: "Lake Worth Independent School District:Former employee:Unknown",
      id1: "Lake Worth Independent School District",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360939661000],
      off: 0,
    },
    {
      id: "AdNet Telcom:Activist:Web application",
      id1: "AdNet Telcom",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "Numbericable:Activist:Email",
      id1: "Numbericable",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(229, 153, 255, 0.7)",
      d: {
        type: "Email",
      },
      dt: [1374244357000],
      off: 0,
    },
    {
      id: "IN State of Kerala :Activist:Web application",
      id1: "IN State of Kerala ",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "Absa Group Limited:Organized crime:Web application",
      id1: "Absa Group Limited",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1384615260000],
      off: 0,
    },
    {
      id: "Reyerson University:Other:Physical access",
      id1: "Reyerson University",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1412023920000],
      off: 0,
    },
    {
      id: "Ontario Association of Chiefs of Police:Activist:Web application",
      id1: "Ontario Association of Chiefs of Police",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1364313650000],
      off: 0,
    },
    {
      id: "Jose Munoz:Competitor:Web application",
      id1: "Jose Munoz",
      id2: "Competitor",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406551380000],
      off: 0,
    },
    {
      id: "Egypt’s Ministry of Information:Activist:Web application",
      id1: "Egypt’s Ministry of Information",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399298529179],
      off: 0,
    },
    {
      id: "News Corp Australia:Unaffiliated:Web application",
      id1: "News Corp Australia",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1382122980000],
      off: 0,
    },
    {
      id: "Westpac Banking Corp:Finance:Unknown",
      id1: "Westpac Banking Corp",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405088580000],
      off: 0,
    },
    {
      id: "brokersXpress:Former employee:Web application",
      id1: "brokersXpress",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360193966000],
      off: 0,
    },
    {
      id: "UNIVERSITY OF PITTSBURGH MEDICAL CENTER:Finance:LAN access",
      id1: "UNIVERSITY OF PITTSBURGH MEDICAL CENTER",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1400256360000],
      off: 0,
    },
    {
      id: "First Choice Home Health Care Services Inc.:End-user:LAN access",
      id1: "First Choice Home Health Care Services Inc.",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "US Barack Obama:Activist:Web application",
      id1: "US Barack Obama",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "ACLD Inc.:Other:Non-corporate",
      id1: "ACLD Inc.",
      id2: "Other",
      type: "link",
      w: 10,
      d: {
        type: "Non-corporate",
      },
      dt: [1408395660000],
      off: 0,
      c: "rgba(255, 207, 9, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sebastian Enterprises, Inc.:Unaffiliated:Web application",
      id1: "Sebastian Enterprises, Inc.",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1382555280000],
      off: 0,
    },
    {
      id: "Lawrence Melrose Medical Electronic Record, Inc.:End-user:LAN access",
      id1: "Lawrence Melrose Medical Electronic Record, Inc.",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Edmonton Public School District:System admin:Carelessness",
      id1: "Edmonton Public School District",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1360644347000],
      off: 0,
    },
    {
      id: "Derry Medical Center:Former employee:Remote access",
      id1: "Derry Medical Center",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Remote access",
      },
      dt: [1361544954000],
      off: 0,
    },
    {
      id: "Mole Valley District Council:Activist:Web application",
      id1: "Mole Valley District Council",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1377011094000],
      off: 0,
    },
    {
      id: "MacTalk:Activist:Web application",
      id1: "MacTalk",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378859280000],
      off: 0,
    },
    {
      id: "f-1racers.net:Activist:Web application",
      id1: "f-1racers.net",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1364240023000],
      off: 0,
    },
    {
      id: "digitword.com:Unaffiliated:Web application",
      id1: "digitword.com",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361555477000],
      off: 0,
    },
    {
      id: "RentPath, Inc. (Primedia):Other:Victim work area",
      id1: "RentPath, Inc. (Primedia)",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Microsoft Corp:Developer:LAN access",
      id1: "Microsoft Corp",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1395635460000],
      off: 0,
    },
    {
      id: "North Jersey Developmental Center:End-user:LAN access",
      id1: "North Jersey Developmental Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1381262834000],
      off: 0,
    },
    {
      id: "GDF Suez:Manager:Unknown",
      id1: "GDF Suez",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1377880920000],
      off: 0,
    },
    {
      id: "theonion.com:State-affiliated:Web application",
      id1: "theonion.com",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1368129674000],
      off: 0,
    },
    {
      id: "Vegas Tripping:Unaffiliated:Web application",
      id1: "Vegas Tripping",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1386529320000],
      off: 0,
    },
    {
      id: "US Federal Bureau of Investigation:Activist:Unknown",
      id1: "US Federal Bureau of Investigation",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378217700000],
      off: 0,
    },
    {
      id: "ruptly.tv:Activist:Web application",
      id1: "ruptly.tv",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1394555400000],
      off: 0,
    },
    {
      id: "Medical College of Wisconsin:End-user:Physical access",
      id1: "Medical College of Wisconsin",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1370541958000],
      off: 20,
    },
    {
      id: "Medical College of Wisconsin:End-user:LAN access",
      id1: "Medical College of Wisconsin",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370541958000],
      off: -20,
    },
    {
      id: "UA Parliament Verkhovna Rada:Activist:Web application",
      id1: "UA Parliament Verkhovna Rada",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1394553540000],
      off: 0,
    },
    {
      id: "Staples:Cashier:Physical access",
      id1: "Staples",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1360696635000],
      off: 0,
    },
    {
      id: "Sony Online Entertainment LLC:Activist:Unknown",
      id1: "Sony Online Entertainment LLC",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1379000760000],
      off: 0,
    },
    {
      id: "Omnicare, Inc.:Finance:Unknown",
      id1: "Omnicare, Inc.",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1406646480000],
      off: 0,
    },
    {
      id: "Sunday Times:Activist:Web application",
      id1: "Sunday Times",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1403915100000],
      off: 0,
    },
    {
      id: "County of Sangamon:Other:Victim public area",
      id1: "County of Sangamon",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1387069020000],
      off: 0,
    },
    {
      id: "ChoicePoint:Organized crime:Unknown",
      id1: "ChoicePoint",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1372204155000],
      off: 0,
    },
    {
      id: "Law Firm in British Columbia:Organized crime:Email attachment",
      id1: "Law Firm in British Columbia",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(229, 153, 255, 0.7)",
      d: {
        type: "Email attachment",
      },
      dt: [1391201220000],
      off: -20,
    },
    {
      id: "Colorado Department of Revenue:Unaffiliated:In-person",
      id1: "Colorado Department of Revenue",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "In-person",
      },
      dt: [1410206100000],
      off: -20,
    },
    {
      id: "Colorado Department of Revenue:Unaffiliated:Documents",
      id1: "Colorado Department of Revenue",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      d: {
        type: "Documents",
      },
      dt: [1410206100000],
      off: 20,
      c: "rgba(252, 132, 39, 0.7)",
    },
    {
      id: "Blue Cross and Blue Shield of North Carolina:End-user:Unknown",
      id1: "Blue Cross and Blue Shield of North Carolina",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360969020000],
      off: 0,
    },
    {
      id: "RentCanada:System admin:Unknown",
      id1: "RentCanada",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1389623100000],
      off: 0,
    },
    {
      id: "Tri - State Surgical Associates:End-user:LAN access",
      id1: "Tri - State Surgical Associates",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1380392280000],
      off: 20,
    },
    {
      id: "Tri - State Surgical Associates:End-user:Physical access",
      id1: "Tri - State Surgical Associates",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1380392280000],
      off: -20,
    },
    {
      id: "MilitarySingles.com:Activist:Unknown",
      id1: "MilitarySingles.com",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361206241000],
      off: 0,
    },
    {
      id: "NBC Universal, Inc.:Activist:Web application",
      id1: "NBC Universal, Inc.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "Blue Cross and Blue Shield Association:Unaffiliated:Unknown",
      id1: "Blue Cross and Blue Shield Association",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1365805796000],
      off: 0,
    },
    {
      id: "Innovation Punjab:Activist:Web application",
      id1: "Innovation Punjab",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378427280000],
      off: 0,
    },
    {
      id: "Navy Federal Credit Union:End-user:Physical access",
      id1: "Navy Federal Credit Union",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377125685000],
      off: 0,
    },
    {
      id: "Navy Federal Credit Union:Organized crime:Physical access",
      id1: "Navy Federal Credit Union",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377125685000],
      off: 0,
    },
    {
      id: "Embassy Of Israel In India:Activist:Web application",
      id1: "Embassy Of Israel In India",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1376930052000],
      off: 0,
    },
    {
      id: "America OnLine (AOL):End-user:LAN access",
      id1: "America OnLine (AOL)",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1374783163000],
      off: 0,
    },
    {
      id: "Federal Election Commission:Nation-state:Unknown",
      id1: "Federal Election Commission",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1403885280000],
      off: 0,
    },
    {
      id: "Pine Environmental Services, LLC:Other:Physical access",
      id1: "Pine Environmental Services, LLC",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1418055237000],
      off: 0,
    },
    {
      id: "U.S. Bank:Cashier:LAN access",
      id1: "U.S. Bank",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370543840000],
      off: 0,
    },
    {
      id: "U.S. Bank:Organized crime:LAN access",
      id1: "U.S. Bank",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370543840000],
      off: 0,
    },
    {
      id: "City of Mobile Police:Activist:Unknown",
      id1: "City of Mobile Police",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1370356799000],
      off: 0,
    },
    {
      id: "Australian Bureau of Statistics:Finance:Other",
      id1: "Australian Bureau of Statistics",
      id2: "Finance",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1399904280000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "EMAXX:Unaffiliated:Web application",
      id1: "EMAXX",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1363639855000],
      off: 0,
    },
    {
      id: "Ministry of Economy & Trade:Activist:Unknown",
      id1: "Ministry of Economy & Trade",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361215616000],
      off: 0,
    },
    {
      id: "The Stop & Shop Supermarket Company:Cashier:Physical access",
      id1: "The Stop & Shop Supermarket Company",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1407856680000],
      off: 0,
    },
    {
      id: "Cook Islands Ministry of Transport:Unaffiliated:Web application",
      id1: "Cook Islands Ministry of Transport",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378342560000],
      off: 0,
    },
    {
      id: "US Federal Reserve Bank:Activist:Web application",
      id1: "US Federal Reserve Bank",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1411056360000],
      off: 0,
    },
    {
      id: "Permanent TSB Group Holdings PLC:Organized crime:Victim grounds",
      id1: "Permanent TSB Group Holdings PLC",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim grounds",
      },
      dt: [1383571680000],
      off: 0,
    },
    {
      id: "Health Care Organization in Milwaukee:Organized crime:Unknown",
      id1: "Health Care Organization in Milwaukee",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1391200560000],
      off: 0,
    },
    {
      id: "Mayer Brown LLP:Nation-state:Unknown",
      id1: "Mayer Brown LLP",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1395237240000],
      off: 0,
    },
    {
      id: "UK Council for Graduate Education:Unaffiliated:Web application",
      id1: "UK Council for Graduate Education",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1386793500000],
      off: 0,
    },
    {
      id: "The Public Whip:Activist:Web application",
      id1: "The Public Whip",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1405087500000],
      off: 0,
    },
    {
      id: "West Coast District Health Board New Zealand:End-user:LAN access",
      id1: "West Coast District Health Board New Zealand",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1367957260000],
      off: 0,
    },
    {
      id: "Pakistan International Airlines:Activist:Web application",
      id1: "Pakistan International Airlines",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379976540000],
      off: 0,
    },
    {
      id: "Abtran Group Ltd:Call center:Physical access",
      id1: "Abtran Group Ltd",
      id2: "Call center",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1403899500000],
      off: 0,
    },
    {
      id: "Visionstream PTY Limited:Manager:Unknown",
      id1: "Visionstream PTY Limited",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1384028700000],
      off: 0,
    },
    {
      id: "Visionstream PTY Limited:Competitor:Unknown",
      id1: "Visionstream PTY Limited",
      id2: "Competitor",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1384028700000],
      off: 0,
    },
    {
      id: "New York Police Department (NYPD):Other:Physical access",
      id1: "New York Police Department (NYPD)",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1405097100000],
      off: -20,
    },
    {
      id: "New York Police Department (NYPD):Other:LAN access",
      id1: "New York Police Department (NYPD)",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1405097100000],
      off: 20,
    },
    {
      id: "South West Essex Primary Care Trust:End-user:LAN access",
      id1: "South West Essex Primary Care Trust",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1416522300000],
      off: 0,
    },
    {
      id: "Platinum Solutions:Former employee:Unknown",
      id1: "Platinum Solutions",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1377218059000],
      off: 0,
    },
    {
      id: "Institute for Supply Management:Developer:Unknown",
      id1: "Institute for Supply Management",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1404829200000],
      off: 0,
    },
    {
      id: "NDB (Swiss Intelligence Agency):End-user:LAN access",
      id1: "NDB (Swiss Intelligence Agency)",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361552241000],
      off: 0,
    },
    {
      id: "Bank of America:Organized crime:Victim grounds",
      id1: "Bank of America",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim grounds",
      },
      dt: [1377093131000],
      off: -20,
    },
    {
      id: "Verizon Communications Inc:End-user:Unknown",
      id1: "Verizon Communications Inc",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1402411980000],
      off: 0,
    },
    {
      id: "Verizon Communications Inc:Organized crime:Unknown",
      id1: "Verizon Communications Inc",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1402411980000],
      off: 0,
    },
    {
      id: "DE State of Saxony-Anhalt:Unaffiliated:Web application",
      id1: "DE State of Saxony-Anhalt",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1382893620000],
      off: 0,
    },
    {
      id: "American Quality Exteriors:End-user:LAN access",
      id1: "American Quality Exteriors",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360643995000],
      off: 0,
    },
    {
      id: "HM Revenue & Customs:End-user:Inadequate processes",
      id1: "HM Revenue & Customs",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Inadequate processes",
      },
      dt: [1391662975000],
      off: 0,
    },
    {
      id: "Boca Raton Regional Hospital, Inc.:End-user:Physical access",
      id1: "Boca Raton Regional Hospital, Inc.",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1370475983000],
      off: -20,
    },
    {
      id: "Boca Raton Regional Hospital, Inc.:End-user:LAN access",
      id1: "Boca Raton Regional Hospital, Inc.",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370475983000],
      off: 20,
    },
    {
      id: "ThruWay Service Area:Cashier:Physical access",
      id1: "ThruWay Service Area",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1399854660000],
      off: 0,
    },
    {
      id: "US Business 1:Activist:Web application",
      id1: "US Business 1",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406839920000],
      off: 0,
    },
    {
      id: "California Department of Public Health:Other:Unknown",
      id1: "California Department of Public Health",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1380489420000],
      off: 0,
    },
    {
      id: "CN China Chamber of International Commerce:Activist:Web application",
      id1: "CN China Chamber of International Commerce",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1383618420000],
      off: 0,
    },
    {
      id: "United States Congress:Activist:Unknown",
      id1: "United States Congress",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1377467620000],
      off: 0,
    },
    {
      id: "Guangdong Public Security Bureau:Activist:Unknown",
      id1: "Guangdong Public Security Bureau",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1392518479000],
      off: 0,
    },
    {
      id: "Koch Industries:Activist:Web application",
      id1: "Koch Industries",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378734480000],
      off: 0,
    },
    {
      id: "Arts Block:Activist:Web application",
      id1: "Arts Block",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1383624240000],
      off: 0,
    },
    {
      id: "Alabama Securities Commision:End-user:Unknown",
      id1: "Alabama Securities Commision",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1383589440000],
      off: 0,
    },
    {
      id: "bzpower.com:Unaffiliated:Web application",
      id1: "bzpower.com",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361286099000],
      off: 0,
    },
    {
      id: "Hilton Hotels Holdings LLC:Organized crime:Web application",
      id1: "Hilton Hotels Holdings LLC",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1415645760000],
      off: 0,
    },
    {
      id: "City of Mobile:Activist:Web application",
      id1: "City of Mobile",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361229294000],
      off: 0,
    },
    {
      id: "Micro-Star International Co.:Activist:Web application",
      id1: "Micro-Star International Co.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1370357464000],
      off: 0,
    },
    {
      id: "linhcrystal.com:Unaffiliated:Web application",
      id1: "linhcrystal.com",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1411414620000],
      off: 0,
    },
    {
      id: "wow-gold.de:Activist:Web application",
      id1: "wow-gold.de",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360904005000],
      off: 0,
    },
    {
      id: "Washington DC Travel Website:Activist:Web application",
      id1: "Washington DC Travel Website",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1383505680000],
      off: 0,
    },
    {
      id: "Tomren Wealth Management:Organized crime:Unknown",
      id1: "Tomren Wealth Management",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1370534013000],
      off: 0,
    },
    {
      id: "Australian Defence Force Academy (ADFA):Activist:Web application",
      id1: "Australian Defence Force Academy (ADFA)",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361228719000],
      off: 0,
    },
    {
      id: "Citibank, N.A.:Organized crime:Victim grounds",
      id1: "Citibank, N.A.",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim grounds",
      },
      dt: [1383316080000],
      off: -20,
    },
    {
      id: "Round Rock Hospital:End-user:Victim work area",
      id1: "Round Rock Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1418423815000],
      off: 0,
    },
    {
      id: "Department of Telecommunications and Information Services of the City and County of San Francisco:System admin:LAN access",
      id1: "Department of Telecommunications and Information Services of the City and County of San Francisco",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1384612920000],
      off: -20,
    },
    {
      id: "Department of Telecommunications and Information Services of the City and County of San Francisco:System admin:Physical access",
      id1: "Department of Telecommunications and Information Services of the City and County of San Francisco",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1384612920000],
      off: 20,
    },
    {
      id: "Acer India:Activist:Web application",
      id1: "Acer India",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361072055000],
      off: 0,
    },
    {
      id: "North Carolina Department of State Treasury:Other:Unknown",
      id1: "North Carolina Department of State Treasury",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1407115620000],
      off: 0,
    },
    {
      id: "City of Lansing:Activist:Web application",
      id1: "City of Lansing",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1372446490000],
      off: 0,
    },
    {
      id: "Webassur:Organized crime:Web application",
      id1: "Webassur",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1411412220000],
      off: 0,
    },
    {
      id: "PK Pakistan People's Party:Activist:Unknown",
      id1: "PK Pakistan People's Party",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1409754300000],
      off: 0,
    },
    {
      id: "National Portal of India:Activist:Unknown",
      id1: "National Portal of India",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1400485341627],
      off: 0,
    },
    {
      id: "Cook Islands Ministry of Agriculture:Unaffiliated:Web application",
      id1: "Cook Islands Ministry of Agriculture",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378342440000],
      off: 0,
    },
    {
      id: "Tesco Corp:Executive:LAN access",
      id1: "Tesco Corp",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1410472440000],
      off: 0,
    },
    {
      id: "Sprint Corp:End-user:Other",
      id1: "Sprint Corp",
      id2: "End-user",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1395077580000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Wenzhou Television Station:Activist:Unknown",
      id1: "Wenzhou Television Station",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1407851760000],
      off: 0,
    },
    {
      id: "Etowah County Alabama:Human resources:LAN access",
      id1: "Etowah County Alabama",
      id2: "Human resources",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1381262834000],
      off: 0,
    },
    {
      id: "KH Cambodian Anti-Corruption Unit:Activist:Web application",
      id1: "KH Cambodian Anti-Corruption Unit",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379793120000],
      off: 0,
    },
    {
      id: "Turkish National Police:Activist:Web application",
      id1: "Turkish National Police",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379304060000],
      off: 0,
    },
    {
      id: "California Statewide Law Enforcement Association (CSLEA):Activist:Web application",
      id1: "California Statewide Law Enforcement Association (CSLEA)",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360624196000],
      off: 0,
    },
    {
      id: "Belgacom SA:Nation-state:Unknown",
      id1: "Belgacom SA",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1379358540000],
      off: 20,
    },
    {
      id: "Americredit:Call center:LAN access",
      id1: "Americredit",
      id2: "Call center",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1392254065000],
      off: 0,
    },
    {
      id: "Vestergaard Frantsen:Other:LAN access",
      id1: "Vestergaard Frantsen",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1405629120000],
      off: 0,
    },
    {
      id: "EnerVest:System admin:Physical access",
      id1: "EnerVest",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1402626960000],
      off: 0,
    },
    {
      id: "Government of Ukraine Websites:State-affiliated:Unknown",
      id1: "Government of Ukraine Websites",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399499416664],
      off: 0,
    },
    {
      id: "Bank of America:Organized crime:Victim public area",
      id1: "Bank of America",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1389622620000],
      off: 20,
    },
    {
      id: "Cigna:End-user:LAN access",
      id1: "Cigna",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360690960000],
      off: 0,
    },
    {
      id: "Royal Bank of Scotland Group PLC:Unaffiliated:Victim public area",
      id1: "Royal Bank of Scotland Group PLC",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1388417340000],
      off: 0,
    },
    {
      id: "Texas Health Arlington Memorial Hospital:System admin:Unknown",
      id1: "Texas Health Arlington Memorial Hospital",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1365805796000],
      off: 0,
    },
    {
      id: "Bank Mandiri Persero Tbk PT:Organized crime:Victim grounds",
      id1: "Bank Mandiri Persero Tbk PT",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim grounds",
      },
      dt: [1405089300000],
      off: 0,
    },
    {
      id: "IN Bangalore City Police:Activist:Web application",
      id1: "IN Bangalore City Police",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1398371100000],
      off: 0,
    },
    {
      id: "Advanced Micro Devices (AMD):Manager:LAN access",
      id1: "Advanced Micro Devices (AMD)",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Econo Lodge:Cashier:Physical access",
      id1: "Econo Lodge",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377417886000],
      off: 0,
    },
    {
      id: "Veracity Payment Solutions, Inc.:Organized crime:Web application",
      id1: "Veracity Payment Solutions, Inc.",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406042100000],
      off: 0,
    },
    {
      id: "Womens Active Museum on War and Peace:Activist:Unknown",
      id1: "Womens Active Museum on War and Peace",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1389627300000],
      off: 0,
    },
    {
      id: "Israeli Ministry of Construction and Housing:Organized crime:Unknown",
      id1: "Israeli Ministry of Construction and Housing",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361214950000],
      off: 0,
    },
    {
      id: "Virgin Mobile (Australia) Pty Ltd:Force majeure:Unknown",
      id1: "Virgin Mobile (Australia) Pty Ltd",
      id2: "Force majeure",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1401997680000],
      off: 0,
    },
    {
      id: "Gigabyte Technology:Activist:Web application",
      id1: "Gigabyte Technology",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1407171660000],
      off: 0,
    },
    {
      id: "Kroll Background America, Inc.:Organized crime:Web application",
      id1: "Kroll Background America, Inc.",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1380122340000],
      off: 0,
    },
    {
      id: "ELECTRONICS CORPORATION OF INDIA LIMITED:Activist:Unknown",
      id1: "ELECTRONICS CORPORATION OF INDIA LIMITED",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378226700000],
      off: 0,
    },
    {
      id: "Adobe:State-affiliated:Unknown",
      id1: "Adobe",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405192769000],
      off: 0,
    },
    {
      id: "California Department of Social Services:System admin:Unknown",
      id1: "California Department of Social Services",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361249818000],
      off: 0,
    },
    {
      id: "Mt. Sinai Medical Center of Florida, Inc.:Other:Physical access",
      id1: "Mt. Sinai Medical Center of Florida, Inc.",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1382835780000],
      off: 0,
    },
    {
      id: "University of Maryland Medical Center:Finance:LAN access",
      id1: "University of Maryland Medical Center",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370369188000],
      off: 0,
    },
    {
      id: "Intel Corporation:State-affiliated:Unknown",
      id1: "Intel Corporation",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405192769000],
      off: 0,
    },
    {
      id: "Fidelity National Information Services Inc:System admin:LAN access",
      id1: "Fidelity National Information Services Inc",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1392353400000],
      off: 0,
    },
    {
      id: "Starbucks Corp:Organized crime:Unknown",
      id1: "Starbucks Corp",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1383321000000],
      off: 0,
    },
    {
      id: "Tennesee Bureau of Treasury:Former employee:Physical access",
      id1: "Tennesee Bureau of Treasury",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1387229880000],
      off: 0,
    },
    {
      id: "City of Berkeley:End-user:Unknown",
      id1: "City of Berkeley",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "cine.com.pa:Activist:Web application",
      id1: "cine.com.pa",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361227895000],
      off: 0,
    },
    {
      id: "cifi.fr:Activist:Web application",
      id1: "cifi.fr",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360985483000],
      off: 0,
    },
    {
      id: "ESET:Activist:Web application",
      id1: "ESET",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381248774000],
      off: 0,
    },
    {
      id: "Vodafone Group PLC:System admin:Unknown",
      id1: "Vodafone Group PLC",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1379092500000],
      off: 0,
    },
    {
      id: "Anthem Blue Cross Blue Shield of Indiana:Call center:Remote access",
      id1: "Anthem Blue Cross Blue Shield of Indiana",
      id2: "Call center",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Remote access",
      },
      dt: [1407116460000],
      off: 0,
    },
    {
      id: "Burger King:Cashier:Physical access",
      id1: "Burger King",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1360958275000],
      off: 0,
    },
    {
      id: "Coventry Health Care, Inc., First Health Priority Services:End-user:LAN access",
      id1: "Coventry Health Care, Inc., First Health Priority Services",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361492410000],
      off: 0,
    },
    {
      id: "Federally Administered Tribal Areas of Pakistan Government:Activist:Web application",
      id1: "Federally Administered Tribal Areas of Pakistan Government",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378427280000],
      off: 0,
    },
    {
      id: "Government of Swaziland:Activist:Web application",
      id1: "Government of Swaziland",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378859280000],
      off: 0,
    },
    {
      id: "Hess Corporation:Organized crime:Public facility",
      id1: "Hess Corporation",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(0, 253, 255, 0.7)",
      d: {
        type: "Public facility",
      },
      dt: [1408852980000],
      off: 0,
    },
    {
      id: "AXA:Activist:Web application",
      id1: "AXA",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378427280000],
      off: 0,
    },
    {
      id: "JPMorgan Chase:Nation-state:Web application",
      id1: "JPMorgan Chase",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1413406200000],
      off: 0,
    },
    {
      id: "Jakarta Body Shops:Cashier:Physical access",
      id1: "Jakarta Body Shops",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1404745440000],
      off: 0,
    },
    {
      id: "Hospital for Special Surgery:Other:LAN access",
      id1: "Hospital for Special Surgery",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1388952000000],
      off: 0,
    },
    {
      id: "May First/People Link:Nation-state:Backdoor or C2",
      id1: "May First/People Link",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1404416872000],
      off: 0,
    },
    {
      id: "USAA:Organized crime:Web application",
      id1: "USAA",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406041860000],
      off: 0,
    },
    {
      id: "iPayment, Inc.:Organized crime:Web application",
      id1: "iPayment, Inc.",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406039940000],
      off: 0,
    },
    {
      id: "Mother and Daughter Personal Care Home:System admin:Physical access",
      id1: "Mother and Daughter Personal Care Home",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1408740060000],
      off: 0,
    },
    {
      id: "King Edward VI College:Other:Unknown",
      id1: "King Edward VI College",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1363292076000],
      off: 0,
    },
    {
      id: "Ministerio de Educaci_n Chile:Activist:Web application",
      id1: "Ministerio de Educaci_n Chile",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1412177640000],
      off: 0,
    },
    {
      id: "Global News Enterprises, LLC:Activist:Web application",
      id1: "Global News Enterprises, LLC",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381248774000],
      off: 0,
    },
    {
      id: "ES Municipality of Tordesillas:Activist:Web application",
      id1: "ES Municipality of Tordesillas",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379696340000],
      off: 0,
    },
    {
      id: "Treasure Island:Organized crime:Unknown",
      id1: "Treasure Island",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1409850780000],
      off: 0,
    },
    {
      id: "Nigerian Entertainment TOday:Unaffiliated:Unknown",
      id1: "Nigerian Entertainment TOday",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1409769780000],
      off: 0,
    },
    {
      id: "Ec-Council Foundation:Unaffiliated:Web application",
      id1: "Ec-Council Foundation",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1405087620000],
      off: 0,
    },
    {
      id: "Directors Guild of Canada:Unaffiliated:Web application",
      id1: "Directors Guild of Canada",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1409855820000],
      off: 0,
    },
    {
      id: "One.co.il:Activist:Web application",
      id1: "One.co.il",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360627289000],
      off: 0,
    },
    {
      id: "International House of Pancakes:Other:Physical access",
      id1: "International House of Pancakes",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1361589567000],
      off: 0,
    },
    {
      id: "Kaiser Permanente:End-user:Unknown",
      id1: "Kaiser Permanente",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360096122000],
      off: 0,
    },
    {
      id: "Financial Times Group Ltd.:Activist:Web application",
      id1: "Financial Times Group Ltd.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1405956960000],
      off: 0,
    },
    {
      id: "Automatic Data Processing Inc:Organized crime:Web application",
      id1: "Automatic Data Processing Inc",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406037060000],
      off: 0,
    },
    {
      id: "Denton High School:Other:Other",
      id1: "Denton High School",
      id2: "Other",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1377419084000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Metrobank:Unaffiliated:Public facility",
      id1: "Metrobank",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(0, 253, 255, 0.7)",
      d: {
        type: "Public facility",
      },
      dt: [1378787700000],
      off: 0,
    },
    {
      id: "Federal Reserve Bank:Manager:LAN access",
      id1: "Federal Reserve Bank",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378315980000],
      off: 0,
    },
    {
      id: "University of Arkansas:End-user:Physical access",
      id1: "University of Arkansas",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1361207370000],
      off: 20,
    },
    {
      id: "University of Arkansas:End-user:LAN access",
      id1: "University of Arkansas",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361207370000],
      off: -20,
    },
    {
      id: "Medical Solutions Management, Inc.:Executive:Physical access",
      id1: "Medical Solutions Management, Inc.",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1370543249000],
      off: 20,
    },
    {
      id: "Medical Solutions Management, Inc.:Executive:LAN access",
      id1: "Medical Solutions Management, Inc.",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370543249000],
      off: -20,
    },
    {
      id: "e-teacherdiploma.com:Activist:Web application",
      id1: "e-teacherdiploma.com",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1364225062000],
      off: 0,
    },
    {
      id: "University of Iowa:Organized crime:Email",
      id1: "University of Iowa",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(229, 153, 255, 0.7)",
      d: {
        type: "Email",
      },
      dt: [1387205880000],
      off: 0,
    },
    {
      id: "Long Island Railroad:Organized crime:Public facility",
      id1: "Long Island Railroad",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(0, 253, 255, 0.7)",
      d: {
        type: "Public facility",
      },
      dt: [1383622680000],
      off: 0,
    },
    {
      id: "Department of Health Care Policy & Financing:System admin:Unknown",
      id1: "Department of Health Care Policy & Financing",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1395078660000],
      off: 0,
    },
    {
      id: "Microsoft Corp:Activist:Unknown",
      id1: "Microsoft Corp",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1394647440000],
      off: 0,
    },
    {
      id: "PE Office of the President of Peru:Activist:Web application",
      id1: "PE Office of the President of Peru",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "Citigroup Inc.:Activist:Web application",
      id1: "Citigroup Inc.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378427280000],
      off: 0,
    },
    {
      id: "Dr. Linda Green:End-user:Physical access",
      id1: "Dr. Linda Green",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1370542568000],
      off: -20,
    },
    {
      id: "Dr. Linda Green:End-user:LAN access",
      id1: "Dr. Linda Green",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370542568000],
      off: 20,
    },
    {
      id: "Dr. Linda Green:Organized crime:Physical access",
      id1: "Dr. Linda Green",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1370542568000],
      off: -20,
    },
    {
      id: "Dr. Linda Green:Organized crime:LAN access",
      id1: "Dr. Linda Green",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370542568000],
      off: 20,
    },
    {
      id: "Amazon.com, Inc.:Force majeure:Unknown",
      id1: "Amazon.com, Inc.",
      id2: "Force majeure",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378756980000],
      off: 0,
    },
    {
      id: "AOL Inc:Unaffiliated:Web application",
      id1: "AOL Inc",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1410274140000],
      off: 0,
    },
    {
      id: "Telco Service Holdings Pty Ltd:Finance:Unknown",
      id1: "Telco Service Holdings Pty Ltd",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399558920000],
      off: 0,
    },
    {
      id: "Silver Star Motors:Executive:LAN access",
      id1: "Silver Star Motors",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1381262834000],
      off: 0,
    },
    {
      id: "PE Peruvian National Police:Activist:Web application",
      id1: "PE Peruvian National Police",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "Department of Employment Oregon:Other:Web application",
      id1: "Department of Employment Oregon",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1415820900000],
      off: 0,
    },
    {
      id: "Yahoo:Force majeure:Unknown",
      id1: "Yahoo",
      id2: "Force majeure",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1387209120000],
      off: 0,
    },
    {
      id: "Honolulu Star-Advertiser:Organized crime:Partner facility",
      id1: "Honolulu Star-Advertiser",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(0, 253, 255, 0.7)",
      d: {
        type: "Partner facility",
      },
      dt: [1402327080000],
      off: 0,
    },
    {
      id: "Hudson Valley Foie Gras:Activist:Web application",
      id1: "Hudson Valley Foie Gras",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1367261777000],
      off: 0,
    },
    {
      id: "Namibian Government:Activist:Web application",
      id1: "Namibian Government",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399245969916],
      off: 0,
    },
    {
      id: "Alabama Department of Corrections:System admin:Physical access",
      id1: "Alabama Department of Corrections",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1410549420000],
      off: 0,
    },
    {
      id: "Santander UK PLC:Organized crime:Victim work area",
      id1: "Santander UK PLC",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1379296740000],
      off: 0,
    },
    {
      id: "Aon Hewitt:Organized crime:Web application",
      id1: "Aon Hewitt",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406039160000],
      off: 0,
    },
    {
      id: "Yahoo:Activist:Web application",
      id1: "Yahoo",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361424292000],
      off: 0,
    },
    {
      id: "Arizona Department of Homeland Security:Activist:Web application",
      id1: "Arizona Department of Homeland Security",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1402924800000],
      off: 0,
    },
    {
      id: "Oklahoma Behavioral Health Rehabilitation:Other:Physical access",
      id1: "Oklahoma Behavioral Health Rehabilitation",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1387221840000],
      off: 0,
    },
    {
      id: "Club World Casino:Unaffiliated:Web application",
      id1: "Club World Casino",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1408740720000],
      off: 0,
    },
    {
      id: "Santa Cruz County:Activist:Web application",
      id1: "Santa Cruz County",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1387216080000],
      off: 0,
    },
    {
      id: "Florida A&M University:Other:Unknown",
      id1: "Florida A&M University",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1382719260000],
      off: 0,
    },
    {
      id: "Schoenbar Middle School:Other:Unknown",
      id1: "Schoenbar Middle School",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "WAZE:Other:Web application",
      id1: "WAZE",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399300159694],
      off: 0,
    },
    {
      id: "Microsoft Corp:End-user:LAN access",
      id1: "Microsoft Corp",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1406228220000],
      off: 0,
    },
    {
      id: "City of Mansfield, OH:Activist:Web application",
      id1: "City of Mansfield, OH",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381503000000],
      off: 0,
    },
    {
      id: "National Farmers Union Mutual Insurance Society Limited:Activist:Unknown",
      id1: "National Farmers Union Mutual Insurance Society Limited",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1377093520000],
      off: 0,
    },
    {
      id: "Brazilian Air Force:Activist:Web application",
      id1: "Brazilian Air Force",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378427280000],
      off: 0,
    },
    {
      id: "Publix Super Markets Inc:Unaffiliated:Victim public area",
      id1: "Publix Super Markets Inc",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1399060140000],
      off: 0,
    },
    {
      id: "Council of Country Code Administrators:Activist:Web application",
      id1: "Council of Country Code Administrators",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381162380000],
      off: 0,
    },
    {
      id: "The Cheescake Factory:Cashier:Physical access",
      id1: "The Cheescake Factory",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1406211660000],
      off: 0,
    },
    {
      id: "Chesterfield County School District:End-user:Carelessness",
      id1: "Chesterfield County School District",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1383334620000],
      off: 0,
    },
    {
      id: "PHH Corporation:End-user:LAN access",
      id1: "PHH Corporation",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1373332109000],
      off: 0,
    },
    {
      id: "Monsanto Co:Unaffiliated:Web application",
      id1: "Monsanto Co",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1410537780000],
      off: 0,
    },
    {
      id: "Sacramento Regional Transit:End-user:LAN access",
      id1: "Sacramento Regional Transit",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1381262834000],
      off: 0,
    },
    {
      id: "RSA Conference :Activist:Unknown",
      id1: "RSA Conference ",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399353458278],
      off: 0,
    },
    {
      id: "Indonesia Federal Government:Activist:Web application",
      id1: "Indonesia Federal Government",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1418066535000],
      off: 0,
    },
    {
      id: "Ankara Police Directorate:Activist:Unknown",
      id1: "Ankara Police Directorate",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360966966000],
      off: 0,
    },
    {
      id: "websolutions.it:Organized crime:Unknown",
      id1: "websolutions.it",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1374264143000],
      off: 0,
    },
    {
      id: "College Board:End-user:Unknown",
      id1: "College Board",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360211800000],
      off: 0,
    },
    {
      id: "Rackspace Hosting, Inc.:State-affiliated:Unknown",
      id1: "Rackspace Hosting, Inc.",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405192769000],
      off: 0,
    },
    {
      id: "Central Election Commission:Activist:Unknown",
      id1: "Central Election Commission",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1402671120000],
      off: 0,
    },
    {
      id: "The Home Depot:Cashier:LAN access",
      id1: "The Home Depot",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1402071720000],
      off: 0,
    },
    {
      id: "Buckeye Title Loans of California LLC:Unaffiliated:Personal vehicle",
      id1: "Buckeye Title Loans of California LLC",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Personal vehicle",
      },
      dt: [1379533620000],
      off: 0,
    },
    {
      id: "JPMorgan Chase & Co.:Activist:Web application",
      id1: "JPMorgan Chase & Co.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378427280000],
      off: 0,
    },
    {
      id: "Hostgator:System admin:Unknown",
      id1: "Hostgator",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Islington Council:Manager:Unknown",
      id1: "Islington Council",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1410544260000],
      off: 0,
    },
    {
      id: "Electronic Arts:Developer:Unknown",
      id1: "Electronic Arts",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1363790546000],
      off: 0,
    },
    {
      id: "CNA Foundation:Former employee:Unknown",
      id1: "CNA Foundation",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1388968800000],
      off: 0,
    },
    {
      id: "Beypazari State Hospital:Activist:Web application",
      id1: "Beypazari State Hospital",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1370388635000],
      off: 0,
    },
    {
      id: "American Choral Directors Association:Unaffiliated:Unknown",
      id1: "American Choral Directors Association",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378754820000],
      off: 0,
    },
    {
      id: "University of Nottingham:End-user:Unknown",
      id1: "University of Nottingham",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1402413000000],
      off: 0,
    },
    {
      id: "Nursing and Midwifery Council:End-user:Carelessness",
      id1: "Nursing and Midwifery Council",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1372724753000],
      off: 0,
    },
    {
      id: "TEC Industrial Maintenance & Construction:Organized crime:Web application",
      id1: "TEC Industrial Maintenance & Construction",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1413939660000],
      off: 0,
    },
    {
      id: "Cnet:Activist:Web application",
      id1: "Cnet",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1416503280000],
      off: 0,
    },
    {
      id: "Action For Children:End-user:LAN access",
      id1: "Action For Children",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360944864000],
      off: 0,
    },
    {
      id: "Action For Children:Unaffiliated:LAN access",
      id1: "Action For Children",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360944864000],
      off: 0,
    },
    {
      id: "Morgan Stanley:State-affiliated:Unknown",
      id1: "Morgan Stanley",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405192769000],
      off: 0,
    },
    {
      id: "Ocean Reef Club:System admin:Unknown",
      id1: "Ocean Reef Club",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360346271000],
      off: 0,
    },
    {
      id: "Southwest Airlines:Force majeure:Unknown",
      id1: "Southwest Airlines",
      id2: "Force majeure",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1373373477000],
      off: 0,
    },
    {
      id: "Ukrainian Government:Activist:Web application",
      id1: "Ukrainian Government",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399410867770],
      off: 0,
    },
    {
      id: "Swedish Medical Center:End-user:LAN access",
      id1: "Swedish Medical Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1402683960000],
      off: 0,
    },
    {
      id: "English Defence League:Activist:Unknown",
      id1: "English Defence League",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408719840000],
      off: -20,
    },
    {
      id: "United States Army:End-user:Physical access",
      id1: "United States Army",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1367270947000],
      off: 20,
    },
    {
      id: "United States Army:End-user:LAN access",
      id1: "United States Army",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1367270947000],
      off: -20,
    },
    {
      id: "University of South Florida Health:Maintenance:Victim work area",
      id1: "University of South Florida Health",
      id2: "Maintenance",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1378921980000],
      off: 0,
    },
    {
      id: "SyriaJOB Ltd.:Activist:Web application",
      id1: "SyriaJOB Ltd.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1396885920000],
      off: 0,
    },
    {
      id: "AUTOMOBILES CITROEN:Activist:Unknown",
      id1: "AUTOMOBILES CITROEN",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378482120000],
      off: 0,
    },
    {
      id: "Washington University Investment Management Company:Former employee:Remote access",
      id1: "Washington University Investment Management Company",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Remote access",
      },
      dt: [1404403920000],
      off: 0,
    },
    {
      id: "Community Bank of Oak Park and River Forest:Unaffiliated:Victim grounds",
      id1: "Community Bank of Oak Park and River Forest",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim grounds",
      },
      dt: [1412177220000],
      off: 0,
    },
    {
      id: "FIDELITY INVESTMENTS INSTITUTIONAL OPERATIONS COMPANY, INC.:Unaffiliated:Unknown",
      id1: "FIDELITY INVESTMENTS INSTITUTIONAL OPERATIONS COMPANY, INC.",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408731600000],
      off: 0,
    },
    {
      id: "Citigroup Inc:Other:Physical access",
      id1: "Citigroup Inc",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1381138500000],
      off: 0,
    },
    {
      id: "Jobs.sy:Activist:Web application",
      id1: "Jobs.sy",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406519640000],
      off: 0,
    },
    {
      id: "The Ministry of the Interior of Peru:Activist:Web application",
      id1: "The Ministry of the Interior of Peru",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1389892440000],
      off: 0,
    },
    {
      id: "King County Public Health:Maintenance:Unknown",
      id1: "King County Public Health",
      id2: "Maintenance",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1380660960000],
      off: 0,
    },
    {
      id: "Information Handling Services, Inc.:Activist:Unknown",
      id1: "Information Handling Services, Inc.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Citibank, N.A.:Organized crime:Victim public area",
      id1: "Citibank, N.A.",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1378915740000],
      off: 20,
    },
    {
      id: "US Department of the Army:End-user:LAN access",
      id1: "US Department of the Army",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1400856420000],
      off: 0,
    },
    {
      id: "Greece Ministry of Foreign Affairs:Activist:Unknown",
      id1: "Greece Ministry of Foreign Affairs",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1383184260000],
      off: 0,
    },
    {
      id: "Naver:Unaffiliated:Web application",
      id1: "Naver",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1400858400000],
      off: 0,
    },
    {
      id: "CTBC BANK CO., LTD.:System admin:Unknown",
      id1: "CTBC BANK CO., LTD.",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1377878400000],
      off: 0,
    },
    {
      id: "Hathway Cable & Datacom Ltd:Activist:Web application",
      id1: "Hathway Cable & Datacom Ltd",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1382111400000],
      off: 0,
    },
    {
      id: "Godiva Chocolatier, Inc.:End-user:Carelessness",
      id1: "Godiva Chocolatier, Inc.",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1373333549000],
      off: 0,
    },
    {
      id: "Bon Secours Mary Immaculate Hospital:End-user:LAN access",
      id1: "Bon Secours Mary Immaculate Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370351246000],
      off: 0,
    },
    {
      id: "Cook Islands Ministry of Internal Affairs:Unaffiliated:Unknown",
      id1: "Cook Islands Ministry of Internal Affairs",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378340940000],
      off: -20,
    },
    {
      id: "Cook Islands Ministry of Internal Affairs:Unaffiliated:Web application",
      id1: "Cook Islands Ministry of Internal Affairs",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378340940000],
      off: 20,
    },
    {
      id: "Advantage Health Solutions:Developer:Unknown",
      id1: "Advantage Health Solutions",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1375894976000],
      off: 0,
    },
    {
      id: "Alabama Department of Public Safety:Activist:Web application",
      id1: "Alabama Department of Public Safety",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360709671000],
      off: 0,
    },
    {
      id: "Workplace Health, Safety and Compensation Commission:End-user:LAN access",
      id1: "Workplace Health, Safety and Compensation Commission",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360902221000],
      off: 0,
    },
    {
      id: "Freenters:Activist:Web application",
      id1: "Freenters",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "Nortel Networks Corporation:Nation-state:Unknown",
      id1: "Nortel Networks Corporation",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1380820080000],
      off: 0,
    },
    {
      id: "Pret A Manger (usa) Limited:Manager:Physical access",
      id1: "Pret A Manger (usa) Limited",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1399757640000],
      off: 0,
    },
    {
      id: "Wheaton Franciscan Services:Finance:LAN access",
      id1: "Wheaton Franciscan Services",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1399067520000],
      off: 0,
    },
    {
      id: "State of Florida:End-user:LAN access",
      id1: "State of Florida",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370382644000],
      off: 0,
    },
    {
      id: "E. I. du Pont de Nemours and Company:State-affiliated:Unknown",
      id1: "E. I. du Pont de Nemours and Company",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405192769000],
      off: 20,
    },
    {
      id: "Segmark Solutions:Former employee:Web application",
      id1: "Segmark Solutions",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360694764000],
      off: 0,
    },
    {
      id: "C.W. ADVERTISING AGENCY LTD:Executive:Victim work area",
      id1: "C.W. ADVERTISING AGENCY LTD",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1392611026000],
      off: 0,
    },
    {
      id: "Albuquerque Police Department:Activist:Web application",
      id1: "Albuquerque Police Department",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1396296180000],
      off: 0,
    },
    {
      id: "Antiwar.com:Activist:Web application",
      id1: "Antiwar.com",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1400452080000],
      off: 0,
    },
    {
      id: "United States Postal Service:Nation-state:VPN",
      id1: "United States Postal Service",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "VPN",
      },
      dt: [1416492600000],
      off: 0,
    },
    {
      id: "US Federal Bureau of Investigation (FBI):End-user:Other",
      id1: "US Federal Bureau of Investigation (FBI)",
      id2: "End-user",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1380040020000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Regional Medical Center Memphis:End-user:Carelessness",
      id1: "Regional Medical Center Memphis",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1370359041000],
      off: 0,
    },
    {
      id: "Chase Bank:Organized crime:Victim grounds",
      id1: "Chase Bank",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim grounds",
      },
      dt: [1379422320000],
      off: 40,
    },
    {
      id: "Louisiana State University:Finance:LAN access",
      id1: "Louisiana State University",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1369082790000],
      off: 0,
    },
    {
      id: "Meghna Petroleum Limited:Activist:Web application",
      id1: "Meghna Petroleum Limited",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378427280000],
      off: 0,
    },
    {
      id: "Sony Music:Activist:Web application",
      id1: "Sony Music",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1374080388000],
      off: 0,
    },
    {
      id: "Rensselaer County Jail:End-user:LAN access",
      id1: "Rensselaer County Jail",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "University of Falcon:Activist:Web application",
      id1: "University of Falcon",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1383609420000],
      off: 0,
    },
    {
      id: "ExploitHub:Activist:Web application",
      id1: "ExploitHub",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361425149000],
      off: 0,
    },
    {
      id: "Hatfield City Council:Manager:Unknown",
      id1: "Hatfield City Council",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1403887620000],
      off: 0,
    },
    {
      id: "eUKHost:Activist:Web application",
      id1: "eUKHost",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1364232254000],
      off: 0,
    },
    {
      id: "Department of Justice Northern Ireland:Other:Unknown",
      id1: "Department of Justice Northern Ireland",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1407851160000],
      off: 0,
    },
    {
      id: "Netflix:Call center:LAN access",
      id1: "Netflix",
      id2: "Call center",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1373585965000],
      off: 0,
    },
    {
      id: "University of Arizona:System admin:Inadequate processes",
      id1: "University of Arizona",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Inadequate processes",
      },
      dt: [1383350040000],
      off: 0,
    },
    {
      id: "United States Secret Service:Other:Carelessness",
      id1: "United States Secret Service",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1361216513000],
      off: 0,
    },
    {
      id: "Nordstrom Federal Savings Banks:Organized crime:Web application",
      id1: "Nordstrom Federal Savings Banks",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406040240000],
      off: 0,
    },
    {
      id: "TerraCom:End-user:LAN access",
      id1: "TerraCom",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1379545020000],
      off: 0,
    },
    {
      id: "1st Source Bank:Organized crime:Unknown",
      id1: "1st Source Bank",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378861080000],
      off: 0,
    },
    {
      id: "Fuji Xerox Co., Ltd.:Activist:Unknown",
      id1: "Fuji Xerox Co., Ltd.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1386447720000],
      off: 0,
    },
    {
      id: "Scripps College:End-user:LAN access",
      id1: "Scripps College",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360364623000],
      off: 0,
    },
    {
      id: "Fidelity National Information Services Inc:Organized crime:Unknown",
      id1: "Fidelity National Information Services Inc",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1415121600000],
      off: 0,
    },
    {
      id: "openSUSE:Activist:Web application",
      id1: "openSUSE",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1389574740000],
      off: 0,
    },
    {
      id: "Sun TV:Activist:Web application",
      id1: "Sun TV",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "Israel websites:Activist:Web application",
      id1: "Israel websites",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379105940000],
      off: 0,
    },
    {
      id: "Ilm Ki Dunya:Unaffiliated:Web application",
      id1: "Ilm Ki Dunya",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1377874920000],
      off: 0,
    },
    {
      id: "Mad Mimi:Unaffiliated:Web application",
      id1: "Mad Mimi",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399067293945],
      off: 0,
    },
    {
      id: "PNC Bank:Executive:LAN access",
      id1: "PNC Bank",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1399076220000],
      off: 20,
    },
    {
      id: "PNC Bank:Executive:Physical access",
      id1: "PNC Bank",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1399076220000],
      off: -20,
    },
    {
      id: "LexisNexis:Customer:Remote access",
      id1: "LexisNexis",
      id2: "Customer",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Remote access",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Essex Police Department:End-user:LAN access",
      id1: "Essex Police Department",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360641846000],
      off: 0,
    },
    {
      id: "West Coast District Health Board:End-user:Unknown",
      id1: "West Coast District Health Board",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1372184884000],
      off: 0,
    },
    {
      id: "University of Connecticut:Finance:Unknown",
      id1: "University of Connecticut",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1383334080000],
      off: 0,
    },
    {
      id: "Argentinian National Rehabilitation Service:Activist:Web application",
      id1: "Argentinian National Rehabilitation Service",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1389628500000],
      off: 0,
    },
    {
      id: "IN Central Bank of India:Activist:Web application",
      id1: "IN Central Bank of India",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "eHarmony:Unaffiliated:Web application",
      id1: "eHarmony",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1363373869000],
      off: 0,
    },
    {
      id: "German Federal Intelligence Service:State-affiliated:Victim secure area",
      id1: "German Federal Intelligence Service",
      id2: "State-affiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim secure area",
      },
      dt: [1409750940000],
      off: 0,
    },
    {
      id: "City of Long Beach:Other:Victim work area",
      id1: "City of Long Beach",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1408720380000],
      off: 0,
    },
    {
      id: "Spec's:Organized crime:Unknown",
      id1: "Spec's",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1396880640000],
      off: 0,
    },
    {
      id: "Albany Medical Center:End-user:LAN access",
      id1: "Albany Medical Center",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1401999360000],
      off: 0,
    },
    {
      id: "Ireland 65th Battalion, Reserve Defence Forces:Unaffiliated:Personal residence",
      id1: "Ireland 65th Battalion, Reserve Defence Forces",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Personal residence",
      },
      dt: [1360681518000],
      off: 0,
    },
    {
      id: "habeas.be:Organized crime:Command shell",
      id1: "habeas.be",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Command shell",
      },
      dt: [1374245433000],
      off: 0,
    },
    {
      id: "Muscogee County Sheriff Office:End-user:Unknown",
      id1: "Muscogee County Sheriff Office",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1382836920000],
      off: 0,
    },
    {
      id: "Ctrip.com International Ltd:Unaffiliated:Web application",
      id1: "Ctrip.com International Ltd",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1396362540000],
      off: 0,
    },
    {
      id: "Peruvian Association of Authors and Composers:Activist:Web application",
      id1: "Peruvian Association of Authors and Composers",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1382894040000],
      off: 0,
    },
    {
      id: "GCHQ:Activist:Web application",
      id1: "GCHQ",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399066850518],
      off: 0,
    },
    {
      id: "Time Magazine:Activist:Unknown",
      id1: "Time Magazine",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "Zabian Anti-Corruption Commision:Activist:Web application",
      id1: "Zabian Anti-Corruption Commision",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1389467460000],
      off: 0,
    },
    {
      id: "Clay County Magistrate Court:Unaffiliated:Victim work area",
      id1: "Clay County Magistrate Court",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1389205200000],
      off: 0,
    },
    {
      id: "British Ministry of Justice:Activist:Web application",
      id1: "British Ministry of Justice",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1398816516781],
      off: 0,
    },
    {
      id: "TIAA-CREF (Teachers Insurance and Annuity Association - College Retirement Equities Fund):Call center:LAN access",
      id1: "TIAA-CREF (Teachers Insurance and Annuity Association - College Retirement Equities Fund)",
      id2: "Call center",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1405718280000],
      off: 0,
    },
    {
      id: "WHMCS:Activist:Phone",
      id1: "WHMCS",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "Phone",
      },
      dt: [1360884581000],
      off: 0,
    },
    {
      id: "Bronx Police Department:End-user:Unknown",
      id1: "Bronx Police Department",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360628200000],
      off: 0,
    },
    {
      id: "New Jersey Health Department:End-user:Unknown",
      id1: "New Jersey Health Department",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361072291000],
      off: 0,
    },
    {
      id: "Legal Aid Ontario:End-user:LAN access",
      id1: "Legal Aid Ontario",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1416493500000],
      off: 0,
    },
    {
      id: "Spain People's Party:Activist:Web application",
      id1: "Spain People's Party",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1415292960000],
      off: 0,
    },
    {
      id: "Palos Verdes High School:Other:Physical access",
      id1: "Palos Verdes High School",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1360623405000],
      off: 0,
    },
    {
      id: "Director's Guild of Canada:Activist:Web application",
      id1: "Director's Guild of Canada",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388946360000],
      off: 0,
    },
    {
      id: "Zimbabwe Ministry of Defense:Activist:Web application",
      id1: "Zimbabwe Ministry of Defense",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378859280000],
      off: 0,
    },
    {
      id: "Becton, Dickinson and Company:End-user:Remote access",
      id1: "Becton, Dickinson and Company",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Remote access",
      },
      dt: [1412092860000],
      off: 0,
    },
    {
      id: "Cole Taylor Mortgage:System admin:Unknown",
      id1: "Cole Taylor Mortgage",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408985280000],
      off: 0,
    },
    {
      id: "Anoka County Human Services:Former employee:Victim work area",
      id1: "Anoka County Human Services",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1396239660000],
      off: 0,
    },
    {
      id: "UA Right Sector nationalist movement (banderivets.org.ua):Activist:Web application",
      id1: "UA Right Sector nationalist movement (banderivets.org.ua)",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1394553660000],
      off: 0,
    },
    {
      id: "United States College Hockey Association:Activist:Unknown",
      id1: "United States College Hockey Association",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378833360000],
      off: 0,
    },
    {
      id: "DENT Neurological Institute:End-user:Unknown",
      id1: "DENT Neurological Institute",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Haagen - Dasz:Organized crime:Unknown",
      id1: "Haagen - Dasz",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1387218900000],
      off: 0,
    },
    {
      id: "Christ Hospital:Other:Physical access",
      id1: "Christ Hospital",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377020207000],
      off: -20,
    },
    {
      id: "Christ Hospital:Other:LAN access",
      id1: "Christ Hospital",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1377020207000],
      off: 20,
    },
    {
      id: "Cintas Corp:Other:Other",
      id1: "Cintas Corp",
      id2: "Other",
      type: "link",
      w: 10,
      d: {
        type: "Other",
      },
      dt: [1396297200000],
      off: 0,
      c: "rgba(186, 153, 15, 0.7)",
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Lloyd's Register:Other:Unknown",
      id1: "Lloyd's Register",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1386446820000],
      off: 0,
    },
    {
      id: "Department of Veteran Affairs:Finance:LAN access",
      id1: "Department of Veteran Affairs",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1392673080000],
      off: 0,
    },
    {
      id: "Ministry of Highways and Infrastructure:End-user:LAN access",
      id1: "Ministry of Highways and Infrastructure",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1409856060000],
      off: 0,
    },
    {
      id: "Pemex:Activist:Unknown",
      id1: "Pemex",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378304280000],
      off: 0,
    },
    {
      id: "Loongson:Activist:Unknown",
      id1: "Loongson",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1363635408000],
      off: 0,
    },
    {
      id: "FI Finnish Foreign Ministry:Nation-state:Unknown",
      id1: "FI Finnish Foreign Ministry",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1383622080000],
      off: 0,
    },
    {
      id: "Ciara Foundation in Venezuela (ciara.gob.ve):Activist:Web application",
      id1: "Ciara Foundation in Venezuela (ciara.gob.ve)",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388416080000],
      off: 0,
    },
    {
      id: "Chase Bank:Unaffiliated:Victim public area",
      id1: "Chase Bank",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1418068811000],
      off: 0,
    },
    {
      id: "Lloyds Banking Group plc:Cashier:Physical access",
      id1: "Lloyds Banking Group plc",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1398371940000],
      off: 0,
    },
    {
      id: "European Investment Bank:Activist:Web application",
      id1: "European Investment Bank",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1384724220000],
      off: 0,
    },
    {
      id: "Royal Free Hospital:End-user:Unknown",
      id1: "Royal Free Hospital",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1380125820000],
      off: 0,
    },
    {
      id: "Arizona Department of Public Safety:Activist:Web application",
      id1: "Arizona Department of Public Safety",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1403915940000],
      off: 0,
    },
    {
      id: "Michigan State University:Activist:Web application",
      id1: "Michigan State University",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361405078000],
      off: 0,
    },
    {
      id: "Police Department of Littleton, Massachusetts:End-user:Unknown",
      id1: "Police Department of Littleton, Massachusetts",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Dr. Sandra Bujanda-Wagner:End-user:Unknown",
      id1: "Dr. Sandra Bujanda-Wagner",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1372466151000],
      off: 0,
    },
    {
      id: "NZ Southern District Health Board:End-user:LAN access",
      id1: "NZ Southern District Health Board",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1408115700000],
      off: 0,
    },
    {
      id: "Belgian port of Antwerp:Organized crime:Backdoor or C2",
      id1: "Belgian port of Antwerp",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1382117760000],
      off: 0,
    },
    {
      id: "Skrillex:Activist:Web application",
      id1: "Skrillex",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1408983240000],
      off: 0,
    },
    {
      id: "Victorian Institute of Forensic Medicine:Other:Physical access",
      id1: "Victorian Institute of Forensic Medicine",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377218498000],
      off: 0,
    },
    {
      id: "Seattle & King County Public Health Center:Other:Unknown",
      id1: "Seattle & King County Public Health Center",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1370534432000],
      off: 0,
    },
    {
      id: "Israeli Postal Service:Activist:Web application",
      id1: "Israeli Postal Service",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1416496020000],
      off: 0,
    },
    {
      id: "Subway:Former employee:Unknown",
      id1: "Subway",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "German Chamber of Commerce:Activist:Unknown",
      id1: "German Chamber of Commerce",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1410448080000],
      off: 0,
    },
    {
      id: "Hope Hospice:System admin:Unknown",
      id1: "Hope Hospice",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1370535217000],
      off: 0,
    },
    {
      id: "openssl.org:Other:Web application",
      id1: "openssl.org",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388412360000],
      off: 0,
    },
    {
      id: "Publishers Circulation Fulfillment:End-user:Web application",
      id1: "Publishers Circulation Fulfillment",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1375724026000],
      off: 0,
    },
    {
      id: "Append-Hc.com:Activist:Web application",
      id1: "Append-Hc.com",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1377126626000],
      off: 0,
    },
    {
      id: "Irvine Scientific:Former employee:Unknown",
      id1: "Irvine Scientific",
      id2: "Former employee",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360296440000],
      off: 0,
    },
    {
      id: "EnerVest Operating:System admin:Remote access",
      id1: "EnerVest Operating",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Remote access",
      },
      dt: [1410542700000],
      off: 0,
    },
    {
      id: "Australian Reserve Bank:Developer:Unknown",
      id1: "Australian Reserve Bank",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361587922000],
      off: 0,
    },
    {
      id: "Vancouver Coastal Health:End-user:LAN access",
      id1: "Vancouver Coastal Health",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360952245000],
      off: 0,
    },
    {
      id: "Broward County Court:Finance:LAN access",
      id1: "Broward County Court",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1384025640000],
      off: 0,
    },
    {
      id: "US Army:End-user:LAN access",
      id1: "US Army",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1415803620000],
      off: 0,
    },
    {
      id: "Destiny Software:Unaffiliated:Web application",
      id1: "Destiny Software",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361547437000],
      off: 0,
    },
    {
      id: "School District No 36 (Surrey):End-user:Unknown",
      id1: "School District No 36 (Surrey)",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1403795580000],
      off: 0,
    },
    {
      id: "UK Home Office:Unaffiliated:Web application",
      id1: "UK Home Office",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1394722440000],
      off: 0,
    },
    {
      id: "New York Ironworks:Activist:Unknown",
      id1: "New York Ironworks",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361374585000],
      off: 0,
    },
    {
      id: "Gulf Coast Health Care Services Inc:System admin:Victim work area",
      id1: "Gulf Coast Health Care Services Inc",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1360714465000],
      off: 0,
    },
    {
      id: "Healthcare.gov website:Activist:Web application",
      id1: "Healthcare.gov website",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1399299600000],
      off: 0,
    },
    {
      id: "Acme Barricades Lc:Unaffiliated:Physical access",
      id1: "Acme Barricades Lc",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1404828660000],
      off: 0,
    },
    {
      id: "California Department of Child Support Services:Other:Unknown",
      id1: "California Department of Child Support Services",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399863900000],
      off: 0,
    },
    {
      id: "Leeds City Council:System admin:Unknown",
      id1: "Leeds City Council",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408741140000],
      off: 0,
    },
    {
      id: "Active Community Team:Unaffiliated:Victim work area",
      id1: "Active Community Team",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1361164837000],
      off: 0,
    },
    {
      id: "Cook Islands Business Trade Investment Board:Unaffiliated:Web application",
      id1: "Cook Islands Business Trade Investment Board",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378342200000],
      off: 0,
    },
    {
      id: "Australian Secret Intelligence Service:Activist:Web application",
      id1: "Australian Secret Intelligence Service",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1386527220000],
      off: 0,
    },
    {
      id: "Enki Corp:Customer:Remote access",
      id1: "Enki Corp",
      id2: "Customer",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Remote access",
      },
      dt: [1391404682000],
      off: 0,
    },
    {
      id: "Council on Foreign Relations:Activist:Unknown",
      id1: "Council on Foreign Relations",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1377281566000],
      off: 0,
    },
    {
      id: "St. Joseph License Office:End-user:Physical access",
      id1: "St. Joseph License Office",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1415800920000],
      off: 0,
    },
    {
      id: "St. Joseph License Office:Unaffiliated:Physical access",
      id1: "St. Joseph License Office",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1415800920000],
      off: 0,
    },
    {
      id: "Wrigley Field:Cashier:Physical access",
      id1: "Wrigley Field",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1360905288000],
      off: 0,
    },
    {
      id: "National Armed Forces of the Bolivarian Republic of Venezuela:Activist:Web application",
      id1: "National Armed Forces of the Bolivarian Republic of Venezuela",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1383608940000],
      off: 0,
    },
    {
      id: "Tallahassee Memorial HealthCare:End-user:Physical access",
      id1: "Tallahassee Memorial HealthCare",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1372201492000],
      off: 0,
    },
    {
      id: "Government of the Phillippines:Activist:Web application",
      id1: "Government of the Phillippines",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1411139700000],
      off: 0,
    },
    {
      id: "nychiefs.org:Activist:Web application",
      id1: "nychiefs.org",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360626987000],
      off: 0,
    },
    {
      id: "Experian:Organized crime:Unknown",
      id1: "Experian",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1382625660000],
      off: 0,
    },
    {
      id: "Valley National Bancorp:Unaffiliated:Victim grounds",
      id1: "Valley National Bancorp",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim grounds",
      },
      dt: [1377880020000],
      off: 0,
    },
    {
      id: "Fidelity Investments Institutional Services Company, Inc:Helpdesk:Carelessness",
      id1: "Fidelity Investments Institutional Services Company, Inc",
      id2: "Helpdesk",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1379616720000],
      off: 0,
    },
    {
      id: "AVEGID:Activist:Web application",
      id1: "AVEGID",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1383609780000],
      off: 0,
    },
    {
      id: "MagnaGamer:Activist:Web application",
      id1: "MagnaGamer",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1417559999000],
      off: 0,
    },
    {
      id: "Facebook Inc:End-user:Web application",
      id1: "Facebook Inc",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1405356180000],
      off: 0,
    },
    {
      id: "Facebook Inc:Unaffiliated:Web application",
      id1: "Facebook Inc",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1405356180000],
      off: 0,
    },
    {
      id: "Community Hospital of Upland, PA:Other:Victim work area",
      id1: "Community Hospital of Upland, PA",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim work area",
      },
      dt: [1410528120000],
      off: 0,
    },
    {
      id: "Suddenlink Communications:End-user:Unknown",
      id1: "Suddenlink Communications",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360388323000],
      off: 0,
    },
    {
      id: "City of New York Fire Department:Executive:Physical access",
      id1: "City of New York Fire Department",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1379602500000],
      off: 0,
    },
    {
      id: "HN Honduras Ministry of Industry and Trade:Activist:Web application",
      id1: "HN Honduras Ministry of Industry and Trade",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388693961000],
      off: 0,
    },
    {
      id: "Eastern Health Authority:Other:LAN access",
      id1: "Eastern Health Authority",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1370477348000],
      off: 0,
    },
    {
      id: "North Atlantic Treaty Organization:System admin:Unknown",
      id1: "North Atlantic Treaty Organization",
      id2: "System admin",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1404915540000],
      off: 0,
    },
    {
      id: "North Atlantic Treaty Organization:Nation-state:Unknown",
      id1: "North Atlantic Treaty Organization",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1404915540000],
      off: 0,
    },
    {
      id: "State of Alabama:Unaffiliated:LAN access",
      id1: "State of Alabama",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1379534580000],
      off: 0,
    },
    {
      id: "ElectraCard Services:Organized crime:Unknown",
      id1: "ElectraCard Services",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1406075820000],
      off: 0,
    },
    {
      id: "LABusinessConnect.com:Activist:Unknown",
      id1: "LABusinessConnect.com",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1363376702000],
      off: 0,
    },
    {
      id: "Whaleoil (Cameron Slater):Activist:Web application",
      id1: "Whaleoil (Cameron Slater)",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1398893412948],
      off: 0,
    },
    {
      id: "Diagnostics For You:Other:In-person",
      id1: "Diagnostics For You",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "In-person",
      },
      dt: [1361311982000],
      off: 0,
    },
    {
      id: "Tribune Co.:End-user:Web application",
      id1: "Tribune Co.",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Tribune Co.:Activist:Web application",
      id1: "Tribune Co.",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Law Firm in British Columbia:Organized crime:Email autoexecute",
      id1: "Law Firm in British Columbia",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(229, 153, 255, 0.7)",
      d: {
        type: "Email autoexecute",
      },
      dt: [1391200980000],
      off: 20,
    },
    {
      id: "ANZ Bank:Developer:Unknown",
      id1: "ANZ Bank",
      id2: "Developer",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1409973900000],
      off: 0,
    },
    {
      id: "VZ Government:Activist:Web application",
      id1: "VZ Government",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1388441063000],
      off: 0,
    },
    {
      id: "State Farm Insurance:End-user:Physical access",
      id1: "State Farm Insurance",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1360712436000],
      off: 0,
    },
    {
      id: "OMNI Community Credit Union,:Unaffiliated:Victim public area",
      id1: "OMNI Community Credit Union,",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1377102448000],
      off: 0,
    },
    {
      id: "Sinai Medical Center of Jersey City LLC:Manager:LAN access",
      id1: "Sinai Medical Center of Jersey City LLC",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1378844012000],
      off: 0,
    },
    {
      id: "Sacremento Regional Transit:Human resources:Physical access",
      id1: "Sacremento Regional Transit",
      id2: "Human resources",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1378849020000],
      off: 0,
    },
    {
      id: '"ybs-bank.com" a Malaysian imitation of the real Yorkshire Bank website:Activist:Unknown',
      id1: '"ybs-bank.com" a Malaysian imitation of the real Yorkshire Bank website',
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1399992251486],
      off: 0,
    },
    {
      id: "Tweetdeck, Inc.:Unaffiliated:Web application",
      id1: "Tweetdeck, Inc.",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1402610220000],
      off: 0,
    },
    {
      id: "7-ELEVEN, INC.:Other:Victim public area",
      id1: "7-ELEVEN, INC.",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1381243380000],
      off: 0,
    },
    {
      id: "China Internet Network Information Center:Activist:Unknown",
      id1: "China Internet Network Information Center",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378427280000],
      off: 0,
    },
    {
      id: "Bank Muscat:Organized crime:Unknown",
      id1: "Bank Muscat",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408376220000],
      off: 0,
    },
    {
      id: "Visa Inc:Activist:Unknown",
      id1: "Visa Inc",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1407360600000],
      off: 0,
    },
    {
      id: "Bank of America Corporation:Organized crime:Unknown",
      id1: "Bank of America Corporation",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1382198700000],
      off: 0,
    },
    {
      id: "National Health Service:End-user:Unknown",
      id1: "National Health Service",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1389617580000],
      off: 0,
    },
    {
      id: "Halifax Bank:Organized crime:Unknown",
      id1: "Halifax Bank",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1402068480000],
      off: 0,
    },
    {
      id: "Canadian Naval Intelligence:End-user:LAN access",
      id1: "Canadian Naval Intelligence",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361339078000],
      off: 0,
    },
    {
      id: "Minnesota Department of Natural Resources:End-user:LAN access",
      id1: "Minnesota Department of Natural Resources",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1374102954000],
      off: 0,
    },
    {
      id: "Logica:Unaffiliated:Unknown",
      id1: "Logica",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408318800000],
      off: 0,
    },
    {
      id: "US Department of the Navy:Nation-state:Unknown",
      id1: "US Department of the Navy",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1381139040000],
      off: 0,
    },
    {
      id: "UA Ukraine telecommunication systems:Nation-state:Physical access",
      id1: "UA Ukraine telecommunication systems",
      id2: "Nation-state",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1394554680000],
      off: 0,
    },
    {
      id: "LSU Health:End-user:LAN access",
      id1: "LSU Health",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361474679000],
      off: 0,
    },
    {
      id: "Ebay:Activist:Web application",
      id1: "Ebay",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1391385420000],
      off: 0,
    },
    {
      id: "Boca Raton Regional Hospital, Inc.:Other:LAN access",
      id1: "Boca Raton Regional Hospital, Inc.",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1369174961000],
      off: 0,
    },
    {
      id: "Queen Elizabeth Hospital:Other:Unknown",
      id1: "Queen Elizabeth Hospital",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1405709640000],
      off: 0,
    },
    {
      id: "Residents Property Tax and Rent Refund Circuit Breaker Program:Other:Physical access",
      id1: "Residents Property Tax and Rent Refund Circuit Breaker Program",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377040569000],
      off: 0,
    },
    {
      id: "Central City Concern:End-user:Physical access",
      id1: "Central City Concern",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1398959640000],
      off: 0,
    },
    {
      id: "Federal Emergency Management Agency:Activist:Web application",
      id1: "Federal Emergency Management Agency",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1377233763000],
      off: 0,
    },
    {
      id: "Texas Board of Professional Land Surveying:Activist:Web application",
      id1: "Texas Board of Professional Land Surveying",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1372783722000],
      off: 0,
    },
    {
      id: "Michaels Stores, Inc.:Organized crime:Victim public area",
      id1: "Michaels Stores, Inc.",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim public area",
      },
      dt: [1415287320000],
      off: 0,
    },
    {
      id: "OpenX:Unaffiliated:Unknown",
      id1: "OpenX",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378075620000],
      off: 0,
    },
    {
      id: "Parametric Technology Corporation:Unaffiliated:Web application",
      id1: "Parametric Technology Corporation",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1372448203000],
      off: 0,
    },
    {
      id: "EmblemHealth:End-user:LAN access",
      id1: "EmblemHealth",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1360256313000],
      off: 20,
    },
    {
      id: "Jersey City Public School District:Other:Unknown",
      id1: "Jersey City Public School District",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1402923420000],
      off: 0,
    },
    {
      id: "National University of Singapore:Activist:Web application",
      id1: "National University of Singapore",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1407169980000],
      off: 0,
    },
    {
      id: "Shanghai Municipal Health Bureau:Manager:LAN access",
      id1: "Shanghai Municipal Health Bureau",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1361473554000],
      off: 0,
    },
    {
      id: "Islamic Network:Activist:Backdoor or C2",
      id1: "Islamic Network",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Backdoor or C2",
      },
      dt: [1363192043000],
      off: 0,
    },
    {
      id: "California Department of Healthcare Services:End-user:Unknown",
      id1: "California Department of Healthcare Services",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360084951000],
      off: 0,
    },
    {
      id: "PayPal, Inc.:Organized crime:Web application",
      id1: "PayPal, Inc.",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1406040660000],
      off: 0,
    },
    {
      id: "FENADEPOL:Activist:Web application",
      id1: "FENADEPOL",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379969580000],
      off: 0,
    },
    {
      id: "CVS Caremark:End-user:Unknown",
      id1: "CVS Caremark",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1406301840000],
      off: 0,
    },
    {
      id: "RISCO Group:Guard:Carelessness",
      id1: "RISCO Group",
      id2: "Guard",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1403794860000],
      off: 0,
    },
    {
      id: "Hale & Hearty Soup:Cashier:Physical access",
      id1: "Hale & Hearty Soup",
      id2: "Cashier",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1398957840000],
      off: 0,
    },
    {
      id: "Hale & Hearty Soup:Organized crime:Physical access",
      id1: "Hale & Hearty Soup",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1398957840000],
      off: 0,
    },
    {
      id: "Ralph Lauren Corporation:Organized crime:Unknown",
      id1: "Ralph Lauren Corporation",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1403052960000],
      off: 0,
    },
    {
      id: "Sprouts Farmers Market:Organized crime:Unknown",
      id1: "Sprouts Farmers Market",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1367357409000],
      off: 0,
    },
    {
      id: "unnamed mall:Unaffiliated:Public facility",
      id1: "unnamed mall",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(0, 253, 255, 0.7)",
      d: {
        type: "Public facility",
      },
      dt: [1388414040000],
      off: 0,
    },
    {
      id: "Bangkok Bank PCL:Organized crime:Victim grounds",
      id1: "Bangkok Bank PCL",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(33, 252, 13, 0.7)",
      d: {
        type: "Victim grounds",
      },
      dt: [1384000980000],
      off: 0,
    },
    {
      id: "Salt Lake City Police Department:Activist:Web application",
      id1: "Salt Lake City Police Department",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1360697957000],
      off: 0,
    },
    {
      id: "United Nations in Honduras:Activist:Web application",
      id1: "United Nations in Honduras",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381248774000],
      off: 0,
    },
    {
      id: "Ruby Tuesday:Call center:Unknown",
      id1: "Ruby Tuesday",
      id2: "Call center",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1375818968000],
      off: 0,
    },
    {
      id: "Ministry of Communications and Information Technologies of the Republic of Azerbaijan:Activist:Unknown",
      id1: "Ministry of Communications and Information Technologies of the Republic of Azerbaijan",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1403884380000],
      off: 0,
    },
    {
      id: "Mo Money Taxes:Other:Unknown",
      id1: "Mo Money Taxes",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1361216044000],
      off: 0,
    },
    {
      id: "DENSO CORPORATION:Other:LAN access",
      id1: "DENSO CORPORATION",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1380729660000],
      off: 0,
    },
    {
      id: "Hertfordshire Police:End-user:Carelessness",
      id1: "Hertfordshire Police",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1372721425000],
      off: 0,
    },
    {
      id: "UK Army:Unaffiliated:Carelessness",
      id1: "UK Army",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Carelessness",
      },
      dt: [1392565897000],
      off: 0,
    },
    {
      id: "Fazio Mechanical Services Inc.:Organized crime:Email link",
      id1: "Fazio Mechanical Services Inc.",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(229, 153, 255, 0.7)",
      d: {
        type: "Email link",
      },
      dt: [1392401433000],
      off: 0,
    },
    {
      id: "Davidmorgan.com:Unaffiliated:Web application",
      id1: "Davidmorgan.com",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361386452000],
      off: 0,
    },
    {
      id: "Westboro Baptist Church:Activist:Web application",
      id1: "Westboro Baptist Church",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361489892000],
      off: 0,
    },
    {
      id: "Beta Technology, Inc.:Executive:LAN access",
      id1: "Beta Technology, Inc.",
      id2: "Executive",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1404849540000],
      off: 0,
    },
    {
      id: "State of Florida:Unaffiliated:Unknown",
      id1: "State of Florida",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1410190020000],
      off: 0,
    },
    {
      id: "City of Joburg:Unaffiliated:Web application",
      id1: "City of Joburg",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1377179721000],
      off: 0,
    },
    {
      id: "Amcal Pharmacy:Maintenance:Unknown",
      id1: "Amcal Pharmacy",
      id2: "Maintenance",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1378993680000],
      off: 0,
    },
    {
      id: "HM PASSPORT OFFICE:End-user:Unknown",
      id1: "HM PASSPORT OFFICE",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1403794500000],
      off: 0,
    },
    {
      id: "The Boeing Company:Other:Physical access",
      id1: "The Boeing Company",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1394519820000],
      off: 0,
    },
    {
      id: "High Point Enterprises:Finance:Unknown",
      id1: "High Point Enterprises",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1407101040000],
      off: 0,
    },
    {
      id: "Texas Department of Health and Human Services:End-user:Physical access",
      id1: "Texas Department of Health and Human Services",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1372782300000],
      off: -20,
    },
    {
      id: "1000 Genomes Project:End-user:Inadequate processes",
      id1: "1000 Genomes Project",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(255, 207, 9, 0.7)",
      d: {
        type: "Inadequate processes",
      },
      dt: [1372718200000],
      off: 0,
    },
    {
      id: "Microsoft Corporation:Force majeure:Unknown",
      id1: "Microsoft Corporation",
      id2: "Force majeure",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1379092380000],
      off: 0,
    },
    {
      id: "Egyptian Government:Activist:Web application",
      id1: "Egyptian Government",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378859280000],
      off: 0,
    },
    {
      id: "C.R. Bard, Inc.:End-user:LAN access",
      id1: "C.R. Bard, Inc.",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1412092260000],
      off: 0,
    },
    {
      id: "UN in armena:Activist:Web application",
      id1: "UN in armena",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1379294880000],
      off: 0,
    },
    {
      id: "Wachovia Bank:Finance:LAN access",
      id1: "Wachovia Bank",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "LAN access",
      },
      dt: [1398359700000],
      off: 0,
    },
    {
      id: "Microsoft Corp:Unaffiliated:Unknown",
      id1: "Microsoft Corp",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1408854720000],
      off: 0,
    },
    {
      id: "New York University Asian/Pacific/American Institute:Activist:Web application",
      id1: "New York University Asian/Pacific/American Institute",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1381141620000],
      off: 0,
    },
    {
      id: "Pizza Hut:Activist:Unknown",
      id1: "Pizza Hut",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1377202757000],
      off: 0,
    },
    {
      id: "Digital Playground:Activist:Web application",
      id1: "Digital Playground",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1361553533000],
      off: 0,
    },
    {
      id: "Wells Fargo & Company:Organized crime:Phone",
      id1: "Wells Fargo & Company",
      id2: "Organized crime",
      type: "link",
      w: 10,
      c: "rgba(252, 132, 39, 0.7)",
      d: {
        type: "Phone",
      },
      dt: [1384517280000],
      off: 0,
    },
    {
      id: "Virginia Department of State Police:End-user:Unknown",
      id1: "Virginia Department of State Police",
      id2: "End-user",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1411491720000],
      off: 0,
    },
    {
      id: "Tiffany & Co.:Other:Unknown",
      id1: "Tiffany & Co.",
      id2: "Other",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1360391616000],
      off: 0,
    },
    {
      id: "Elections New Brunswick:Manager:Unknown",
      id1: "Elections New Brunswick",
      id2: "Manager",
      type: "link",
      w: 10,
      c: "rgba(186, 153, 15, 0.7)",
      d: {
        type: "Unknown",
      },
      dt: [1363637555000],
      off: 0,
    },
    {
      id: "Accident Compensation Corporation:Unaffiliated:Personal residence",
      id1: "Accident Compensation Corporation",
      id2: "Unaffiliated",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Personal residence",
      },
      dt: [1378787280000],
      off: 0,
    },
    {
      id: "Twitter:Activist:Web application",
      id1: "Twitter",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1409663340000],
      off: 0,
    },
    {
      id: "Israeli Government websites:Activist:Web application",
      id1: "Israeli Government websites",
      id2: "Activist",
      type: "link",
      w: 10,
      c: "rgba(255, 0, 13, 0.7)",
      d: {
        type: "Web application",
      },
      dt: [1378859280000],
      off: 0,
    },
    {
      id: "Instant Refund Tax Service:Finance:Physical access",
      id1: "Instant Refund Tax Service",
      id2: "Finance",
      type: "link",
      w: 10,
      c: "rgba(227, 19, 254, 0.7)",
      d: {
        type: "Physical access",
      },
      dt: [1377050992000],
      off: 0,
    },
    {
      id: "Activist",
      type: "node",
      t: [
        {
          t: "Activist group",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: false,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 7.023447592961033,
      donut: {
        v: [308, 1, 1, 0, 0, 1, 0, 79],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: 845.6543714336121,
      y: 1559.1064837269014,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Azerenerji",
      type: "node",
      t: [
        {
          t: "Azerenerji",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AZ"],
        industry: "221118",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1205.824350962867,
      y: 1682.2584600501978,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Combined Systems",
      type: "node",
      t: [
        {
          t: "Combined Systems",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "332993",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 626.1049974188022,
      y: 2257.2804329900664,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "State-affiliated",
      type: "node",
      t: [
        {
          t: "State-sponsored or affiliated group",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: false,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 6.303304908059076,
      donut: {
        v: [10, 0, 0, 1, 1, 3, 0, 18],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: 3146.9209067243746,
      y: 146.71461255487884,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Northrop Grumman Corporation",
      type: "node",
      t: [
        {
          t: "Northrop Grumman Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "334511",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3549.5218173125613,
      y: -17.360834145227273,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Mangement of Aggressive Behavior Training International, Inc",
      type: "node",
      t: [
        {
          t: "Mangement of Aggressive Behavior Training International, Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611710",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 937.1075023707967,
      y: 2120.6450997141856,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Syrian Arab News Agency",
      type: "node",
      t: [
        {
          t: "Syrian Arab News Agency",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SY"],
        industry: "511110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1087.0915039761953,
      y: 1938.8454622421941,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cashier",
      type: "node",
      t: [
        {
          t: "Cashier, teller, or waiter",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: true,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 4.663561646129646,
      donut: {
        v: [0, 9, 0, 1, 0, 0, 25, 1],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: -570.2992285916034,
      y: -1972.160927740104,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Eastern Buffet",
      type: "node",
      t: [
        {
          t: "Eastern Buffet",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -801.4487600196276,
      y: -2219.856638936185,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Former employee",
      type: "node",
      t: [
        {
          t: "Former employee (no longer had access)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: false,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 4.367295829986475,
      donut: {
        v: [7, 1, 0, 5, 0, 0, 5, 7],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: 3660.896322020989,
      y: -1544.955756455608,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "UConn Health Center",
      type: "node",
      t: [
        {
          t: "UConn Health Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621111",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3936.6009270942905,
      y: -1746.1721754082187,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Other",
      type: "node",
      t: [
        {
          t: "Other",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: true,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 5.897839799950911,
      donut: {
        v: [7, 29, 3, 12, 0, 0, 24, 43],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: -732.5279888401924,
      y: -936.7350525570532,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alamance County Department of Social Services",
      type: "node",
      t: [
        {
          t: "Alamance County Department of Social Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561990",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1160.4773829695641,
      y: -1036.1041970419528,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Telvent Canada Ltd",
      type: "node",
      t: [
        {
          t: "Telvent Canada Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "541511",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3489.1412953311883,
      y: 368.5039935545956,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "End-user",
      type: "node",
      t: [
        {
          t: "End-user or regular employee",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: true,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 6.5909869805108565,
      donut: {
        v: [6, 120, 21, 6, 0, 0, 39, 69],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: 6.806144974139215,
      y: -2877.1819303478555,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Medway Maritime Hospital",
      type: "node",
      t: [
        {
          t: "Medway Maritime Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 901.2679668084579,
      y: -2384.0256469046094,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Flowers Hospital",
      type: "node",
      t: [
        {
          t: "Flowers Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 57.33859673667621,
      y: -3313.8385525266144,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "System admin",
      type: "node",
      t: [
        {
          t: "System or network administrator",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: true,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 4.9889840465642745,
      donut: {
        v: [1, 4, 3, 1, 0, 0, 6, 36],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: -1315.957752228722,
      y: -344.70103595640853,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Plymouth City Council",
      type: "node",
      t: [
        {
          t: "Plymouth City Council",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "921110",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1665.7905168646548,
      y: -88.78806570636971,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Organized crime",
      type: "node",
      t: [
        {
          t: "Organized or professional criminal group",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: false,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 5.859812404361672,
      donut: {
        v: [34, 5, 0, 18, 8, 11, 4, 44],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: -1892.8368663826714,
      y: -1768.0409899640254,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alabama Book Store, Inc.",
      type: "node",
      t: [
        {
          t: "Alabama Book Store, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "451211",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2197.1630542395396,
      y: -2168.5844369940296,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Singapore Prime Minister's Office",
      type: "node",
      t: [
        {
          t: "Singapore Prime Minister's Office",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SG"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1515.519586432214,
      y: 1691.9811040955956,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Helpdesk",
      type: "node",
      t: [
        {
          t: "Helpdesk staff",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: true,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 2.6094379124341005,
      donut: {
        v: [0, 2, 1, 0, 0, 0, 1, 0],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: -1605.3380893031604,
      y: -2934.7377530208123,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Coast Capital Savings Credit Union",
      type: "node",
      t: [
        {
          t: "Coast Capital Savings Credit Union",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "522130",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1764.6255085982211,
      y: -3094.915887371648,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Creative Banner Assemblies",
      type: "node",
      t: [
        {
          t: "Creative Banner Assemblies",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "314999",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2139.9280087857146,
      y: -2151.889646528869,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Teachers Insurance and Annuity Association - College Retirement Equities Fund",
      type: "node",
      t: [
        {
          t: "Teachers Insurance and Annuity Association - College Retirement Equities Fund",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "525110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1990.3999666112431,
      y: -2216.7180381005173,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "NZ Government of New Zealand",
      type: "node",
      t: [
        {
          t: "NZ Government of New Zealand",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NZ"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 851.2075057065381,
      y: 1173.5735861513458,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Unaffiliated",
      type: "node",
      t: [
        {
          t: "Unaffiliated person(s)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: false,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 6.1647859739235145,
      donut: {
        v: [86, 7, 3, 17, 4, 0, 17, 29],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: 1628.8981242510536,
      y: -1959.614974925551,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "DJArts",
      type: "node",
      t: [
        {
          t: "DJArts",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "51913",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2132.9027942318135,
      y: -2228.086393528164,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Viber",
      type: "node",
      t: [
        {
          t: "Viber",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "511210",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 881.885961784621,
      y: 2050.7118127561416,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Kenya National Registration Bureau",
      type: "node",
      t: [
        {
          t: "Kenya National Registration Bureau",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KE"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 891.4540462802033,
      y: 2165.6226431336627,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "NATO Cooperative Cyber Defence Centre of Excellence",
      type: "node",
      t: [
        {
          t: "NATO Cooperative Cyber Defence Centre of Excellence",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["EE"],
        industry: "813940",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1047.0523305401712,
      y: 2162.184313325748,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Finance",
      type: "node",
      t: [
        {
          t: "Finance or accounting staff",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: true,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 4.465735902799727,
      donut: {
        v: [0, 18, 0, 0, 0, 0, 7, 7],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: -1636.845363403977,
      y: -3796.161805555698,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Citywide Mortgage",
      type: "node",
      t: [
        {
          t: "Citywide Mortgage",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522390",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1835.8972316612244,
      y: -4103.4445561315515,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bon Secours DePaul Medical Center",
      type: "node",
      t: [
        {
          t: "Bon Secours DePaul Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 931.681462207911,
      y: -2514.6602907213714,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Government of Albania",
      type: "node",
      t: [
        {
          t: "Government of Albania",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AL"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1550.6131562653482,
      y: -1590.2385439532845,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alexza Pharmaceuticals",
      type: "node",
      t: [
        {
          t: "Alexza Pharmaceuticals",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "325412",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1006.8426687276669,
      y: 2061.7074138746466,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PS Palestine Ministry of Justice",
      type: "node",
      t: [
        {
          t: "PS Palestine Ministry of Justice",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PS"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1342.9467807951382,
      y: 1764.6747351154681,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "LexisNexis",
      type: "node",
      t: [
        {
          t: "LexisNexis",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519190",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1104.310667336461,
      y: -1259.2456035838309,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of New Haven",
      type: "node",
      t: [
        {
          t: "University of New Haven",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1161.8024271065842,
      y: -851.8974619175006,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Home Office (Govt. of the United Kingdom)",
      type: "node",
      t: [
        {
          t: "Home Office (Govt. of the United Kingdom)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "928120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1671.6523844003286,
      y: -29.48409410400518,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Randor Township School Disctrict",
      type: "node",
      t: [
        {
          t: "Randor Township School Disctrict",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1191.0253857595699,
      y: -569.9232717299874,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "North Wales Transportation Committee",
      type: "node",
      t: [
        {
          t: "North Wales Transportation Committee",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 906.5661450795565,
      y: 2310.068319734679,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Turkey Ministry of Food, Agriculture and Livestock",
      type: "node",
      t: [
        {
          t: "Turkey Ministry of Food, Agriculture and Livestock",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TR"],
        industry: "923120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1351.4662865715527,
      y: 2091.2679239866284,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Australian Federal Police",
      type: "node",
      t: [
        {
          t: "Australian Federal Police",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 443.23136987325984,
      y: -449.4384838444421,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Strategic Forecasting, Inc.",
      type: "node",
      t: [
        {
          t: "Strategic Forecasting, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "51119",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 645.8319722690749,
      y: 2129.9754395983437,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Swansea Police Department",
      type: "node",
      t: [
        {
          t: "Swansea Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "922120",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2438.383482714339,
      y: -2080.150303042041,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Grindr LLC",
      type: "node",
      t: [
        {
          t: "Grindr LLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541511",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1976.522680742104,
      y: -2059.3534739019146,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Lewisham Council",
      type: "node",
      t: [
        {
          t: "Lewisham Council",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 446.48805809372993,
      y: -2850.2444450604476,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "California State University San Marcos",
      type: "node",
      t: [
        {
          t: "California State University San Marcos",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -175.3938149878593,
      y: -3449.459466080984,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Certified Tax Consultants",
      type: "node",
      t: [
        {
          t: "Certified Tax Consultants",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541213",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 99.1209975169404,
      y: -3584.4267175092045,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Competitor",
      type: "node",
      t: [
        {
          t: "Competitor",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: false,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 3.1972245773362196,
      donut: {
        v: [2, 2, 0, 0, 0, 0, 0, 3],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: 3576.369794332827,
      y: -915.4267842781001,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hidalgo County",
      type: "node",
      t: [
        {
          t: "Hidalgo County",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 617.7907938758703,
      y: 2195.404683966799,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Steam, Origin, Battle.net, and League of Legends",
      type: "node",
      t: [
        {
          t: "Steam, Origin, Battle.net, and League of Legends",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "51",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1419.858561089014,
      y: 1994.446870384556,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Praxair Healthcare Services, Inc.",
      type: "node",
      t: [
        {
          t: "Praxair Healthcare Services, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "423450",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4074.661180772785,
      y: -1503.6514219415608,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ameritas Life Insurance Corp.",
      type: "node",
      t: [
        {
          t: "Ameritas Life Insurance Corp.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524113",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1812.3520009655067,
      y: -2346.4684342537457,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Midlothian Council",
      type: "node",
      t: [
        {
          t: "Midlothian Council",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "921120",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -122.22895923101623,
      y: -3476.184846738408,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Massachusetts Technical Institute",
      type: "node",
      t: [
        {
          t: "Massachusetts Technical Institute",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 806.9251106826673,
      y: 2065.25575288236,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "New York City Police Department",
      type: "node",
      t: [
        {
          t: "New York City Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1174.3872808422684,
      y: -1094.1087713902243,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Nation-state",
      type: "node",
      t: [
        {
          t: "Nation-state",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: false,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 4.49650756146648,
      donut: {
        v: [12, 1, 0, 0, 0, 0, 1, 16],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: 2390.7322268592634,
      y: 543.2987841572722,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "TL Government of Timor-Leste",
      type: "node",
      t: [
        {
          t: "TL Government of Timor-Leste",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TL"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2851.111440016518,
      y: 655.5928918328132,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Baylor Law School",
      type: "node",
      t: [
        {
          t: "Baylor Law School",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 96.37653781349763,
      y: -3249.5050313160477,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Nationalist Movement Website",
      type: "node",
      t: [
        {
          t: "Nationalist Movement Website",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 896.8006056601162,
      y: 2225.02056085427,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Dream Host",
      type: "node",
      t: [
        {
          t: "Dream Host",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "518",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1800.5615682039515,
      y: -2287.935919803701,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "L-3 Communications Holdings, Inc.",
      type: "node",
      t: [
        {
          t: "L-3 Communications Holdings, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "334511",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1109.8407064589992,
      y: -1111.1110553892386,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "KTSU Radio",
      type: "node",
      t: [
        {
          t: "KTSU Radio",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541840",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -461.3951061104858,
      y: -1084.0599085430426,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Linode",
      type: "node",
      t: [
        {
          t: "Linode",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "517110",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 747.0906281662878,
      y: 2062.719409529741,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "BENTON'S ADULT FOSTER CARE",
      type: "node",
      t: [
        {
          t: "BENTON'S ADULT FOSTER CARE",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "623990",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 290.52949927195573,
      y: -3097.4665720485805,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Dell Inc",
      type: "node",
      t: [
        {
          t: "Dell Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3639.594675437689,
      y: 62.24148384695127,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Federal Sentencing Commission",
      type: "node",
      t: [
        {
          t: "Federal Sentencing Commission",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922130",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 827.5850928702403,
      y: 2428.201287847931,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Interactive Data",
      type: "node",
      t: [
        {
          t: "Interactive Data",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "51919",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2103.759957546088,
      y: -2424.60498451263,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ha Dinh Primary School",
      type: "node",
      t: [
        {
          t: "Ha Dinh Primary School",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["VN"],
        industry: "511",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3864.7743514876756,
      y: -892.9074828609046,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "East Lothian Council",
      type: "node",
      t: [
        {
          t: "East Lothian Council",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 358.78425655601086,
      y: -3361.107237151782,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Al Arabiya",
      type: "node",
      t: [
        {
          t: "Al Arabiya",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AE"],
        industry: "515120",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1300.6544952058202,
      y: 2224.3009801367225,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "COUNTRYWIDE HOME LOANS, INC.",
      type: "node",
      t: [
        {
          t: "COUNTRYWIDE HOME LOANS, INC.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522292",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1981.6247269968126,
      y: -4165.681799961165,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "HSBC",
      type: "node",
      t: [
        {
          t: "HSBC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "551111",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 242.77396225720486,
      y: -3158.706911152067,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Vodafone",
      type: "node",
      t: [
        {
          t: "Vodafone",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IS"],
        industry: "51721",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 433.24650341656024,
      y: 2161.8150254118427,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sony Pictures Entertainment Inc.",
      type: "node",
      t: [
        {
          t: "Sony Pictures Entertainment Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "512110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 590.9969649704012,
      y: 2365.6896025062706,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Texas Department of Health and Human Services",
      type: "node",
      t: [
        {
          t: "Texas Department of Health and Human Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "923130",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 531.1063285666266,
      y: -3304.027147384828,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bank of Nova Scotia",
      type: "node",
      t: [
        {
          t: "Bank of Nova Scotia",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "522110",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -75.07756283878302,
      y: -3439.507042826362,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Wset Incorporated",
      type: "node",
      t: [
        {
          t: "Wset Incorporated",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "515120",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1955.6473539632461,
      y: -2168.191008433787,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Taco Bell Corp.",
      type: "node",
      t: [
        {
          t: "Taco Bell Corp.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722513",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -783.9319791577602,
      y: -2005.9325913708599,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Concepta, Inc",
      type: "node",
      t: [
        {
          t: "Concepta, Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3931.079735331692,
      y: -1543.8716623878981,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Northumbria Police",
      type: "node",
      t: [
        {
          t: "Northumbria Police",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "922120",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1686.1842744992464,
      y: -2355.649301367228,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Yakima Police Department",
      type: "node",
      t: [
        {
          t: "Yakima Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 133.48583875492568,
      y: -3633.3834806711143,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "BD Government",
      type: "node",
      t: [
        {
          t: "BD Government",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BD"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 886.920322718664,
      y: 2423.604719586684,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bank of the West",
      type: "node",
      t: [
        {
          t: "Bank of the West",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2154.823080909631,
      y: -2210.445680894445,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Palm Beach County Health Department",
      type: "node",
      t: [
        {
          t: "Palm Beach County Health Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "923120",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -16.25026672279273,
      y: -3449.3158925462812,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Rochester Medical Center",
      type: "node",
      t: [
        {
          t: "University of Rochester Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 271.85113904283753,
      y: -3337.935770552191,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "BD NGO Affairs Bureau",
      type: "node",
      t: [
        {
          t: "BD NGO Affairs Bureau",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BD"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1007.8680238829202,
      y: 2207.0698736961385,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United Nations - Armenia/Slovenia- website",
      type: "node",
      t: [
        {
          t: "United Nations - Armenia/Slovenia- website",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AM"],
        industry: "928120",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1615.797603288141,
      y: 1814.6540932856124,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jamaica Hospital Medical Center",
      type: "node",
      t: [
        {
          t: "Jamaica Hospital Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 291.47197047661666,
      y: -3394.283935420414,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Developer",
      type: "node",
      t: [
        {
          t: "Software developer",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: true,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 4.091042453358316,
      donut: {
        v: [0, 3, 0, 1, 0, 0, 0, 16],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: 757.0771909640812,
      y: -807.4712689480452,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "MIC Electronics Ltd",
      type: "node",
      t: [
        {
          t: "MIC Electronics Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "334413",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1051.804568271597,
      y: -752.9160475368567,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PetSmart, Inc.",
      type: "node",
      t: [
        {
          t: "PetSmart, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "453910",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 324.6628635716038,
      y: -3558.9007290934364,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Cambridge",
      type: "node",
      t: [
        {
          t: "University of Cambridge",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "611310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1433.0925029189368,
      y: -2198.489927009949,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Kremlin",
      type: "node",
      t: [
        {
          t: "Kremlin",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["RU"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1524.8107802835607,
      y: 1313.27364714738,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Customer",
      type: "node",
      t: [
        {
          t: "Customer (B2C)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: false,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 2.791759469228055,
      donut: {
        v: [3, 0, 1, 1, 0, 0, 0, 0],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: -140.6104544208731,
      y: -1467.0974954943586,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "CA Department of Education",
      type: "node",
      t: [
        {
          t: "CA Department of Education",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "923110",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 11.882327765298669,
      y: -1401.9458090473954,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "The Houstonian Hotel, Club & Spa",
      type: "node",
      t: [
        {
          t: "The Houstonian Hotel, Club & Spa",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "721110",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2048.7958538656044,
      y: -2228.175091374459,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United Nations Development Program in Ecuador",
      type: "node",
      t: [
        {
          t: "United Nations Development Program in Ecuador",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["EC"],
        industry: "928120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 722.3745142367648,
      y: 2432.1217480416826,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Warren County Public Schools",
      type: "node",
      t: [
        {
          t: "Warren County Public Schools",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1259.7930946653833,
      y: -948.2614919897755,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "NASA Interagency Advanced Power Group",
      type: "node",
      t: [
        {
          t: "NASA Interagency Advanced Power Group",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "927110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1268.8556773623181,
      y: 1718.7376645008717,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Waze",
      type: "node",
      t: [
        {
          t: "Waze",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541511",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1908.2365197126455,
      y: -2084.027554510499,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United Kingdom Court of Appeals",
      type: "node",
      t: [
        {
          t: "United Kingdom Court of Appeals",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "92211",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 431.80519293450425,
      y: -3066.3049253126096,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "EX ARMY UK",
      type: "node",
      t: [
        {
          t: "EX ARMY UK",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "441",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2003.5422496208794,
      y: -2006.066858394678,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Nintendo Co Ltd",
      type: "node",
      t: [
        {
          t: "Nintendo Co Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["JP"],
        industry: "339930",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1521.323976758732,
      y: -2357.637703217822,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Domino's Pizza Inc",
      type: "node",
      t: [
        {
          t: "Domino's Pizza Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722513",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2431.6664111575137,
      y: -2139.46822979807,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tata Motors Ltd",
      type: "node",
      t: [
        {
          t: "Tata Motors Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "336111",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1593.1800423661753,
      y: 1869.7797024860884,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Oxford",
      type: "node",
      t: [
        {
          t: "University of Oxford",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "611310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2145.635463439974,
      y: -1900.728018558239,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Kelly Plaza Dental Center",
      type: "node",
      t: [
        {
          t: "Kelly Plaza Dental Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 154.78955494804586,
      y: -3269.1377619545315,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PrezidentBank and Turkmenbashi bank",
      type: "node",
      t: [
        {
          t: "PrezidentBank and Turkmenbashi bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TM"],
        industry: "52",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1002.5730170555817,
      y: 2266.341226180133,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Outbrain Inc.",
      type: "node",
      t: [
        {
          t: "Outbrain Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813990",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1243.5114221375338,
      y: 2333.151754031598,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "German Federal Police",
      type: "node",
      t: [
        {
          t: "German Federal Police",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["DE"],
        industry: "92219",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1032.6359741465694,
      y: -947.0344898984299,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hong Kong Police Dept.",
      type: "node",
      t: [
        {
          t: "Hong Kong Police Dept.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["HK"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -687.1226166010251,
      y: -1242.9340039856452,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Vevo LLC",
      type: "node",
      t: [
        {
          t: "Vevo LLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "517919",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1955.4222370959483,
      y: -2514.0442758102786,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "The Johns Hopkins University",
      type: "node",
      t: [
        {
          t: "The Johns Hopkins University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1213.21880892441,
      y: 1037.2178987083753,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Terrorist",
      type: "node",
      t: [
        {
          t: "Terrorist group",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: false,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 2.386294361119891,
      donut: {
        v: [0, 0, 0, 1, 0, 0, 0, 1],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: 4553.780554246941,
      y: -1122.3427153090206,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Rouge Valley Health System",
      type: "node",
      t: [
        {
          t: "Rouge Valley Health System",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3811.3196418952757,
      y: -822.063774809003,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Manager",
      type: "node",
      t: [
        {
          t: "Manager or supervisor",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: true,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 4.401197381662156,
      donut: {
        v: [0, 12, 0, 0, 0, 0, 5, 10],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: 2480.2213328198595,
      y: -472.4094852141643,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Oligil Tax Services",
      type: "node",
      t: [
        {
          t: "Oligil Tax Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "5412",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2794.92355250089,
      y: -471.6278004598407,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Taylor Police Department",
      type: "node",
      t: [
        {
          t: "City of Taylor Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 412.5797587855868,
      y: -3226.99862565149,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Israel Institute of Technology",
      type: "node",
      t: [
        {
          t: "Israel Institute of Technology",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1261.2020947181136,
      y: 1568.227774631432,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Panda Security",
      type: "node",
      t: [
        {
          t: "Panda Security",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["ES"],
        industry: "511210",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1200.1126868723795,
      y: 1837.000560651938,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Pirate Bay",
      type: "node",
      t: [
        {
          t: "Pirate Bay",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SE"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2063.590972096619,
      y: -2380.6668651932314,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Executive",
      type: "node",
      t: [
        {
          t: "Executive or upper management",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: true,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 4.737669618283368,
      donut: {
        v: [0, 24, 1, 2, 0, 0, 11, 5],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: 2501.30465040524,
      y: -1409.0763894443303,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Community Health Center, Inc",
      type: "node",
      t: [
        {
          t: "Community Health Center, Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621498",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3020.162224440739,
      y: -1404.2666409700796,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ferris State University",
      type: "node",
      t: [
        {
          t: "Ferris State University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1087.8858714394755,
      y: -689.8604603056006,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Riot Games",
      type: "node",
      t: [
        {
          t: "Riot Games",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "000",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1318.8101483513983,
      y: 1686.2624469244047,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "British Pregnancy Advisory Service",
      type: "node",
      t: [
        {
          t: "British Pregnancy Advisory Service",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "813211",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 362.75389935785597,
      y: 108.32027059624352,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Nefesh Bnefesh",
      type: "node",
      t: [
        {
          t: "Nefesh Bnefesh",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "813410",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 733.1896773916405,
      y: 2202.2646238257203,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Back in Motion Physiotherapy",
      type: "node",
      t: [
        {
          t: "Back in Motion Physiotherapy",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "621340",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2254.1468388110816,
      y: -2151.3962858664363,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Goldman Sachs Group Inc/The",
      type: "node",
      t: [
        {
          t: "Goldman Sachs Group Inc/The",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "523120",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2990.0745432075646,
      y: -1504.0557080615768,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Perry Hospital",
      type: "node",
      t: [
        {
          t: "Perry Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -154.3577625934281,
      y: -3529.709391049066,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Live, Love and Dance Studio",
      type: "node",
      t: [
        {
          t: "Live, Love and Dance Studio",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611610",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2836.0281000025825,
      y: -428.60610620084844,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "uzfiles.com",
      type: "node",
      t: [
        {
          t: "uzfiles.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["UZ"],
        industry: "512",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1390.4116788890906,
      y: 2046.2240421744527,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "NECA/IBEW Family Medical Care Plan",
      type: "node",
      t: [
        {
          t: "NECA/IBEW Family Medical Care Plan",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813910",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -507.62840745650556,
      y: -3226.2265269686673,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Massachussets-Amsherst",
      type: "node",
      t: [
        {
          t: "University of Massachussets-Amsherst",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2040.8732551533808,
      y: -2445.5602354587922,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "CCS Medical, Inc.",
      type: "node",
      t: [
        {
          t: "CCS Medical, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "423450",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 273.545178893155,
      y: -3209.79235687011,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Erie County Department of Social Services",
      type: "node",
      t: [
        {
          t: "Erie County Department of Social Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 385.3104937399271,
      y: -2815.3586384452597,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alicare, Inc.",
      type: "node",
      t: [
        {
          t: "Alicare, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "525110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1168.1212809033368,
      y: -641.8531024274539,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Springfield Missouri (springfieldmo.gov)",
      type: "node",
      t: [
        {
          t: "City of Springfield Missouri (springfieldmo.gov)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1589.3785628292108,
      y: 1929.334885486367,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "UK Essex Police Department",
      type: "node",
      t: [
        {
          t: "UK Essex Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "92212",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 375.40455659604254,
      y: -3180.2820822000226,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National Intelligence Council",
      type: "node",
      t: [
        {
          t: "National Intelligence Council",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 557.9326911146627,
      y: 2178.787192711058,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Audibel Hearing Healthcare",
      type: "node",
      t: [
        {
          t: "Audibel Hearing Healthcare",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "339112",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -653.9394520262888,
      y: -2171.528934291153,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Washington University",
      type: "node",
      t: [
        {
          t: "Washington University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -448.0357344147824,
      y: -3391.6864973861416,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tunisian Ministry of Interior",
      type: "node",
      t: [
        {
          t: "Tunisian Ministry of Interior",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TN"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 170.2493634221562,
      y: -3520.553655854667,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Spirol International",
      type: "node",
      t: [
        {
          t: "Spirol International",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "332722",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 967.66760358175,
      y: 2317.0081068735726,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Community Hospitals of Indiana",
      type: "node",
      t: [
        {
          t: "Community Hospitals of Indiana",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 40.93509883233446,
      y: -3219.3044887149335,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Commidea Ltd",
      type: "node",
      t: [
        {
          t: "Commidea Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "541519",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2199.264136779216,
      y: -1912.3658639531177,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Vantiv Inc",
      type: "node",
      t: [
        {
          t: "Vantiv Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561499",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1994.6760359837417,
      y: -2123.194990855829,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PUBLIC EMPLOYEES RETIREMENT SYSTEM, CALIFORNIA",
      type: "node",
      t: [
        {
          t: "PUBLIC EMPLOYEES RETIREMENT SYSTEM, CALIFORNIA",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "525110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 220.29286795918688,
      y: -3368.0111914985623,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United States Sentencing Commission",
      type: "node",
      t: [
        {
          t: "United States Sentencing Commission",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922190",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 337.83728096089226,
      y: 1462.0600985455148,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Just Yo",
      type: "node",
      t: [
        {
          t: "Just Yo",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511210",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2183.449708853115,
      y: -2333.9033038199864,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Egyptian Govt Military education",
      type: "node",
      t: [
        {
          t: "Egyptian Govt Military education",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["EG"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1266.1403506239785,
      y: 1922.7156827278022,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Central Intelligence Agency",
      type: "node",
      t: [
        {
          t: "US Central Intelligence Agency",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92811",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1015.5832521895791,
      y: -2300.4432548855953,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bel-Air village in Makati City",
      type: "node",
      t: [
        {
          t: "Bel-Air village in Makati City",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PH"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1431.3244600811136,
      y: 2089.6507829330376,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "MiniMins.com",
      type: "node",
      t: [
        {
          t: "MiniMins.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541990",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2013.1428966795447,
      y: -2498.3987455153315,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Barclays Bank PLC",
      type: "node",
      t: [
        {
          t: "Barclays Bank PLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "522110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2261.059306159068,
      y: -2210.7669577862926,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "TJX Cos Inc",
      type: "node",
      t: [
        {
          t: "TJX Cos Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "448140",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2372.4851472999862,
      y: -2148.6925745783956,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Force majeure",
      type: "node",
      t: [
        {
          t: "Force majeure (nature and chance)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: false,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 3.995732273553991,
      donut: {
        v: [0, 0, 0, 0, 0, 0, 0, 13],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: -825.7259863590252,
      y: 1306.9458608236928,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "International Association of Chiefs of Police",
      type: "node",
      t: [
        {
          t: "International Association of Chiefs of Police",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "813920",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1385.2054061848962,
      y: 1491.936445269508,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Federal Bureau of Investigation",
      type: "node",
      t: [
        {
          t: "Federal Bureau of Investigation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92212",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 853.191246903707,
      y: 2368.647870662514,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City College of San Francisco",
      type: "node",
      t: [
        {
          t: "City College of San Francisco",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2122.4395256835273,
      y: -2094.880210713007,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "BAE Systems",
      type: "node",
      t: [
        {
          t: "BAE Systems",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "336413",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 379.5588785187879,
      y: -3535.787629428518,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Atlanta Womens Health Group",
      type: "node",
      t: [
        {
          t: "Atlanta Womens Health Group",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621498",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2115.7158841945225,
      y: -1991.2356118025295,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cooperative Institute of Management and Technology and Kerala Cultural Welfare Development",
      type: "node",
      t: [
        {
          t: "Cooperative Institute of Management and Technology and Kerala Cultural Welfare Development",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "51",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 703.4428025908933,
      y: 2113.044097409176,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "RBC Royal Bank of Canada",
      type: "node",
      t: [
        {
          t: "RBC Royal Bank of Canada",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "522110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1793.4952591303463,
      y: -2463.660317150909,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United Airlines",
      type: "node",
      t: [
        {
          t: "United Airlines",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "481111",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1187.505862021726,
      y: 1409.0403969341478,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Central University Of Tibetan Studies in India",
      type: "node",
      t: [
        {
          t: "Central University Of Tibetan Studies in India",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "6113",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3522.2755667622496,
      y: 281.46483744630405,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Missouri Credit Union",
      type: "node",
      t: [
        {
          t: "Missouri Credit Union",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1655.4994079005085,
      y: -295.47789948012087,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Children's Healthcare",
      type: "node",
      t: [
        {
          t: "Children's Healthcare",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2771.427822169051,
      y: -1662.4578146426743,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Commercial Metals Co",
      type: "node",
      t: [
        {
          t: "Commercial Metals Co",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 180.3178541251723,
      y: -3422.121295585925,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cedars-Sinai Medical Center",
      type: "node",
      t: [
        {
          t: "Cedars-Sinai Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -10.139337625546432,
      y: -3553.0420580721016,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National Aeronautics and Space Administration",
      type: "node",
      t: [
        {
          t: "National Aeronautics and Space Administration",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "927110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1319.392702878422,
      y: 2038.0686511189488,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Qatar Domains Registry",
      type: "node",
      t: [
        {
          t: "Qatar Domains Registry",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["QA"],
        industry: "518210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1294.5580764484102,
      y: 1176.3247663760794,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "H&T Multi Services",
      type: "node",
      t: [
        {
          t: "H&T Multi Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541213",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1894.4662593483508,
      y: -4114.451565532292,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Berkeley HeartLab",
      type: "node",
      t: [
        {
          t: "Berkeley HeartLab",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "325413",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 934.7750377000607,
      y: -1169.7876493338404,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Connecticut Health Center",
      type: "node",
      t: [
        {
          t: "University of Connecticut Health Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -39.40527407330228,
      y: -3390.637432755849,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Kenya Domain Registrar",
      type: "node",
      t: [
        {
          t: "Kenya Domain Registrar",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KE"],
        industry: "51",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1260.1632920989823,
      y: -120.66696052808197,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PC World Philippines",
      type: "node",
      t: [
        {
          t: "PC World Philippines",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PH"],
        industry: "511120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1620.1668484449747,
      y: 1755.153150777156,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Kara Falck, LCSW-C",
      type: "node",
      t: [
        {
          t: "Kara Falck, LCSW-C",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621330",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 482.1023041000192,
      y: -3400.785013228043,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "CN Hong Kong Police Force",
      type: "node",
      t: [
        {
          t: "CN Hong Kong Police Force",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CN"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 847.0343522248336,
      y: 2308.95398516603,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Johns Hopkins Medical",
      type: "node",
      t: [
        {
          t: "Johns Hopkins Medical",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -355.0598189140401,
      y: -1953.4571637606768,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Scottrade",
      type: "node",
      t: [
        {
          t: "Scottrade",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "523120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1944.1950997543909,
      y: -1721.5018992539271,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "grc.com",
      type: "node",
      t: [
        {
          t: "grc.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1970.675608759433,
      y: -2456.3967181802086,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National Security Agency",
      type: "node",
      t: [
        {
          t: "National Security Agency",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1498.6547584670948,
      y: 1495.9547233650237,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Saudi Aramco",
      type: "node",
      t: [
        {
          t: "Saudi Aramco",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SA"],
        industry: "211111",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1900.457343065922,
      y: 884.0922808793075,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Martin Memorial Health Systems, Inc.",
      type: "node",
      t: [
        {
          t: "Martin Memorial Health Systems, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1185.6685615124106,
      y: 1468.526306235195,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Isuzu France",
      type: "node",
      t: [
        {
          t: "Isuzu France",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["FR"],
        industry: "336120",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2042.7734052609494,
      y: -1961.020244708042,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "LabMD, Inc.",
      type: "node",
      t: [
        {
          t: "LabMD, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621511",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2828.2057368767146,
      y: -272.7130442590851,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Governors Office in Tunceli",
      type: "node",
      t: [
        {
          t: "Governors Office in Tunceli",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TR"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 726.4677434166028,
      y: 2281.1197498898146,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Indian BioResource Information Network",
      type: "node",
      t: [
        {
          t: "Indian BioResource Information Network",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "621999",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 785.5866705569651,
      y: 2288.685602649587,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "England Football Sqaud",
      type: "node",
      t: [
        {
          t: "England Football Sqaud",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "711211",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -578.1174815576269,
      y: -600.4748587095155,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "U.S. Bancorp",
      type: "node",
      t: [
        {
          t: "U.S. Bancorp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2073.084469008639,
      y: -2321.779734419762,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Mississippi Medical Center",
      type: "node",
      t: [
        {
          t: "University of Mississippi Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -260.2947732463972,
      y: -3475.17990794708,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Aberdeen Hospital in New Glasgow, N.S",
      type: "node",
      t: [
        {
          t: "Aberdeen Hospital in New Glasgow, N.S",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "622",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 487.501189997452,
      y: -3087.2458419868276,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Dave & Buster's",
      type: "node",
      t: [
        {
          t: "Dave & Buster's",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722511",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -855.905914630972,
      y: -1864.4039862484933,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Allied Irish Banks, p.l.c.",
      type: "node",
      t: [
        {
          t: "Allied Irish Banks, p.l.c.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IE"],
        industry: "522110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2222.6625280484104,
      y: -1700.1564622155602,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Kearny Mesa Infiniti",
      type: "node",
      t: [
        {
          t: "Kearny Mesa Infiniti",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "441110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -385.3241064066365,
      y: -3014.0270160611876,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Turkish Government",
      type: "node",
      t: [
        {
          t: "Turkish Government",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TR"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 492.8410430709614,
      y: 2162.929475129309,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Northern Inyo Hospital",
      type: "node",
      t: [
        {
          t: "Northern Inyo Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 468.31328502093106,
      y: -3205.973067040666,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "VG",
      type: "node",
      t: [
        {
          t: "VG",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2962.185263352392,
      y: -1726.6486421098625,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Under Armour",
      type: "node",
      t: [
        {
          t: "Under Armour",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "31522",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -505.5791435455949,
      y: -753.9978581208284,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PayPal, Inc.",
      type: "node",
      t: [
        {
          t: "PayPal, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "522320",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -411.0583176595908,
      y: 57.57527678383872,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "New York Department of Motor Vehicles",
      type: "node",
      t: [
        {
          t: "New York Department of Motor Vehicles",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -264.4727007846568,
      y: -3154.955695462057,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Association of American Medical Colleges",
      type: "node",
      t: [
        {
          t: "Association of American Medical Colleges",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813920",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2242.9950323181874,
      y: -2181.7656621548063,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Long Islands Head Injury Association",
      type: "node",
      t: [
        {
          t: "Long Islands Head Injury Association",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813990",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 331.66246475876005,
      y: -3223.5852746906207,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PR Newswire",
      type: "node",
      t: [
        {
          t: "PR Newswire",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2379.497311520774,
      y: -2089.533231498268,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tampa General Hospital",
      type: "node",
      t: [
        {
          t: "Tampa General Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1059.9566659199318,
      y: -3491.1282787632313,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Forbes Inc.",
      type: "node",
      t: [
        {
          t: "Forbes Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511120",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1298.668097667909,
      y: 2118.828850906779,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "A Caring Hand Home Health Care Services, Inc.",
      type: "node",
      t: [
        {
          t: "A Caring Hand Home Health Care Services, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "62111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 16.97491851527684,
      y: -3498.9091641757636,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alabamas ABC 33/40",
      type: "node",
      t: [
        {
          t: "Alabamas ABC 33/40",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "515120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2159.2060016386345,
      y: -2272.221775674634,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Financial Times Ltd.",
      type: "node",
      t: [
        {
          t: "Financial Times Ltd.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "511110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1059.4828663407675,
      y: 2283.958057462227,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Dallas Police Department",
      type: "node",
      t: [
        {
          t: "Dallas Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1610.8193515192306,
      y: -2496.8568428017693,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "GE Healthcare",
      type: "node",
      t: [
        {
          t: "GE Healthcare",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "424990",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 75.11108132725622,
      y: -3645.6135076485484,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of North Carolina at Chapel Hill",
      type: "node",
      t: [
        {
          t: "University of North Carolina at Chapel Hill",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1776.1136662438307,
      y: -34.309265239854085,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Commerce Bank",
      type: "node",
      t: [
        {
          t: "Commerce Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 741.947710962284,
      y: -1923.600484485201,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Experian",
      type: "node",
      t: [
        {
          t: "Experian",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561450",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1481.7775143146682,
      y: -1440.6584137247146,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Penang State Tourism Development & Culture",
      type: "node",
      t: [
        {
          t: "Penang State Tourism Development & Culture",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["MY"],
        industry: "926110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2087.1986732393552,
      y: -2483.186385126837,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National Air Traffic Services, Ltd.",
      type: "node",
      t: [
        {
          t: "National Air Traffic Services, Ltd.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "561499",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1102.8437299517627,
      y: 1417.5122023339118,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Td Bank Usa, NA",
      type: "node",
      t: [
        {
          t: "Td Bank Usa, NA",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2179.4647114934887,
      y: -2274.483960920546,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bruce G. Peller, DMD, PA",
      type: "node",
      t: [
        {
          t: "Bruce G. Peller, DMD, PA",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "62",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2928.7346576252185,
      y: -412.53448075930737,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Catholic Health Initiatives",
      type: "node",
      t: [
        {
          t: "Catholic Health Initiatives",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1985.7389809092351,
      y: -2286.788024085958,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Julius Baer",
      type: "node",
      t: [
        {
          t: "Julius Baer",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CH"],
        industry: "523930",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 158.61576734207438,
      y: -3578.9903332796785,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Steubenville High School Football Teams Website",
      type: "node",
      t: [
        {
          t: "Steubenville High School Football Teams Website",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "6117",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 388.99672803734734,
      y: 1411.2390689303684,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Electronic Arts Inc",
      type: "node",
      t: [
        {
          t: "Electronic Arts Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511210",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1773.4724693717653,
      y: -2565.0748266360374,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Rajiv Gandhi University of health sciences",
      type: "node",
      t: [
        {
          t: "Rajiv Gandhi University of health sciences",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "611310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 683.1527425963623,
      y: 2240.206879689911,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "TH CAT Telecom",
      type: "node",
      t: [
        {
          t: "TH CAT Telecom",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TH"],
        industry: "517110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 423.1019106858357,
      y: 1743.218621096431,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "MassMutual Financial Group",
      type: "node",
      t: [
        {
          t: "MassMutual Financial Group",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524113",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 105.90106685924957,
      y: -3420.6794842107006,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "csgameservs.com",
      type: "node",
      t: [
        {
          t: "csgameservs.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BR"],
        industry: "518",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1956.5543274631727,
      y: -2342.941902573291,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "State of California - Health and Human Services Agency - Department of Health Care Services",
      type: "node",
      t: [
        {
          t: "State of California - Health and Human Services Agency - Department of Health Care Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "923120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1800.9865562244256,
      y: -329.24316492494677,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Wilson County School District",
      type: "node",
      t: [
        {
          t: "Wilson County School District",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -715.4922184418324,
      y: -585.8842764106871,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Auntie Anne's Inc.",
      type: "node",
      t: [
        {
          t: "Auntie Anne's Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722515",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1572.3010099256567,
      y: -2388.338054774215,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "macrumors.com",
      type: "node",
      t: [
        {
          t: "macrumors.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1938.2107842941855,
      y: -1992.6911932040339,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bashas' Family of Stores",
      type: "node",
      t: [
        {
          t: "Bashas' Family of Stores",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2580.0427595297974,
      y: -1908.1084534485835,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Easton Area School District",
      type: "node",
      t: [
        {
          t: "Easton Area School District",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1707.704632331303,
      y: -324.37154550217565,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Pfizer, Inc.",
      type: "node",
      t: [
        {
          t: "Pfizer, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "325412",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -126.16735258810422,
      y: -3582.1700671516414,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "NRAD Medical Associates",
      type: "node",
      t: [
        {
          t: "NRAD Medical Associates",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621111",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4028.476423492237,
      y: -1427.2821270033633,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Russian Embassy in the US",
      type: "node",
      t: [
        {
          t: "Russian Embassy in the US",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["RU"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 406.7841178411172,
      y: 2217.8265703017423,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Broward County Court",
      type: "node",
      t: [
        {
          t: "Broward County Court",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1020.8792489438374,
      y: -3536.118574343463,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "County of Baltimore",
      type: "node",
      t: [
        {
          t: "County of Baltimore",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1093.4347348147185,
      y: -939.9518109217966,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Elizabethton City School System",
      type: "node",
      t: [
        {
          t: "Elizabethton City School System",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2752.880015771916,
      y: -572.4615915623963,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "RBS Worldpay",
      type: "node",
      t: [
        {
          t: "RBS Worldpay",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "522110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2494.636117859771,
      y: -2060.7350036356147,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Vitalit Health Network",
      type: "node",
      t: [
        {
          t: "Vitalit Health Network",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 103.57778982432183,
      y: -3513.32812682759,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Washington Network Group",
      type: "node",
      t: [
        {
          t: "Washington Network Group",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541611",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1858.2068001952998,
      y: -2308.4703404809125,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Zynga",
      type: "node",
      t: [
        {
          t: "Zynga",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511210",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2894.1230811366204,
      y: -1591.5597877379223,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Republic of Turkey Ministry of National Education",
      type: "node",
      t: [
        {
          t: "Republic of Turkey Ministry of National Education",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TR"],
        industry: "923110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2164.0018351910285,
      y: -2052.044853418377,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Temple City Gas Station",
      type: "node",
      t: [
        {
          t: "Temple City Gas Station",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "447110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2046.937587401062,
      y: -2087.335410691683,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "IHS Inc",
      type: "node",
      t: [
        {
          t: "IHS Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1589.2064638672564,
      y: 1663.3283978905583,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "TeaM Madleets",
      type: "node",
      t: [
        {
          t: "TeaM Madleets",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PK"],
        industry: "81",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 256.3285620037159,
      y: 1694.828521775793,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Givaudan Fragrances Corporation",
      type: "node",
      t: [
        {
          t: "Givaudan Fragrances Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "311930",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -467.68726355780746,
      y: -634.0448002638991,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Allied Bank Limited",
      type: "node",
      t: [
        {
          t: "Allied Bank Limited",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PK"],
        industry: "521110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1483.8826873196194,
      y: 2122.89188530874,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Georgia",
      type: "node",
      t: [
        {
          t: "University of Georgia",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1111.3091679558984,
      y: -744.6223621462891,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alabama Department of Corrections",
      type: "node",
      t: [
        {
          t: "Alabama Department of Corrections",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92214",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -628.5382800883551,
      y: -1758.8021889812276,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Defense Finance and Accounting Service",
      type: "node",
      t: [
        {
          t: "Defense Finance and Accounting Service",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522320",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2408.4214095059397,
      y: -1506.492929280239,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Leicestershire Partnership NHS Trust",
      type: "node",
      t: [
        {
          t: "Leicestershire Partnership NHS Trust",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "621999",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 368.6492611408876,
      y: -2874.8051563048316,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "ARY News Channel",
      type: "node",
      t: [
        {
          t: "ARY News Channel",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PK"],
        industry: "921190",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1257.0707619191408,
      y: 1856.2920207556353,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Indian Passport and Visa Application Center in Manama, Bahrain",
      type: "node",
      t: [
        {
          t: "Indian Passport and Visa Application Center in Manama, Bahrain",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BH"],
        industry: "921120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1155.2205796384483,
      y: 2128.6637278347607,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Environmental Protection Agency",
      type: "node",
      t: [
        {
          t: "Environmental Protection Agency",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1798.4841388633163,
      y: -972.4592775242322,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Murphy USA",
      type: "node",
      t: [
        {
          t: "Murphy USA",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "424720",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2080.08790305022,
      y: -2136.85793697575,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "JO Prime Minister of Jordan",
      type: "node",
      t: [
        {
          t: "JO Prime Minister of Jordan",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["JO"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1473.1763932535264,
      y: 1860.5479229840757,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Community Health Systems Inc",
      type: "node",
      t: [
        {
          t: "Community Health Systems Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2687.203630588365,
      y: 825.5979429163608,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Fundtech Corporation",
      type: "node",
      t: [
        {
          t: "Fundtech Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511210",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2213.512991395054,
      y: -1977.0992975515965,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Maintenance",
      type: "node",
      t: [
        {
          t: "Maintenance or janitorial staff",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: true,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 2.6094379124341005,
      donut: {
        v: [0, 0, 0, 1, 0, 0, 0, 3],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: 4540.523953823762,
      y: -1449.34972814098,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Iowa Department of Human Services",
      type: "node",
      t: [
        {
          t: "Iowa Department of Human Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4491.925591134275,
      y: -1324.1711698793488,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "translate.com",
      type: "node",
      t: [
        {
          t: "translate.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "541",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 950.583652225328,
      y: 2190.127452690891,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Millard High School",
      type: "node",
      t: [
        {
          t: "Millard High School",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -857.4876061062378,
      y: -450.096900258972,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cook Islands Ministry of Foreign Affairs",
      type: "node",
      t: [
        {
          t: "Cook Islands Ministry of Foreign Affairs",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CK"],
        industry: "921110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1841.8896270916953,
      y: -2519.8454578789047,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "APEX CARY INSURANCE AGENCY",
      type: "node",
      t: [
        {
          t: "APEX CARY INSURANCE AGENCY",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524210",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2297.979460955553,
      y: -1492.27303762492,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "TR Government of Turkey",
      type: "node",
      t: [
        {
          t: "TR Government of Turkey",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TR"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1436.7032336244183,
      y: 1937.2882088807864,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "HM Prison Services",
      type: "node",
      t: [
        {
          t: "HM Prison Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "922140",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -386.4887528705831,
      y: -972.0101539252341,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "UA Government of Ukraine",
      type: "node",
      t: [
        {
          t: "UA Government of Ukraine",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["UA"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 586.416929323791,
      y: 2125.00407948075,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Microsoft",
      type: "node",
      t: [
        {
          t: "Microsoft",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 351.97050473450054,
      y: 2240.9801349925456,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Symantec Corporation",
      type: "node",
      t: [
        {
          t: "Symantec Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3511.2359230085967,
      y: 95.3662164571706,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Central Pacific Bank",
      type: "node",
      t: [
        {
          t: "Central Pacific Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1487.7716752133747,
      y: -2251.1467032086653,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Walmart",
      type: "node",
      t: [
        {
          t: "Walmart",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "452910",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -533.646225210245,
      y: -1676.3682793416847,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "International Police Association of Australia",
      type: "node",
      t: [
        {
          t: "International Police Association of Australia",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "813990",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 824.7502470957957,
      y: 1933.8780247057284,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Vice Magazine",
      type: "node",
      t: [
        {
          t: "Vice Magazine",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511120",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1005.5799708909094,
      y: 2425.9576399089256,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Life Flight",
      type: "node",
      t: [
        {
          t: "Life Flight",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "485999",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -898.6898906256879,
      y: -560.3491215290896,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "FileDen",
      type: "node",
      t: [
        {
          t: "FileDen",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "518",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2233.292781993564,
      y: -2123.0447890282703,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Volunteer State Community College",
      type: "node",
      t: [
        {
          t: "Volunteer State Community College",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "611210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -343.36096240116467,
      y: -3576.515866018553,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Case Western Reserve University",
      type: "node",
      t: [
        {
          t: "Case Western Reserve University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1607.70993855597,
      y: -1573.2390674745411,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Edge Auto Sales",
      type: "node",
      t: [
        {
          t: "Edge Auto Sales",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "441",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2889.029286269815,
      y: -1238.2218389514287,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Russian Government",
      type: "node",
      t: [
        {
          t: "Russian Government",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["RU"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1511.2379467388305,
      y: 2069.9188810449014,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Consumer's Credit Union",
      type: "node",
      t: [
        {
          t: "Consumer's Credit Union",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -445.8309500919845,
      y: -966.8282035670723,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Navy",
      type: "node",
      t: [
        {
          t: "US Navy",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "928110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2926.7876274893033,
      y: -1477.0455064640837,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Texas Tech University Health Sciences Center",
      type: "node",
      t: [
        {
          t: "Texas Tech University Health Sciences Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -252.6769787161711,
      y: -3537.914709034121,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Pakistan International Airline",
      type: "node",
      t: [
        {
          t: "Pakistan International Airline",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PK"],
        industry: "485999",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 863.6767300531524,
      y: -626.4725636798403,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Apple Inc.",
      type: "node",
      t: [
        {
          t: "Apple Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "334220",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1189.6135386013143,
      y: 2177.4612054059144,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Minnesota Department of Public Safety Driver and Vehicle Services (DVS)",
      type: "node",
      t: [
        {
          t: "Minnesota Department of Public Safety Driver and Vehicle Services (DVS)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "926120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -145.82855467935974,
      y: -3222.1652388038087,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "LEAM DRILLING SYSTEMS",
      type: "node",
      t: [
        {
          t: "LEAM DRILLING SYSTEMS",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "213111",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2331.952384598647,
      y: -1984.594644685285,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sentara General Hospital",
      type: "node",
      t: [
        {
          t: "Sentara General Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -991.1999793801406,
      y: -1260.649894298494,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "MIssissippi Department of Public Safety",
      type: "node",
      t: [
        {
          t: "MIssissippi Department of Public Safety",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "926120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 838.2163383343554,
      y: -2505.595332392042,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "LK Advani",
      type: "node",
      t: [
        {
          t: "LK Advani",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1327.4290664118416,
      y: 2171.0976567476328,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Defence Research and Development Organisation (DRDO)",
      type: "node",
      t: [
        {
          t: "Defence Research and Development Organisation (DRDO)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3664.2912007426967,
      y: 176.22209636692514,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "The Royal Bank of Scotland Group plc",
      type: "node",
      t: [
        {
          t: "The Royal Bank of Scotland Group plc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "522110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1143.0964800540137,
      y: 2273.6959337940343,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Duke University Health System",
      type: "node",
      t: [
        {
          t: "Duke University Health System",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1679.3277620630988,
      y: -4134.393310159467,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Rogersville, AL",
      type: "node",
      t: [
        {
          t: "City of Rogersville, AL",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 311.7249701832293,
      y: -2617.0254835921783,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Kalmar Airport",
      type: "node",
      t: [
        {
          t: "Kalmar Airport",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SE"],
        industry: "481111",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 319.16812201057223,
      y: 1941.5208067472458,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sprechman & Associates",
      type: "node",
      t: [
        {
          t: "Sprechman & Associates",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -6.770987708606754,
      y: -2518.5744895715,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Eastern Illinois University",
      type: "node",
      t: [
        {
          t: "Eastern Illinois University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 383.44678023555025,
      y: -3468.0206999875377,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Eddie Merlot's",
      type: "node",
      t: [
        {
          t: "Eddie Merlot's",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2904.9130785455236,
      y: -515.7503108213277,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Chicago Board of Elections",
      type: "node",
      t: [
        {
          t: "Chicago Board of Elections",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 466.927517246723,
      y: -504.07718201404487,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bringham Young University",
      type: "node",
      t: [
        {
          t: "Bringham Young University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "6113",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 520.9414820731743,
      y: -2851.351148131476,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Human resources",
      type: "node",
      t: [
        {
          t: "Human resources staff",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: true,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 3.3978952727983707,
      donut: {
        v: [0, 3, 1, 0, 0, 0, 1, 5],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: -2481.4123951665247,
      y: -788.2827461156648,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "NZ Defense Force",
      type: "node",
      t: [
        {
          t: "NZ Defense Force",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NZ"],
        industry: "928110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2739.6171588603784,
      y: -699.0986445959825,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hagerty Insurance",
      type: "node",
      t: [
        {
          t: "Hagerty Insurance",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524210",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 901.5178905789076,
      y: -672.4809550612626,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Taiwan Air Force",
      type: "node",
      t: [
        {
          t: "Taiwan Air Force",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TW"],
        industry: "928110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2485.1642548675663,
      y: -266.47985474389156,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Heber City Police Department",
      type: "node",
      t: [
        {
          t: "Heber City Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -389.13010098052473,
      y: -3429.5739473588233,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Kali Linux",
      type: "node",
      t: [
        {
          t: "Kali Linux",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "51",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 738.0966848510634,
      y: 2349.273799515264,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "vBCoderz",
      type: "node",
      t: [
        {
          t: "vBCoderz",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "51919",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 282.7076047067965,
      y: 1988.7501612366887,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Valve Corporation",
      type: "node",
      t: [
        {
          t: "Valve Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511210",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -165.81615814497536,
      y: 749.8487359872943,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "St. Louis Housing Authority",
      type: "node",
      t: [
        {
          t: "St. Louis Housing Authority",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "925110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2767.895618007855,
      y: -418.51563971185624,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Gawker Media",
      type: "node",
      t: [
        {
          t: "Gawker Media",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1476.8873108310208,
      y: 1361.844336609327,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "MN Department of Public Safety",
      type: "node",
      t: [
        {
          t: "MN Department of Public Safety",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922190",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -268.9142520764658,
      y: -3368.620961032832,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "gabonactu.com",
      type: "node",
      t: [
        {
          t: "gabonactu.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GA"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 688.8544643051841,
      y: 2382.8781210049165,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Mango",
      type: "node",
      t: [
        {
          t: "Mango",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["ZW"],
        industry: "517110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2753.9986107147033,
      y: 568.4750196106497,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "USIS US Investigative Services",
      type: "node",
      t: [
        {
          t: "USIS US Investigative Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561611",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2838.154809562656,
      y: 388.77062686510476,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Indian Government Website",
      type: "node",
      t: [
        {
          t: "Indian Government Website",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 188.1196586606775,
      y: 1917.8512104962738,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "BSNL",
      type: "node",
      t: [
        {
          t: "BSNL",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "517",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2072.7021163369254,
      y: 877.7706157750122,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Florida Hospital",
      type: "node",
      t: [
        {
          t: "Florida Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 207.9857009117727,
      y: -3612.460756627955,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "The Dow Chemical Company",
      type: "node",
      t: [
        {
          t: "The Dow Chemical Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "325211",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3470.874615471408,
      y: 311.7740232890983,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Santander bank",
      type: "node",
      t: [
        {
          t: "Santander bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "522210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1278.9054645254214,
      y: -1004.6188966614582,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Kent Police Website",
      type: "node",
      t: [
        {
          t: "Kent Police Website",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1563.5584036264418,
      y: -2457.3442332303157,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Redenet",
      type: "node",
      t: [
        {
          t: "Redenet",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BR"],
        industry: "611310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1154.2867237734263,
      y: 2038.8520206935327,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Syracuse Police Department",
      type: "node",
      t: [
        {
          t: "Syracuse Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "9221",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1414.9150869754367,
      y: 1359.8724281058476,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Avira antivirus",
      type: "node",
      t: [
        {
          t: "Avira antivirus",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["DE"],
        industry: "511210",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1186.954667717956,
      y: 2313.9337089432265,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Genesis Rehabilitation Service",
      type: "node",
      t: [
        {
          t: "Genesis Rehabilitation Service",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621498",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1.809509972488513,
      y: -3338.961545319033,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Brentwood Primary Care Clinic",
      type: "node",
      t: [
        {
          t: "Brentwood Primary Care Clinic",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 530.2425892703218,
      y: -3182.390236834501,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Capella University, Inc.",
      type: "node",
      t: [
        {
          t: "Capella University, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2038.7680009500318,
      y: -3990.849638387473,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Latvia State Employment Agency",
      type: "node",
      t: [
        {
          t: "Latvia State Employment Agency",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["LV"],
        industry: "923130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1360.7224759205806,
      y: 2220.5654683744997,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Radiant Systems",
      type: "node",
      t: [
        {
          t: "Radiant Systems",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541512",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1742.2284877833827,
      y: -207.36316167929044,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National Research Council",
      type: "node",
      t: [
        {
          t: "National Research Council",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "5417",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2694.9672230298484,
      y: 547.028661892416,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Adults and Children with learning and Developmental Disabilities, Inc",
      type: "node",
      t: [
        {
          t: "Adults and Children with learning and Developmental Disabilities, Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "623312",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1293.0126117316413,
      y: -898.7240389005269,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alabama Title Loans, Inc.",
      type: "node",
      t: [
        {
          t: "Alabama Title Loans, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "5223",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1822.8941535820577,
      y: -4218.038002162102,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Puthiyathalaimurai",
      type: "node",
      t: [
        {
          t: "Puthiyathalaimurai",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "515120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1357.411280979774,
      y: 1343.482059004551,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Fifth Third Bancorp",
      type: "node",
      t: [
        {
          t: "Fifth Third Bancorp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1272.8428557993414,
      y: -1936.7625632676504,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Siam Commercial Bank PCL",
      type: "node",
      t: [
        {
          t: "Siam Commercial Bank PCL",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2102.2548845023985,
      y: -2254.636129735127,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "San Jose Medical Supply Company",
      type: "node",
      t: [
        {
          t: "San Jose Medical Supply Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "446199",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2823.148242966262,
      y: -1628.7595295516944,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "NongHyup Bank",
      type: "node",
      t: [
        {
          t: "NongHyup Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KR"],
        industry: "522110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3447.8274734761835,
      y: 411.39572893473905,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Inova Health System",
      type: "node",
      t: [
        {
          t: "Inova Health System",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1722.5001448042915,
      y: -60.45102021113826,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Victoria Police",
      type: "node",
      t: [
        {
          t: "Victoria Police",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1020.5426390864604,
      y: -1173.4236494088414,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Caribbean islands of Antigua and Barbuda",
      type: "node",
      t: [
        {
          t: "Caribbean islands of Antigua and Barbuda",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AG"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1244.4072297314337,
      y: 1140.7815777823616,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Sumner",
      type: "node",
      t: [
        {
          t: "City of Sumner",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -951.9599000611479,
      y: -720.0353584473501,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Google Inc.",
      type: "node",
      t: [
        {
          t: "Google Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BO"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2086.4431586912488,
      y: 819.7822016189289,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "UA Customs Service",
      type: "node",
      t: [
        {
          t: "UA Customs Service",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["UA"],
        industry: "92811",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1209.1049038001065,
      y: 2103.4134404843116,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Federal Bar Association",
      type: "node",
      t: [
        {
          t: "Federal Bar Association",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813920",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1552.7260837971698,
      y: 2027.184304548493,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Healing Hearts",
      type: "node",
      t: [
        {
          t: "Healing Hearts",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "624190",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2723.6428148355135,
      y: -302.28117282630774,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Virginia Law School",
      type: "node",
      t: [
        {
          t: "University of Virginia Law School",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2723.085778251118,
      y: -756.296351992496,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "MX Mexican House of Representatives",
      type: "node",
      t: [
        {
          t: "MX Mexican House of Representatives",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["MX"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 634.2464987807739,
      y: 2406.77909098073,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tinder",
      type: "node",
      t: [
        {
          t: "Tinder",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511210",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1196.5720132668343,
      y: -1385.8751426887147,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Homeplus",
      type: "node",
      t: [
        {
          t: "Homeplus",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KR"],
        industry: "445",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2762.295021750774,
      y: -1603.4341046870286,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Central Tibetan Administration",
      type: "node",
      t: [
        {
          t: "Central Tibetan Administration",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CN"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2783.556540850999,
      y: 620.3010237844164,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bar-Ilan University",
      type: "node",
      t: [
        {
          t: "Bar-Ilan University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1293.7907588925273,
      y: 2301.2078266226654,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "GreenNet",
      type: "node",
      t: [
        {
          t: "GreenNet",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "517110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2801.5216116186675,
      y: 513.6258256991143,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "St. Aldhelm's Academy",
      type: "node",
      t: [
        {
          t: "St. Aldhelm's Academy",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "611110",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2321.046898860175,
      y: -2216.436853748477,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Zone Technologies",
      type: "node",
      t: [
        {
          t: "Zone Technologies",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["ZA"],
        industry: "518",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1213.6461558598576,
      y: 2043.3696785156208,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "HTC Corporation",
      type: "node",
      t: [
        {
          t: "HTC Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TW"],
        industry: "334220",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2963.115906573178,
      y: -1382.4126007505752,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Royal Jubilee Hospital",
      type: "node",
      t: [
        {
          t: "Royal Jubilee Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "622",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1199.2335833391062,
      y: -1148.3887081863681,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Deutsche Telekom AG",
      type: "node",
      t: [
        {
          t: "Deutsche Telekom AG",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["DE"],
        industry: "51721",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -222.48050297078635,
      y: -3215.4067450407724,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jaime Delgado Zegarra",
      type: "node",
      t: [
        {
          t: "Jaime Delgado Zegarra",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PE"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1676.4138229642176,
      y: -2417.424529117898,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Arhan Technologies",
      type: "node",
      t: [
        {
          t: "Arhan Technologies",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "423830",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3757.0419412640667,
      y: -1196.0993549784857,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ateneo de Manila University",
      type: "node",
      t: [
        {
          t: "Ateneo de Manila University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PH"],
        industry: "61",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1042.099468908642,
      y: 2002.4019034429457,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Trustmark Corp",
      type: "node",
      t: [
        {
          t: "Trustmark Corp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2802.660708001159,
      y: -539.5866511383219,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Washington State Department of Social and Health Services",
      type: "node",
      t: [
        {
          t: "Washington State Department of Social and Health Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813319",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2065.3546725973924,
      y: -2130.396237990326,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hill Air Force Base",
      type: "node",
      t: [
        {
          t: "Hill Air Force Base",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "9281",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 419.16918286994724,
      y: -3301.4738260843355,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "DigitalOcean",
      type: "node",
      t: [
        {
          t: "DigitalOcean",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541512",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1174.4254707625282,
      y: 2372.3106464345874,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Prime Healthcare Services",
      type: "node",
      t: [
        {
          t: "Prime Healthcare Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2783.4182876781406,
      y: -1547.6569312092315,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alabama State Employees Insurance Board ",
      type: "node",
      t: [
        {
          t: "Alabama State Employees Insurance Board ",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524114",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -972.7538953149738,
      y: -2430.5849343076343,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bluefield State College",
      type: "node",
      t: [
        {
          t: "Bluefield State College",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1852.981518222039,
      y: -2461.2360630804146,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "English Defence League",
      type: "node",
      t: [
        {
          t: "English Defence League",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "813940",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1420.3140355841206,
      y: 1188.0980475252973,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hogan Services Inc. Health Care Premium Plan",
      type: "node",
      t: [
        {
          t: "Hogan Services Inc. Health Care Premium Plan",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524114",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1554.9353368588556,
      y: -93.2442112652684,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Florida Department of Health",
      type: "node",
      t: [
        {
          t: "Florida Department of Health",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "923120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -310.98164452904257,
      y: -1913.1571304687704,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Back Country Hospital",
      type: "node",
      t: [
        {
          t: "Back Country Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4083.2892963069608,
      y: -1562.624560318683,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Aberdeen Hospital",
      type: "node",
      t: [
        {
          t: "Aberdeen Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "622110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -21.40653938333253,
      y: -3623.5173966175316,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ziggo B.V.",
      type: "node",
      t: [
        {
          t: "Ziggo B.V.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NL"],
        industry: "517919",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1140.8434011543413,
      y: -1163.104269779345,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Russian Radio",
      type: "node",
      t: [
        {
          t: "Russian Radio",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["UA"],
        industry: "515112",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 596.6146114465791,
      y: 1218.2469082613552,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "BJP Junagadh",
      type: "node",
      t: [
        {
          t: "BJP Junagadh",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "813940",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1802.265242046537,
      y: -1594.445459771503,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Odense Council",
      type: "node",
      t: [
        {
          t: "Odense Council",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["DK"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2794.639194817176,
      y: -1376.5124531689066,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "South Florida State Hospital",
      type: "node",
      t: [
        {
          t: "South Florida State Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -426.67247759137854,
      y: -3133.437783669226,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National Electoral Commission of Argentina",
      type: "node",
      t: [
        {
          t: "National Electoral Commission of Argentina",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AR"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2163.732406455576,
      y: -1843.8456160161177,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Pentagon Force Protection Agency",
      type: "node",
      t: [
        {
          t: "Pentagon Force Protection Agency",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "928110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1043.4389910625414,
      y: 1587.0070772889421,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "North Korea",
      type: "node",
      t: [
        {
          t: "North Korea",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KP"],
        industry: "92",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1461.646384129439,
      y: 2036.9222725742748,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Japan's Ministry of Agriculture, Forestry and Fisheries",
      type: "node",
      t: [
        {
          t: "Japan's Ministry of Agriculture, Forestry and Fisheries",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["JP"],
        industry: "926140",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3640.2315119565283,
      y: 121.78231265171007,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Huntington Bank",
      type: "node",
      t: [
        {
          t: "Huntington Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2915.5634385479207,
      y: -1418.5442875025615,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Minnesota Department of Labor and Industry",
      type: "node",
      t: [
        {
          t: "Minnesota Department of Labor and Industry",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "926150",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 550.6165104595034,
      y: -2932.1333158420744,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Mercotour.com",
      type: "node",
      t: [
        {
          t: "Mercotour.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AR"],
        industry: "72",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1564.4451694043205,
      y: 1780.6922828558972,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "North Cumbria University Hospitals NHS Trust",
      type: "node",
      t: [
        {
          t: "North Cumbria University Hospitals NHS Trust",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -558.5164809763037,
      y: -698.3402435705175,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "BIPS",
      type: "node",
      t: [
        {
          t: "BIPS",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["DK"],
        industry: "522320",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2239.740129369634,
      y: -2093.499318178694,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Google Inc",
      type: "node",
      t: [
        {
          t: "Google Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1336.1186529259803,
      y: 1421.425598947837,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bill & Melinda Gates Foundation",
      type: "node",
      t: [
        {
          t: "Bill & Melinda Gates Foundation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813211",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 367.10894571407516,
      y: -2937.9945763446044,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Claire's Stores",
      type: "node",
      t: [
        {
          t: "Claire's Stores",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "448",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2756.0648486358405,
      y: -641.4825938643826,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Federal Bureau of Investigation (FBI)",
      type: "node",
      t: [
        {
          t: "Federal Bureau of Investigation (FBI)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 431.57668439569534,
      y: -3506.7439614747586,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Urological Associates of Southern Arizona, P.C.",
      type: "node",
      t: [
        {
          t: "Urological Associates of Southern Arizona, P.C.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621111",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -206.22626206138193,
      y: -3500.5173494874048,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Internal Revenue Service",
      type: "node",
      t: [
        {
          t: "Internal Revenue Service",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921130",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1153.0166618114563,
      y: -2756.308623240852,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United Nations Population Fund (UNFPA)",
      type: "node",
      t: [
        {
          t: "United Nations Population Fund (UNFPA)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1625.1240233788812,
      y: 1615.5855043719976,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Moca Asian Bistro",
      type: "node",
      t: [
        {
          t: "Moca Asian Bistro",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722511",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -852.9285887158442,
      y: -2105.946209073287,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "LA Fitness",
      type: "node",
      t: [
        {
          t: "LA Fitness",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "713940",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -560.3522372927873,
      y: -543.4180017270278,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Namesco Limited",
      type: "node",
      t: [
        {
          t: "Namesco Limited",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IE"],
        industry: "511210",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1102.9647833963263,
      y: 1590.256706124981,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Club Soda",
      type: "node",
      t: [
        {
          t: "Club Soda",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722513",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2149.7739679656547,
      y: -1437.03890615009,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Postal Service",
      type: "node",
      t: [
        {
          t: "US Postal Service",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "491110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1130.8582587208032,
      y: -1450.8384871651624,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "TSYS",
      type: "node",
      t: [
        {
          t: "TSYS",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "33411",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -836.9741270576405,
      y: -579.4072228819327,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "realestate.sy",
      type: "node",
      t: [
        {
          t: "realestate.sy",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SY"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1400.268273576307,
      y: 1645.3932751975808,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Arrowe Park Hospital",
      type: "node",
      t: [
        {
          t: "Arrowe Park Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 276.56996887539003,
      y: -3277.612927773809,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Exel Transportation Services",
      type: "node",
      t: [
        {
          t: "Exel Transportation Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "488510",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4017.6456156350177,
      y: -1485.8248119900136,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "presidental office website of nepal ",
      type: "node",
      t: [
        {
          t: "presidental office website of nepal ",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NP"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4503.463518900322,
      y: -1007.8757295143619,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Internal Revenue Services",
      type: "node",
      t: [
        {
          t: "Internal Revenue Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921130",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1102.951955446013,
      y: -860.725720196519,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "almshaheer.com",
      type: "node",
      t: [
        {
          t: "almshaheer.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SD"],
        industry: "51913",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 625.1734008662957,
      y: 2316.7750455125015,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Heartland Payment Systems, Inc.",
      type: "node",
      t: [
        {
          t: "Heartland Payment Systems, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522320",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2186.5196122103202,
      y: -1596.1379016014398,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "ASPX Vietnam",
      type: "node",
      t: [
        {
          t: "ASPX Vietnam",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["VN"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1575.0901788950873,
      y: 1583.057323985502,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Radio Telef_s ireann",
      type: "node",
      t: [
        {
          t: "Radio Telef_s ireann",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IE"],
        industry: "515120",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2278.7300104241076,
      y: -1807.324119310466,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Uniontown Hospital",
      type: "node",
      t: [
        {
          t: "Uniontown Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541380",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 318.80537085832793,
      y: 2145.249804056084,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Elgin Police Department",
      type: "node",
      t: [
        {
          t: "Elgin Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2745.549963470604,
      y: -363.3039526752191,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Prince Edward Island School Systems",
      type: "node",
      t: [
        {
          t: "Prince Edward Island School Systems",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "813410",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -774.1238920458218,
      y: -574.191245072408,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Aetna",
      type: "node",
      t: [
        {
          t: "Aetna",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524114",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1721.5006947785862,
      y: 58.55273898974974,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Social Security Administration",
      type: "node",
      t: [
        {
          t: "US Social Security Administration",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92611",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2838.212456935258,
      y: -1571.121572827622,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Antioch Unified School District",
      type: "node",
      t: [
        {
          t: "Antioch Unified School District",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -388.35399097496975,
      y: -3257.569989240115,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Economic Development Association Scotland",
      type: "node",
      t: [
        {
          t: "Economic Development Association Scotland",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "5419",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1631.1354318132862,
      y: -2378.7311383227448,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Madison",
      type: "node",
      t: [
        {
          t: "City of Madison",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1823.635673719845,
      y: -175.2196001590878,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Target Corporation",
      type: "node",
      t: [
        {
          t: "Target Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "452112",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2242.6002823535173,
      y: -1576.0345889506361,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bit9",
      type: "node",
      t: [
        {
          t: "Bit9",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541511",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3578.290172284409,
      y: 260.84158610898976,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Cuero, TX",
      type: "node",
      t: [
        {
          t: "City of Cuero, TX",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "813910",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4041.1204070184067,
      y: -1686.1500209119217,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Americash Loans LLC",
      type: "node",
      t: [
        {
          t: "Americash Loans LLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522291",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 147.78006049908777,
      y: 1736.2314700611032,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "KH Cambodia Anti-Corruption Unit (ACU)",
      type: "node",
      t: [
        {
          t: "KH Cambodia Anti-Corruption Unit (ACU)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KH"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1061.1859157468025,
      y: 2404.641250963263,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Turkish Police Department",
      type: "node",
      t: [
        {
          t: "Turkish Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TR"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 797.6671737326169,
      y: 2346.9531880999257,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Department of Energy",
      type: "node",
      t: [
        {
          t: "Department of Energy",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "926130",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2741.8682533344736,
      y: 510.2054420595209,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jumbo Chinese Buffet",
      type: "node",
      t: [
        {
          t: "Jumbo Chinese Buffet",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722513",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -233.5929873793657,
      y: -3618.344790196083,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jeju Bank Co., Ltd.",
      type: "node",
      t: [
        {
          t: "Jeju Bank Co., Ltd.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KR"],
        industry: "522110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3589.4787215193173,
      y: 153.24287803984316,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Back of American and Chase",
      type: "node",
      t: [
        {
          t: "Back of American and Chase",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "52",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1243.1054863652175,
      y: 2208.5425239977903,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "AAPT",
      type: "node",
      t: [
        {
          t: "AAPT",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "517110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 532.7193071650568,
      y: 2353.573809568209,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "McGowan Institute for Regenerative Medicine",
      type: "node",
      t: [
        {
          t: "McGowan Institute for Regenerative Medicine",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 500.5244065165473,
      y: 2061.3152785860493,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Lakewood Ranch Hospital",
      type: "node",
      t: [
        {
          t: "Lakewood Ranch Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 574.1437214973807,
      y: -3262.693203043893,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Daffodil University",
      type: "node",
      t: [
        {
          t: "Daffodil University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BD"],
        industry: "611310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1164.098090276062,
      y: 1330.1503045892841,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Boxcar Hosting",
      type: "node",
      t: [
        {
          t: "Boxcar Hosting",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "518210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 25.73418568691818,
      y: -1459.9176095975326,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Dun & Bradstreet Corporation",
      type: "node",
      t: [
        {
          t: "Dun & Bradstreet Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561450",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2221.3781771320555,
      y: -2036.2554327746093,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "West Benagals public health engineering department",
      type: "node",
      t: [
        {
          t: "West Benagals public health engineering department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1342.5375054768497,
      y: 1840.8790312304554,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Japan’s Ministry of Agriculture, Forestry and Fisheries",
      type: "node",
      t: [
        {
          t: "Japan’s Ministry of Agriculture, Forestry and Fisheries",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["JP"],
        industry: "11",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1292.5685448292502,
      y: 1802.1212711160988,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Juniper Networks, Inc.",
      type: "node",
      t: [
        {
          t: "Juniper Networks, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "334118",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3685.951405587628,
      y: 231.77186997455829,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "AhaShare",
      type: "node",
      t: [
        {
          t: "AhaShare",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1354.822428253532,
      y: -2092.694801715491,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Keetch Clothing",
      type: "node",
      t: [
        {
          t: "Keetch Clothing",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CH"],
        industry: "315190",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 620.0339187931845,
      y: 1864.0257403108135,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Family Healthcare Group Inc. and Houston Compassionate Care",
      type: "node",
      t: [
        {
          t: "Family Healthcare Group Inc. and Houston Compassionate Care",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 334.57297628916876,
      y: -3031.3155213715204,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cricfire",
      type: "node",
      t: [
        {
          t: "Cricfire",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PA"],
        industry: "51913",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1930.8325753477125,
      y: -1809.227414541525,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Quebec Institute of Public Health",
      type: "node",
      t: [
        {
          t: "Quebec Institute of Public Health",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1399.628389308346,
      y: 1823.5178983817277,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "JPMorgan Chase & Co.",
      type: "node",
      t: [
        {
          t: "JPMorgan Chase & Co.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1246.920312189406,
      y: -62.57868940615913,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jinbonet",
      type: "node",
      t: [
        {
          t: "Jinbonet",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KR"],
        industry: "517110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2677.0410800273257,
      y: 490.0347853418127,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Greenhost",
      type: "node",
      t: [
        {
          t: "Greenhost",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NL"],
        industry: "517110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2717.9768845021817,
      y: 615.9838437148805,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "World Poker Tour Amateur Poker League",
      type: "node",
      t: [
        {
          t: "World Poker Tour Amateur Poker League",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "713940",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2044.9253044458692,
      y: -2074.450821057729,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "CL Chile Ministry of Agriculture",
      type: "node",
      t: [
        {
          t: "CL Chile Ministry of Agriculture",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CL"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1441.2648945063906,
      y: 2164.639101408965,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sunshine Pharmacy",
      type: "node",
      t: [
        {
          t: "Sunshine Pharmacy",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "446110",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 419.3626863681425,
      y: -3420.523598448251,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Amazon Web Services, Inc.",
      type: "node",
      t: [
        {
          t: "Amazon Web Services, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "517110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 714.3231158352382,
      y: -1678.51364452706,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Turkish ICA",
      type: "node",
      t: [
        {
          t: "Turkish ICA",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TR"],
        industry: "921",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 93.40269561794571,
      y: 1644.2128941322226,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "California Workplace Health, Safety and Compensation Commission (WHSCC)",
      type: "node",
      t: [
        {
          t: "California Workplace Health, Safety and Compensation Commission (WHSCC)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -411.41383780254955,
      y: -3067.8680618882295,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Truecaller",
      type: "node",
      t: [
        {
          t: "Truecaller",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1274.975680133446,
      y: 1388.4578537950865,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Rent-A-Center",
      type: "node",
      t: [
        {
          t: "Rent-A-Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "53221",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 475.6009762947813,
      y: -2798.198954146172,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Krungthai Bank",
      type: "node",
      t: [
        {
          t: "Krungthai Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TH"],
        industry: "522110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2104.457505972853,
      y: -2038.0460199235658,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Centrelink",
      type: "node",
      t: [
        {
          t: "Centrelink",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "813319",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2815.8189382209375,
      y: -598.1077136301155,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bon Secours Regional Medical Center",
      type: "node",
      t: [
        {
          t: "Bon Secours Regional Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 432.2908189190821,
      y: -2757.2623449924754,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Windstream Communications",
      type: "node",
      t: [
        {
          t: "Windstream Communications",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "517911",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3955.927016664269,
      y: -1489.6807601466426,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Chinese Government (unknown)",
      type: "node",
      t: [
        {
          t: "Chinese Government (unknown)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CN"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2795.767779252861,
      y: 678.7003960334118,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "UK Royal Air Force",
      type: "node",
      t: [
        {
          t: "UK Royal Air Force",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "92",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 481.9284210931737,
      y: -3147.572396530121,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Washington Inventory Company",
      type: "node",
      t: [
        {
          t: "Washington Inventory Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2693.1308334425676,
      y: -661.5947257969801,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Rocky Mountain Spine Clinic",
      type: "node",
      t: [
        {
          t: "Rocky Mountain Spine Clinic",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621112",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1782.663521097964,
      y: -4076.4652621657174,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Los Angeles County Department of Public Social Services",
      type: "node",
      t: [
        {
          t: "Los Angeles County Department of Public Social Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "9211",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -302.50987435374327,
      y: -1981.7129140542147,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National Oceanic and Atmospheric Administration",
      type: "node",
      t: [
        {
          t: "National Oceanic and Atmospheric Administration",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "926110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1144.3472571874267,
      y: -794.8479934783163,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sylvan Learning Center",
      type: "node",
      t: [
        {
          t: "Sylvan Learning Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611699",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2.2732302523600083,
      y: -3275.237800144369,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Christian Teen Forums",
      type: "node",
      t: [
        {
          t: "Christian Teen Forums",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BZ"],
        industry: "51913",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1946.7766277439787,
      y: -2401.759916786989,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Wayne County Department of Personnel/Human Resources",
      type: "node",
      t: [
        {
          t: "Wayne County Department of Personnel/Human Resources",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "923",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2765.799977961002,
      y: -798.0637851439778,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jaya TV",
      type: "node",
      t: [
        {
          t: "Jaya TV",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "515120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1106.3830020982077,
      y: 2320.5902754244453,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PARK HILL SCHOOL DISTRICT",
      type: "node",
      t: [
        {
          t: "PARK HILL SCHOOL DISTRICT",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3877.502875453353,
      y: -1804.0948144778627,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "U.S. Sentencing Commission",
      type: "node",
      t: [
        {
          t: "U.S. Sentencing Commission",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922190",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 912.9113707222205,
      y: 2369.361163871752,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hotel Hippo",
      type: "node",
      t: [
        {
          t: "Hotel Hippo",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "561510",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -982.9032431189589,
      y: -1127.0565769558666,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Petro Stopping Center",
      type: "node",
      t: [
        {
          t: "Petro Stopping Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "447110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2034.0096407566352,
      y: -3928.1793054396035,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Department of the Air Force",
      type: "node",
      t: [
        {
          t: "US Department of the Air Force",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "928110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1191.8493559264912,
      y: 2239.2974517983566,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Office of Dr. Sandra Bujanda-Wagner",
      type: "node",
      t: [
        {
          t: "Office of Dr. Sandra Bujanda-Wagner",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 223.21698376963104,
      y: -3547.851522425457,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Woodrow Wilson National Fellowship Foundation",
      type: "node",
      t: [
        {
          t: "Woodrow Wilson National Fellowship Foundation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "6117",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1835.7687414255765,
      y: -280.8911488101526,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Philippine Navy",
      type: "node",
      t: [
        {
          t: "Philippine Navy",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PH"],
        industry: "928110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1237.1288833742847,
      y: 1513.7454367429664,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "App Developer Magazine",
      type: "node",
      t: [
        {
          t: "App Developer Magazine",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1454.4519106307298,
      y: 1671.3389002749655,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "ShareThis, Inc.",
      type: "node",
      t: [
        {
          t: "ShareThis, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 472.9994586970424,
      y: 2355.2454742761292,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Goldman Sachs Group, Inc.",
      type: "node",
      t: [
        {
          t: "Goldman Sachs Group, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "523110",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1614.1648775298331,
      y: -119.64888128019197,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Moseslaketalk.com",
      type: "node",
      t: [
        {
          t: "Moseslaketalk.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "51913",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2908.0968666405233,
      y: -1359.4226830037069,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bank of Montreal",
      type: "node",
      t: [
        {
          t: "Bank of Montreal",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "522110",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1899.5663545781636,
      y: -2534.9573001043104,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Wayland Public Schools",
      type: "node",
      t: [
        {
          t: "City of Wayland Public Schools",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1873.3727139066268,
      y: -4057.0488166700397,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Kaiser Permanente Medical Care Program",
      type: "node",
      t: [
        {
          t: "Kaiser Permanente Medical Care Program",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1084.7203696278284,
      y: -798.1585939531838,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Aflac Inc",
      type: "node",
      t: [
        {
          t: "Aflac Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 34.27889800967296,
      y: -3602.232713242142,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Netlima",
      type: "node",
      t: [
        {
          t: "Netlima",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PE"],
        industry: "511",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 387.4633007589398,
      y: 2288.924831322348,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Auditor",
      type: "node",
      t: [
        {
          t: "Auditor",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: true,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 1.6931471805599454,
      donut: {
        v: [0, 0, 0, 0, 0, 0, 0, 1],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: -37.28621022002244,
      y: -4080.4307939258088,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Reyes Beverage Group",
      type: "node",
      t: [
        {
          t: "Reyes Beverage Group",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "424410",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -26.020545117172333,
      y: -3808.328480310023,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "SodaHead.com",
      type: "node",
      t: [
        {
          t: "SodaHead.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1708.453628102216,
      y: -2251.609105392686,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Wedgewood Legacy Medical",
      type: "node",
      t: [
        {
          t: "Wedgewood Legacy Medical",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621112",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2968.0424676635002,
      y: -1559.4336208397553,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "East San Gabriel Valley Regional Occupational Program",
      type: "node",
      t: [
        {
          t: "East San Gabriel Valley Regional Occupational Program",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 466.2150379863881,
      y: -3458.208182802086,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Integral Development Company",
      type: "node",
      t: [
        {
          t: "Integral Development Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511210",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2977.057761106237,
      y: -1618.3224346369898,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "International Atomic Energy Agency",
      type: "node",
      t: [
        {
          t: "International Atomic Energy Agency",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AT"],
        industry: "926130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 786.3089685174086,
      y: 2229.1158201562284,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Plateau",
      type: "node",
      t: [
        {
          t: "Plateau",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "517210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 639.313387090699,
      y: 1930.7906476931257,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Eramet Comilog Manganese",
      type: "node",
      t: [
        {
          t: "Eramet Comilog Manganese",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["FR"],
        industry: "551112",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1395.499534455782,
      y: 1416.754059457522,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Federal Government of Brazil",
      type: "node",
      t: [
        {
          t: "Federal Government of Brazil",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BR"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1349.0696253103342,
      y: 2279.138819948146,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Opening Ceremony Online LLC",
      type: "node",
      t: [
        {
          t: "Opening Ceremony Online LLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "448150",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1968.3098810283827,
      y: -2190.886950750285,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "East Kent Hospital Trust",
      type: "node",
      t: [
        {
          t: "East Kent Hospital Trust",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "622110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -195.8769626179046,
      y: -3280.494808323057,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Yahoo! Inc.",
      type: "node",
      t: [
        {
          t: "Yahoo! Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3587.145181559197,
      y: 33.86281213461734,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "IN Punjab Public Works",
      type: "node",
      t: [
        {
          t: "IN Punjab Public Works",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "221122",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 842.3284540971631,
      y: 2249.3996790296496,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Equinox",
      type: "node",
      t: [
        {
          t: "Equinox",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "713940",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -807.3018628062653,
      y: -1951.0608718428966,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Adventist Health System/Florida Hospital Celebration",
      type: "node",
      t: [
        {
          t: "Adventist Health System/Florida Hospital Celebration",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 317.1548690285315,
      y: -3618.1602554319525,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Rothamsted Research",
      type: "node",
      t: [
        {
          t: "Rothamsted Research",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "541712",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2031.3740878880562,
      y: -1888.9113674813693,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "IE Road Safety Authority",
      type: "node",
      t: [
        {
          t: "IE Road Safety Authority",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IE"],
        industry: "922190",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 978.6174523457357,
      y: -682.9444657347176,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Los Alamos National Laboratory",
      type: "node",
      t: [
        {
          t: "Los Alamos National Laboratory",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541380",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 397.90014400150403,
      y: -2708.598088820086,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "FOX News Network, LLC",
      type: "node",
      t: [
        {
          t: "FOX News Network, LLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "515210",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1718.7615593847213,
      y: -120.07151996359607,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Albany International Airport",
      type: "node",
      t: [
        {
          t: "Albany International Airport",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "481",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1619.9375403416652,
      y: -2437.582144950456,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ephrata Community Hospital",
      type: "node",
      t: [
        {
          t: "Ephrata Community Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -94.82612584602703,
      y: -3531.354463607792,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Big Brothers, Big Sisters",
      type: "node",
      t: [
        {
          t: "Big Brothers, Big Sisters",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813319",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -491.57199104758683,
      y: -688.7733981641618,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tom Sawyer Software",
      type: "node",
      t: [
        {
          t: "Tom Sawyer Software",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "423430",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2157.986225578663,
      y: -2399.8210678372893,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Phoenix Cardiac Surgery Group",
      type: "node",
      t: [
        {
          t: "Phoenix Cardiac Surgery Group",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -627.3301278149911,
      y: -497.73308301702536,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Florida Hospital Tampa/University Community Hospital",
      type: "node",
      t: [
        {
          t: "Florida Hospital Tampa/University Community Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 57.14277884773537,
      y: -3454.823066983275,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "CSS Corp",
      type: "node",
      t: [
        {
          t: "CSS Corp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "5416",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 321.834410174833,
      y: 2085.734831559452,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "KTSU Texas Southern University",
      type: "node",
      t: [
        {
          t: "KTSU Texas Southern University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 587.0123132561498,
      y: -3200.9557686538933,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alliance Workplace Solutions",
      type: "node",
      t: [
        {
          t: "Alliance Workplace Solutions",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524210",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -429.38588230359255,
      y: -685.4393993111594,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "East Baton Rouge Acceleration Academy",
      type: "node",
      t: [
        {
          t: "East Baton Rouge Acceleration Academy",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "6111",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1149.6228113607513,
      y: -698.9923823967588,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Prudential Financial Inc",
      type: "node",
      t: [
        {
          t: "Prudential Financial Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 569.0369778821896,
      y: -1915.6835474515356,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "RaceWay Gas",
      type: "node",
      t: [
        {
          t: "RaceWay Gas",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "447190",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2489.532027289256,
      y: -1720.2667053441292,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Abeo Management Corporation",
      type: "node",
      t: [
        {
          t: "Abeo Management Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -64.558967006079,
      y: -3280.6234543445803,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Israeli Airforce",
      type: "node",
      t: [
        {
          t: "Israeli Airforce",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "928",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1611.3076585757835,
      y: 1535.660991228242,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Massachusetts Bay Transportation Authority",
      type: "node",
      t: [
        {
          t: "Massachusetts Bay Transportation Authority",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "485111",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1509.0506268842928,
      y: -1632.8888569004307,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Riot Games, Inc.",
      type: "node",
      t: [
        {
          t: "Riot Games, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511210",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1754.5212178188785,
      y: -2360.833827045665,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "McDonald's Corp",
      type: "node",
      t: [
        {
          t: "McDonald's Corp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 637.3656915049196,
      y: -1904.1426606734099,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Montana State University",
      type: "node",
      t: [
        {
          t: "Montana State University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2028.113937565614,
      y: -542.184373503228,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Exxon Mobil Corporation",
      type: "node",
      t: [
        {
          t: "Exxon Mobil Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "324110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 325.4197530546039,
      y: -3311.8189243234733,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "BZ Brazil Air Force",
      type: "node",
      t: [
        {
          t: "BZ Brazil Air Force",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BZ"],
        industry: "9281",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1506.944087718361,
      y: 1564.2676156970374,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "E. I. du Pont de Nemours and Company",
      type: "node",
      t: [
        {
          t: "E. I. du Pont de Nemours and Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "325320",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3115.8911253937804,
      y: -1118.6211614792219,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Rajasthan Government",
      type: "node",
      t: [
        {
          t: "Rajasthan Government",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1420.3923911449606,
      y: 2220.604351738446,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "General Motors Co",
      type: "node",
      t: [
        {
          t: "General Motors Co",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "336111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -800.5442403089792,
      y: -467.35311968790074,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Urban League of Columbus, OH",
      type: "node",
      t: [
        {
          t: "Urban League of Columbus, OH",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813319",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2884.086263261239,
      y: -1688.8907820092404,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Haneda Airport",
      type: "node",
      t: [
        {
          t: "Haneda Airport",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["JP"],
        industry: "488119",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 593.6086345748126,
      y: -3137.214147359676,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Institutional Shareholder Services",
      type: "node",
      t: [
        {
          t: "Institutional Shareholder Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541611",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 216.21572089194387,
      y: -3479.0593602777876,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "TooJay",
      type: "node",
      t: [
        {
          t: "TooJay",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -731.7417044434998,
      y: -2116.2860143357757,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "KCG Holdings Inc",
      type: "node",
      t: [
        {
          t: "KCG Holdings Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2955.106065008499,
      y: -1322.5569014385655,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Chase Bank",
      type: "node",
      t: [
        {
          t: "Chase Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 287.1912431597159,
      y: -1879.0154776606541,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "St. Joseph Health",
      type: "node",
      t: [
        {
          t: "St. Joseph Health",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 530.4697975258728,
      y: -3363.795576324965,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Mass Event",
      type: "node",
      t: [
        {
          t: "Mass Event",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1203.6052233835926,
      y: 1912.258149559947,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "DSW SHOE WAREHOUSE, INC",
      type: "node",
      t: [
        {
          t: "DSW SHOE WAREHOUSE, INC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "448210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2391.5126109262887,
      y: -1624.4007457900443,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "The Central Bank of Kenya",
      type: "node",
      t: [
        {
          t: "The Central Bank of Kenya",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KE"],
        industry: "522",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 567.8204110285915,
      y: 2245.1535470813506,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Stanford University",
      type: "node",
      t: [
        {
          t: "Stanford University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 942.5643585890539,
      y: 2053.2145929413537,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Massachusetts Mutual Life Insurance Company",
      type: "node",
      t: [
        {
          t: "Massachusetts Mutual Life Insurance Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524113",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2887.09358296938,
      y: -281.7357101582147,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Preventine Life Care Pvt Ltd",
      type: "node",
      t: [
        {
          t: "Preventine Life Care Pvt Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "621511",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 232.4777395188412,
      y: -2558.6950012393067,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Biogenesis of America",
      type: "node",
      t: [
        {
          t: "Biogenesis of America",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4066.4966911469037,
      y: -1630.5253226607738,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Texas Auto Center Dealership",
      type: "node",
      t: [
        {
          t: "Texas Auto Center Dealership",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "441120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1220.3572022246717,
      y: -1016.2919949982256,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Children's Healthcare of Atlanta",
      type: "node",
      t: [
        {
          t: "Children's Healthcare of Atlanta",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1016.642246092305,
      y: -689.4582309725843,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Manpower Corporation",
      type: "node",
      t: [
        {
          t: "Manpower Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "561320",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1161.485576145457,
      y: 1769.010759374164,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Rotech Healthcare Inc",
      type: "node",
      t: [
        {
          t: "Rotech Healthcare Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "532291",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 192.6966878182775,
      y: -3315.107820620597,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Fairfax County Public Schools",
      type: "node",
      t: [
        {
          t: "Fairfax County Public Schools",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 445.0789237141739,
      y: -2991.9836935961016,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Call center",
      type: "node",
      t: [
        {
          t: "Call center staff",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: true,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 3.302585092994046,
      donut: {
        v: [1, 5, 0, 0, 0, 0, 1, 2],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: 2794.9101544461973,
      y: -3046.260278725307,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alabama Social Security Administration",
      type: "node",
      t: [
        {
          t: "Alabama Social Security Administration",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92611",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3007.078993032267,
      y: -3166.1827063431138,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Three Oaks High School",
      type: "node",
      t: [
        {
          t: "Three Oaks High School",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "611110",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1272.4810871433228,
      y: -842.6231719611296,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Thunder Burger and Bar",
      type: "node",
      t: [
        {
          t: "Thunder Burger and Bar",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722511",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -426.81329655336435,
      y: -1711.5135759961468,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "ECS Tuning",
      type: "node",
      t: [
        {
          t: "ECS Tuning",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "441310",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1896.6083748582205,
      y: -2354.2233320525975,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United States Federal Reserve",
      type: "node",
      t: [
        {
          t: "United States Federal Reserve",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "521110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 92.57225371926052,
      y: 1713.8349660887052,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Curledge Street Academy",
      type: "node",
      t: [
        {
          t: "Curledge Street Academy",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "611110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 499.7725966807966,
      y: -2963.3447651386564,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Kaiser Permante Bellflower Medical Center",
      type: "node",
      t: [
        {
          t: "Kaiser Permante Bellflower Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -447.0837751312665,
      y: -742.3628551775919,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Korn/Ferry International",
      type: "node",
      t: [
        {
          t: "Korn/Ferry International",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "561312",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4110.548627556498,
      y: -1670.710639658651,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Saudi Binladen Group",
      type: "node",
      t: [
        {
          t: "Saudi Binladen Group",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "236220",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1074.6017948313856,
      y: 1870.7793418496867,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Smartphone Experts",
      type: "node",
      t: [
        {
          t: "Smartphone Experts",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "454111",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1710.8086096417196,
      y: -2549.291584295496,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Belfast City Council",
      type: "node",
      t: [
        {
          t: "Belfast City Council",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IE"],
        industry: "921",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 852.692454324253,
      y: -2447.7305132995793,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jos A Bank Clothiers Inc",
      type: "node",
      t: [
        {
          t: "Jos A Bank Clothiers Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -794.3936017776546,
      y: -2117.113353180268,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bach Khoa Internetwork Security Company",
      type: "node",
      t: [
        {
          t: "Bach Khoa Internetwork Security Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["VN"],
        industry: "517919",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1790.39947565512,
      y: -2224.538425540823,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Premier Tax",
      type: "node",
      t: [
        {
          t: "Premier Tax",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541219",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2782.2105617901216,
      y: -316.21560735212097,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Lohud.com",
      type: "node",
      t: [
        {
          t: "Lohud.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1633.847825472756,
      y: -239.8169757535493,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jackson Health System",
      type: "node",
      t: [
        {
          t: "Jackson Health System",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621999",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -139.53745563309712,
      y: -2548.5813273734916,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Yemen Ministry of Human Rights",
      type: "node",
      t: [
        {
          t: "Yemen Ministry of Human Rights",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["YE"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1466.6483543161107,
      y: 1300.5636343099868,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Kochi Metro Rail Corporation",
      type: "node",
      t: [
        {
          t: "Kochi Metro Rail Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "485112",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1172.3267955706024,
      y: 1174.5038766091802,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Providence Physician Services Company",
      type: "node",
      t: [
        {
          t: "Providence Physician Services Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621111",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -392.60721636684593,
      y: -3369.8440493467565,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "NetCologne",
      type: "node",
      t: [
        {
          t: "NetCologne",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["DE"],
        industry: "517110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1102.849940276125,
      y: 1280.7264702476987,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Monroeville 911 dispatch center",
      type: "node",
      t: [
        {
          t: "Monroeville 911 dispatch center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 239.79052565771008,
      y: -3424.282632642063,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "zssf.gov.cn",
      type: "node",
      t: [
        {
          t: "zssf.gov.cn",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CN"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1406.9478262598905,
      y: 1300.706311118569,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Belgacom SA",
      type: "node",
      t: [
        {
          t: "Belgacom SA",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BE"],
        industry: "517110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2691.0847376133815,
      y: 711.3118570268284,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Total Systems Heating and Cooling Inc",
      type: "node",
      t: [
        {
          t: "Total Systems Heating and Cooling Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "238220",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2194.161125826008,
      y: -1477.102031326358,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Citizens Bancorp/PA",
      type: "node",
      t: [
        {
          t: "Citizens Bancorp/PA",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 611.8818794938675,
      y: -1958.0835632241697,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Department of Defense",
      type: "node",
      t: [
        {
          t: "Department of Defense",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1881.5891391551268,
      y: -4229.1276074166835,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Commercial Bank of Ethiopia",
      type: "node",
      t: [
        {
          t: "Commercial Bank of Ethiopia",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["ET"],
        industry: "5222",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1233.6891133807203,
      y: 1204.8346723283848,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Checkers",
      type: "node",
      t: [
        {
          t: "Checkers",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722513",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2748.870907061838,
      y: -509.3747806118208,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Victoria",
      type: "node",
      t: [
        {
          t: "City of Victoria",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "92",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2436.239337457831,
      y: -1879.1779922835485,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Office of Ronald Ferguson, Jr, DPM",
      type: "node",
      t: [
        {
          t: "Office of Ronald Ferguson, Jr, DPM",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621391",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2857.030138748908,
      y: -1514.635228395367,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Syrian Investment Agency",
      type: "node",
      t: [
        {
          t: "Syrian Investment Agency",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SY"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 773.9734426571122,
      y: 2402.150357787872,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "github.com",
      type: "node",
      t: [
        {
          t: "github.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2817.561635834443,
      y: 571.0657330497118,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "YTN",
      type: "node",
      t: [
        {
          t: "YTN",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KR"],
        industry: "515120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3614.4603669124026,
      y: 209.14855534277103,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "The Home Depot",
      type: "node",
      t: [
        {
          t: "The Home Depot",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "444110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1685.0236868941852,
      y: -1383.1282625021195,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Baltimore Police Department",
      type: "node",
      t: [
        {
          t: "Baltimore Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -750.4087981383163,
      y: -1252.2910593289862,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "American Superconductor Corporation",
      type: "node",
      t: [
        {
          t: "American Superconductor Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "335311",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3151.9121394884532,
      y: -1166.1052661858134,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Rajasthan Information and Public Relations Department",
      type: "node",
      t: [
        {
          t: "Rajasthan Information and Public Relations Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 980.4261546354855,
      y: 1995.3073272689908,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Banco do Brasil SA",
      type: "node",
      t: [
        {
          t: "Banco do Brasil SA",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 912.5049764291257,
      y: -592.3390703106334,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Israeli Government",
      type: "node",
      t: [
        {
          t: "Israeli Government",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "9211",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1137.862517092769,
      y: 2214.2569181635226,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "DiarioBasta.com",
      type: "node",
      t: [
        {
          t: "DiarioBasta.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["MX"],
        industry: "51913",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1452.4221352282136,
      y: -1672.5059791843255,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Undead Labs",
      type: "node",
      t: [
        {
          t: "Undead Labs",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 429.9716542612741,
      y: 1653.862258004623,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bank Sarasin",
      type: "node",
      t: [
        {
          t: "Bank Sarasin",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CH"],
        industry: "522110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1696.1182854581705,
      y: -383.0060520418492,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Butera's Restaurant",
      type: "node",
      t: [
        {
          t: "Butera's Restaurant",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "72251",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -828.3468643431768,
      y: -2166.295029068171,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Berrien County Sheriff's Department",
      type: "node",
      t: [
        {
          t: "Berrien County Sheriff's Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 786.3170793998829,
      y: 1101.951454555926,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cheyney University",
      type: "node",
      t: [
        {
          t: "Cheyney University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1046.9983419057216,
      y: -881.4544521713842,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: '"a college in Songjiang District"',
      type: "node",
      t: [
        {
          t: '"a college in Songjiang District"',
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CN"],
        industry: "611310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1999.649796184487,
      y: -2114.628464096486,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Minnesota National Guard",
      type: "node",
      t: [
        {
          t: "Minnesota National Guard",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "928110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1117.2457593749077,
      y: -994.5102255085999,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Spellman High Voltage Electronics Corporation",
      type: "node",
      t: [
        {
          t: "Spellman High Voltage Electronics Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "335311",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -42.40437726408027,
      y: -3502.946718814797,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Schneck Medical Center",
      type: "node",
      t: [
        {
          t: "Schneck Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621111",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 475.1334997279473,
      y: -3341.50835295573,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Drago's Seafood Restaurant",
      type: "node",
      t: [
        {
          t: "Drago's Seafood Restaurant",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722511",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -765.5471521267428,
      y: -2064.9414668434456,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "IN Rajasthan Government",
      type: "node",
      t: [
        {
          t: "IN Rajasthan Government",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2175.015402530974,
      y: -2135.3735917715094,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Gabonese Republic Office of the President",
      type: "node",
      t: [
        {
          t: "Gabonese Republic Office of the President",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GA"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1192.353026269102,
      y: 1981.0210990336263,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Grant Income Tax Bookkeeping and Check Cash",
      type: "node",
      t: [
        {
          t: "Grant Income Tax Bookkeeping and Check Cash",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "5412",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2888.6029776096457,
      y: -456.70215284358164,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "TurkTrust",
      type: "node",
      t: [
        {
          t: "TurkTrust",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TR"],
        industry: "51919",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1565.99262232176,
      y: 25.670443640363374,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ace Homecare LLC",
      type: "node",
      t: [
        {
          t: "Ace Homecare LLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621610",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1905.623575743928,
      y: -2198.759527172552,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sky Network Television Ltd",
      type: "node",
      t: [
        {
          t: "Sky Network Television Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "515120",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1325.4991996206172,
      y: 1897.9589447410262,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Lawrence Melrose Medical Electronic Record",
      type: "node",
      t: [
        {
          t: "Lawrence Melrose Medical Electronic Record",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3895.128661988135,
      y: -1687.882342896878,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Verizon Communications Inc",
      type: "node",
      t: [
        {
          t: "Verizon Communications Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "51721",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -966.4522402354996,
      y: -1910.1333729669236,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "E-Sports Entertainment Association",
      type: "node",
      t: [
        {
          t: "E-Sports Entertainment Association",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1019.7194684298461,
      y: -867.9491296195988,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Loyola University Medical Center",
      type: "node",
      t: [
        {
          t: "Loyola University Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -306.73221162645495,
      y: -3512.6552955824322,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Commonwealth Scientific and Industrial Research Organisation (CSIRO)",
      type: "node",
      t: [
        {
          t: "Commonwealth Scientific and Industrial Research Organisation (CSIRO)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "541712",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -399.32434192145365,
      y: -778.0345402935659,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Florida Digestive Health Specialists, LLP",
      type: "node",
      t: [
        {
          t: "Florida Digestive Health Specialists, LLP",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "62111",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 418.44781324679707,
      y: -3361.028611117456,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "IN Board of Higher Secondary Education Delhi, India",
      type: "node",
      t: [
        {
          t: "IN Board of Higher Secondary Education Delhi, India",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "923110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 96.08519850642983,
      y: 1584.6473300731495,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Wichita, KS",
      type: "node",
      t: [
        {
          t: "City of Wichita, KS",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1100.7101548869632,
      y: 2012.9419533844348,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hindustan Times",
      type: "node",
      t: [
        {
          t: "Hindustan Times",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "511110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1420.980154436059,
      y: 1589.49507622066,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Nippon Express",
      type: "node",
      t: [
        {
          t: "Nippon Express",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "488510",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -425.7500120059585,
      y: -1033.797954917517,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "AR Argentina Military",
      type: "node",
      t: [
        {
          t: "AR Argentina Military",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AR"],
        industry: "928110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1567.4069273870064,
      y: 1721.229675708787,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tax Administration Jamaica",
      type: "node",
      t: [
        {
          t: "Tax Administration Jamaica",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["JM"],
        industry: "9211",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1756.9836929468663,
      y: -288.8584468473514,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "IN State Bank of Patiala",
      type: "node",
      t: [
        {
          t: "IN State Bank of Patiala",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "522110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 459.4986972960962,
      y: 1846.2496631838985,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National Security Service of the Republic of Armenia",
      type: "node",
      t: [
        {
          t: "National Security Service of the Republic of Armenia",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AM"],
        industry: "928110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 250.68003642798953,
      y: 1576.7427107359617,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Nielsen Audio",
      type: "node",
      t: [
        {
          t: "Nielsen Audio",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541910",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2789.6360333177654,
      y: -743.28598370709,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "SeaWorld Entertainment Inc",
      type: "node",
      t: [
        {
          t: "SeaWorld Entertainment Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "713110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3948.101405813859,
      y: -1660.6676532601314,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Thunder Bay Regional Health Sciences Centre",
      type: "node",
      t: [
        {
          t: "Thunder Bay Regional Health Sciences Centre",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -63.81659078696043,
      y: -3665.463261964658,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Symbius Medical",
      type: "node",
      t: [
        {
          t: "Symbius Medical",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621999",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -809.589341853909,
      y: -526.3056962556325,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "AdNet Telecom",
      type: "node",
      t: [
        {
          t: "AdNet Telecom",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["RO"],
        industry: "518210",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1461.8929014492846,
      y: -2363.5789426188094,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "King Drug & Home Care",
      type: "node",
      t: [
        {
          t: "King Drug & Home Care",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "446110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 535.9441414461378,
      y: -3122.0750642840108,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Quest Diagnostics",
      type: "node",
      t: [
        {
          t: "Quest Diagnostics",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "62151",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -422.83340507562616,
      y: -3504.7294194696983,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Korea Credit Bureau",
      type: "node",
      t: [
        {
          t: "Korea Credit Bureau",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KR"],
        industry: "561450",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -569.2595325198272,
      y: -3207.682946643185,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Purdue University",
      type: "node",
      t: [
        {
          t: "Purdue University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2121.179679562232,
      y: -2286.5234183270795,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Virgin Atlantic Airways",
      type: "node",
      t: [
        {
          t: "Virgin Atlantic Airways",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "481111",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -65.28459682284142,
      y: -3583.113145707939,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Electronic Payments Inc.",
      type: "node",
      t: [
        {
          t: "Electronic Payments Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522320",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2280.7117900480334,
      y: -2050.306838049808,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Benjamin F. Edwards Co.",
      type: "node",
      t: [
        {
          t: "Benjamin F. Edwards Co.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "523120",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2297.126825008976,
      y: -1551.8723423760703,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Minneapolis City Hall",
      type: "node",
      t: [
        {
          t: "Minneapolis City Hall",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92114",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 568.367239147924,
      y: -2994.644219623076,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Inputs.io",
      type: "node",
      t: [
        {
          t: "Inputs.io",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "511210",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2154.7533703757954,
      y: -1987.416655052839,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Iron Mountain Inc",
      type: "node",
      t: [
        {
          t: "Iron Mountain Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AR"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1101.8210353341346,
      y: -1052.0555402828768,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Citibank",
      type: "node",
      t: [
        {
          t: "Citibank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1029.2400814847847,
      y: -819.7131724164183,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Police Service of Northern Ireland",
      type: "node",
      t: [
        {
          t: "Police Service of Northern Ireland",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IE"],
        industry: "922120",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4458.7255886901685,
      y: -1203.632579934314,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Federal Reserve Bank",
      type: "node",
      t: [
        {
          t: "Federal Reserve Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "521110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1754.0252504245282,
      y: 460.34762097184466,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Los Angeles Times",
      type: "node",
      t: [
        {
          t: "Los Angeles Times",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -985.0346163921731,
      y: -562.9989299834078,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "linkinpark.co.il",
      type: "node",
      t: [
        {
          t: "linkinpark.co.il",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 211.28176960316932,
      y: 2082.5272833456656,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Abu Dhabi International Montessori Nursery",
      type: "node",
      t: [
        {
          t: "Abu Dhabi International Montessori Nursery",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AE"],
        industry: "624410",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2234.8936474216403,
      y: -1987.440626399719,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bit9, Inc.",
      type: "node",
      t: [
        {
          t: "Bit9, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541511",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3548.11884068349,
      y: 397.51507952595875,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Just10time.com (Big Rock Enterprises Incorporated)",
      type: "node",
      t: [
        {
          t: "Just10time.com (Big Rock Enterprises Incorporated)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "51",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1454.6132353268495,
      y: -2302.884868693514,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "America OnLine (AOL)",
      type: "node",
      t: [
        {
          t: "America OnLine (AOL)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -557.593994452351,
      y: -1756.4193998545693,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Auto-Dress.ru",
      type: "node",
      t: [
        {
          t: "Auto-Dress.ru",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["RU"],
        industry: "454",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 882.4281762456694,
      y: 963.5896500001763,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Northwestern Memorial Hospital",
      type: "node",
      t: [
        {
          t: "Northwestern Memorial Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 19.55618549076553,
      y: -3666.9620393243563,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Devil's Cafe",
      type: "node",
      t: [
        {
          t: "Devil's Cafe",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "51913",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1884.986755447586,
      y: -1762.2464953964632,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Pret A",
      type: "node",
      t: [
        {
          t: "Pret A",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722511",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -860.4771369761402,
      y: -1226.1627954598248,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "International Police Association - International Administration Center",
      type: "node",
      t: [
        {
          t: "International Police Association - International Administration Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "813990",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 765.9199771028534,
      y: 1990.1396839867866,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hylant Group",
      type: "node",
      t: [
        {
          t: "Hylant Group",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524210",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -284.9766597908315,
      y: -3588.181719013317,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "7-ELEVEN, INC.",
      type: "node",
      t: [
        {
          t: "7-ELEVEN, INC.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "445120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 554.6844352538847,
      y: -1455.1071982959702,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "NATO",
      type: "node",
      t: [
        {
          t: "NATO",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BE"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1033.6778222371095,
      y: 1041.2015925413052,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Palm Garden Nursing Home",
      type: "node",
      t: [
        {
          t: "Palm Garden Nursing Home",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "623110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 546.5863120110143,
      y: -3054.772937487465,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Government of Pakistan",
      type: "node",
      t: [
        {
          t: "Government of Pakistan",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PK"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1115.2399624760978,
      y: 2379.510097039539,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cook Islands Investment Corporation",
      type: "node",
      t: [
        {
          t: "Cook Islands Investment Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CK"],
        industry: "921110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2047.2707628570197,
      y: -1765.6888751658425,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Social Affairs Ministry",
      type: "node",
      t: [
        {
          t: "Social Affairs Ministry",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "921190",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 814.6020576616238,
      y: -592.7180246635539,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Polk County School District",
      type: "node",
      t: [
        {
          t: "Polk County School District",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "6111",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -543.2699745335303,
      y: -3379.2683695925875,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "SY Ministry of Electricity",
      type: "node",
      t: [
        {
          t: "SY Ministry of Electricity",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SY"],
        industry: "221122",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 364.4450008065819,
      y: 1609.0194270297725,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Syria Customs Office",
      type: "node",
      t: [
        {
          t: "Syria Customs Office",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SY"],
        industry: "921130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1494.6534760197792,
      y: 1923.5696754033215,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Charlie Norwood VA Medical Center",
      type: "node",
      t: [
        {
          t: "Charlie Norwood VA Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "923140",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1856.8223859340505,
      y: -2248.2671165081683,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Basecamp",
      type: "node",
      t: [
        {
          t: "Basecamp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511210",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2282.7032199243945,
      y: -1673.3424834547004,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Salt Lake Police Department",
      type: "node",
      t: [
        {
          t: "Salt Lake Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1387.674988429363,
      y: 2138.5919328041027,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jackson South Community Hospital",
      type: "node",
      t: [
        {
          t: "Jackson South Community Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 433.67201317186345,
      y: -2921.4920567306312,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Flight Centre Ltd",
      type: "node",
      t: [
        {
          t: "Flight Centre Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -412.7144716104335,
      y: -2687.260436582375,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Russia Today",
      type: "node",
      t: [
        {
          t: "Russia Today",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["RU"],
        industry: "81",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 499.1574880325488,
      y: 1898.7758474324955,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Niagara College Of Applied Arts & Technology",
      type: "node",
      t: [
        {
          t: "Niagara College Of Applied Arts & Technology",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "611210",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -914.1362821766661,
      y: -468.45329313314505,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Mahanagar Telephone Nigam Limited",
      type: "node",
      t: [
        {
          t: "Mahanagar Telephone Nigam Limited",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "5171",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1243.190260827564,
      y: 2269.6719255976323,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Florida",
      type: "node",
      t: [
        {
          t: "University of Florida",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621112",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 277.20121474280904,
      y: -3522.722650526853,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National Democratic Party (NPD)",
      type: "node",
      t: [
        {
          t: "National Democratic Party (NPD)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["DE"],
        industry: "813940",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 445.6564985401051,
      y: 2302.1944835226923,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Columbia University",
      type: "node",
      t: [
        {
          t: "Columbia University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 755.4506899103244,
      y: -601.0996232333428,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Fairfax",
      type: "node",
      t: [
        {
          t: "Fairfax",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "518",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1131.8529554314787,
      y: 1223.8519986981228,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "colmic.tv",
      type: "node",
      t: [
        {
          t: "colmic.tv",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IT"],
        industry: "51913",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1574.600796170249,
      y: -2251.04344419629,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "McDonald's Franchise",
      type: "node",
      t: [
        {
          t: "McDonald's Franchise",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722513",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2869.0485643569964,
      y: -1456.2213282817015,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "London Underground",
      type: "node",
      t: [
        {
          t: "London Underground",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "485112",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2178.93400395262,
      y: -1536.6387966772536,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "GCHQ",
      type: "node",
      t: [
        {
          t: "GCHQ",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 810.9587173887671,
      y: 374.218576517992,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Korean Broadcasting System",
      type: "node",
      t: [
        {
          t: "Korean Broadcasting System",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KR"],
        industry: "515120",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3578.5466807018056,
      y: 94.62295632146652,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Baseball Canada",
      type: "node",
      t: [
        {
          t: "Baseball Canada",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "813990",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1015.1907208057601,
      y: 1923.9075584209031,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Spamhaus",
      type: "node",
      t: [
        {
          t: "Spamhaus",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2507.3302756902635,
      y: -2002.5360339436766,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PL Poland Ministry of Economy",
      type: "node",
      t: [
        {
          t: "PL Poland Ministry of Economy",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PL"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1192.6326607652031,
      y: 1111.1634013313642,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Higher Commission for Scientific Research",
      type: "node",
      t: [
        {
          t: "Higher Commission for Scientific Research",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SY"],
        industry: "541712",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 126.28171906932903,
      y: 1486.9803039409098,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United States Post Office",
      type: "node",
      t: [
        {
          t: "United States Post Office",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "491110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -449.1391078370325,
      y: -3451.347427462549,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Telecom Test Australia",
      type: "node",
      t: [
        {
          t: "Telecom Test Australia",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 329.9640078136101,
      y: 1403.0139751224224,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "CenterPoint Energy, Inc",
      type: "node",
      t: [
        {
          t: "CenterPoint Energy, Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "221210",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 496.04948666386554,
      y: -3022.934005923785,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Texas Durable Medical Company",
      type: "node",
      t: [
        {
          t: "Texas Durable Medical Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "423450",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2843.5386749451727,
      y: -1278.5644591734185,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jpost",
      type: "node",
      t: [
        {
          t: "Jpost",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1216.2533117761727,
      y: 1450.9741997889514,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "BD Prime Ministers Office",
      type: "node",
      t: [
        {
          t: "BD Prime Ministers Office",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BD"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 444.772589292392,
      y: 1334.3404157886953,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "GB Ministry of Justice",
      type: "node",
      t: [
        {
          t: "GB Ministry of Justice",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "922190",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -232.0012130538953,
      y: -3419.4969460764682,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PhysioMedicor",
      type: "node",
      t: [
        {
          t: "PhysioMedicor",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["DE"],
        industry: "621340",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2218.142561794482,
      y: -1831.2429834363884,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "New York Metropolitan Transportation Authority",
      type: "node",
      t: [
        {
          t: "New York Metropolitan Transportation Authority",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "485111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2530.853847510636,
      y: -1874.5667011270616,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Department of Agriculture",
      type: "node",
      t: [
        {
          t: "US Department of Agriculture",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92614",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1125.6789056459293,
      y: 1472.6069908152049,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "CareFirst",
      type: "node",
      t: [
        {
          t: "CareFirst",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524114",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -443.21568459703394,
      y: -3234.3867911947286,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Grigoriy Mashkevich, M.D.",
      type: "node",
      t: [
        {
          t: "Grigoriy Mashkevich, M.D.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 475.57405350019235,
      y: -3281.977443703104,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "West Virginia Chiefs of Police Association",
      type: "node",
      t: [
        {
          t: "West Virginia Chiefs of Police Association",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813920",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 514.12265658108,
      y: 2219.121144489818,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "CISCE India Board of Education",
      type: "node",
      t: [
        {
          t: "CISCE India Board of Education",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "6117",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1869.0697877835614,
      y: -1595.7416733564664,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ted's Jumbo Red Hots",
      type: "node",
      t: [
        {
          t: "Ted's Jumbo Red Hots",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722513",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2473.5339554149814,
      y: -1662.4477959810656,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "San Francisco State University",
      type: "node",
      t: [
        {
          t: "San Francisco State University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2547.2938971658486,
      y: -1735.2964513821453,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Principal Life Insurance Company",
      type: "node",
      t: [
        {
          t: "Principal Life Insurance Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "525110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 602.0834242590763,
      y: -3076.3876320655486,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "The Coca-Cola Company",
      type: "node",
      t: [
        {
          t: "The Coca-Cola Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "312111",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -415.656041844627,
      y: -2750.7108880572864,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Miami Dolphins Ltd",
      type: "node",
      t: [
        {
          t: "Miami Dolphins Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "711211",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 182.720347910702,
      y: 1586.956434684691,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Olson & White Orthodontics",
      type: "node",
      t: [
        {
          t: "Olson & White Orthodontics",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621210",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1410.619150656701,
      y: -2259.0947970207253,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "MidCentral District Health Board",
      type: "node",
      t: [
        {
          t: "MidCentral District Health Board",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NZ"],
        industry: "923120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 362.0874986886531,
      y: -2657.9082921133527,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Citigroup Inc.",
      type: "node",
      t: [
        {
          t: "Citigroup Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 99.67119960464515,
      y: 452.99809946840287,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Health Care Solutions Network Inc.",
      type: "node",
      t: [
        {
          t: "Health Care Solutions Network Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621999",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2787.902551457999,
      y: -1317.2442585271797,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "4chan",
      type: "node",
      t: [
        {
          t: "4chan",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1976.143997240436,
      y: -1670.935520352199,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Washington Department of Revenue",
      type: "node",
      t: [
        {
          t: "Washington Department of Revenue",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92113",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -180.2298476030428,
      y: -3390.06734099283,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Home Federal Bancorp Inc/KT",
      type: "node",
      t: [
        {
          t: "Home Federal Bancorp Inc/KT",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522120",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -824.1284806748237,
      y: -2053.774013722732,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Karmei Hesed",
      type: "node",
      t: [
        {
          t: "Karmei Hesed",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "81331",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 440.25487882750645,
      y: 1207.393227456405,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Aberdeen City Council",
      type: "node",
      t: [
        {
          t: "Aberdeen City Council",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "921120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -200.75234193768256,
      y: -3567.0194374001057,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Unnamed Point of Sale Company",
      type: "node",
      t: [
        {
          t: "Unnamed Point of Sale Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KR"],
        industry: "522110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2447.9919876283143,
      y: -1997.5865997812998,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Best Buy Co., Inc.",
      type: "node",
      t: [
        {
          t: "Best Buy Co., Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "443142",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -985.4297745739691,
      y: -2999.4549751364575,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Unisys",
      type: "node",
      t: [
        {
          t: "Unisys",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541512",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -365.6568267269995,
      y: -3521.3420591266245,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "http://gabonactu.com/",
      type: "node",
      t: [
        {
          t: "http://gabonactu.com/",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GA"],
        industry: "51913",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 326.0773992824227,
      y: 1302.6641415585045,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "BBC",
      type: "node",
      t: [
        {
          t: "BBC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "515120",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 332.5280185650686,
      y: -3499.0154422304254,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Computerworld Philippines",
      type: "node",
      t: [
        {
          t: "Computerworld Philippines",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PH"],
        industry: "541512",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 562.8225733229269,
      y: 1922.1519555772747,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "HN Government of Honduras",
      type: "node",
      t: [
        {
          t: "HN Government of Honduras",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["HN"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 431.78082950478483,
      y: 2055.2410308117296,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "British Broadcasting Corporation",
      type: "node",
      t: [
        {
          t: "British Broadcasting Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "515120",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2077.707564935935,
      y: -2204.339592234664,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Miami Police Department",
      type: "node",
      t: [
        {
          t: "Miami Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92212",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 518.6750712648004,
      y: -3240.9273675391337,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "H. J. Heinz",
      type: "node",
      t: [
        {
          t: "H. J. Heinz",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722310",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1727.7198044840725,
      y: -4099.589880648236,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Titus Regional Medical Center",
      type: "node",
      t: [
        {
          t: "Titus Regional Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 221.8149721491211,
      y: -3252.135211910243,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tango.me",
      type: "node",
      t: [
        {
          t: "Tango.me",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1030.8730267451133,
      y: 2341.767160371226,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "AR Sergio Massa",
      type: "node",
      t: [
        {
          t: "AR Sergio Massa",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AR"],
        industry: "813940",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 623.5580338133805,
      y: 2067.8464118093034,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Warsaw Stock Exchange",
      type: "node",
      t: [
        {
          t: "Warsaw Stock Exchange",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PL"],
        industry: "523210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1325.5177608578588,
      y: 1622.790766956523,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Dubai International Airport",
      type: "node",
      t: [
        {
          t: "Dubai International Airport",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AE"],
        industry: "481111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 92.70140994709573,
      y: 1773.8576426442678,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Indiana University School of Optometry",
      type: "node",
      t: [
        {
          t: "Indiana University School of Optometry",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621320",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1768.0805953201666,
      y: -153.55120613757072,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "New York State Association of Chiefs of Police",
      type: "node",
      t: [
        {
          t: "New York State Association of Chiefs of Police",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813410",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 404.6648845536304,
      y: 1558.703146695494,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hashraa",
      type: "node",
      t: [
        {
          t: "Hashraa",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "712110",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1106.5656724142482,
      y: 2163.6194619936623,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Yahoo! Inc",
      type: "node",
      t: [
        {
          t: "Yahoo! Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2551.8211740561364,
      y: -769.5852703885107,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "EmblemHealth",
      type: "node",
      t: [
        {
          t: "EmblemHealth",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524114",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 345.4746306781044,
      y: -3419.2769270434615,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Staffing Solutions",
      type: "node",
      t: [
        {
          t: "Staffing Solutions",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561320",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1218.893883247034,
      y: -868.8587025612983,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Microsoft Store India",
      type: "node",
      t: [
        {
          t: "Microsoft Store India",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "443142",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 459.09445098323295,
      y: 2108.1800898316415,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Network Solutions",
      type: "node",
      t: [
        {
          t: "Network Solutions",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "518210",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1260.349398982587,
      y: 1073.7849635902048,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Harris County Hospital District",
      type: "node",
      t: [
        {
          t: "Harris County Hospital District",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 71.3399847690298,
      y: -3372.148956002095,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Elantis",
      type: "node",
      t: [
        {
          t: "Elantis",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BE"],
        industry: "522298",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2227.325167569216,
      y: -1640.7918150475525,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jonathan M. Wainwright Memorial VA Medical Center",
      type: "node",
      t: [
        {
          t: "Jonathan M. Wainwright Memorial VA Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1276.9087415896565,
      y: -783.1932870299484,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jacksonville Sheriffs Office",
      type: "node",
      t: [
        {
          t: "Jacksonville Sheriffs Office",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1025.0901871239857,
      y: -518.7684540885698,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Florida Department of Juvenile Justice",
      type: "node",
      t: [
        {
          t: "Florida Department of Juvenile Justice",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922140",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 263.82900463197166,
      y: -3591.662846321406,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alberta Health Services",
      type: "node",
      t: [
        {
          t: "Alberta Health Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "621491",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1615.6765379820356,
      y: -182.8848689884594,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Department of State",
      type: "node",
      t: [
        {
          t: "US Department of State",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 968.431658281645,
      y: 1039.2095433785362,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "All India Anna Dravida Munnetra Kazhagam (AIADMK)",
      type: "node",
      t: [
        {
          t: "All India Anna Dravida Munnetra Kazhagam (AIADMK)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "813940",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1359.3228961140253,
      y: 1571.8579066349193,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Riseup",
      type: "node",
      t: [
        {
          t: "Riseup",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "517110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2734.936936565843,
      y: 789.772043043552,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "E-Trade",
      type: "node",
      t: [
        {
          t: "E-Trade",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "523120",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2136.265382208118,
      y: -1495.1248646936474,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Flow Traders",
      type: "node",
      t: [
        {
          t: "Flow Traders",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "523991",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -580.5364370143386,
      y: -2976.3084811225685,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Union of Municipalities of Turkey",
      type: "node",
      t: [
        {
          t: "Union of Municipalities of Turkey",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TR"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1097.9551172954734,
      y: 1172.8579064459218,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "New York City Taxi and Limousine Commission",
      type: "node",
      t: [
        {
          t: "New York City Taxi and Limousine Commission",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "485310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1208.0937300934438,
      y: -685.9425848830788,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "EC Ecuador Province of Azuay",
      type: "node",
      t: [
        {
          t: "EC Ecuador Province of Azuay",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["EC"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 510.7622153806717,
      y: 2284.603415855894,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Coalition of Law Enforcement and Retail",
      type: "node",
      t: [
        {
          t: "Coalition of Law Enforcement and Retail",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541110",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1099.0428577986586,
      y: 1113.2452730651485,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jeffrey Paul Edelstein MD",
      type: "node",
      t: [
        {
          t: "Jeffrey Paul Edelstein MD",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "62",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1202.4510234787813,
      y: -808.1679906186691,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United States Department of Energy",
      type: "node",
      t: [
        {
          t: "United States Department of Energy",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "926130",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2736.439783315809,
      y: 672.7411016395338,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Northwestern Mutual",
      type: "node",
      t: [
        {
          t: "Northwestern Mutual",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524113",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1814.248744457297,
      y: -4159.015550022594,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National Examination Council Nigeria",
      type: "node",
      t: [
        {
          t: "National Examination Council Nigeria",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NG"],
        industry: "61169",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 705.1237236691295,
      y: 1026.2196864101816,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "D.W. McMillan Hospital",
      type: "node",
      t: [
        {
          t: "D.W. McMillan Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621610",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1926.9834307953643,
      y: -4031.1592725085898,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tajikistan Domain registrar",
      type: "node",
      t: [
        {
          t: "Tajikistan Domain registrar",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TJ"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1267.873836591641,
      y: 2067.8988828581405,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Charter Communications Inc",
      type: "node",
      t: [
        {
          t: "Charter Communications Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2015.910430431566,
      y: -2338.2654543300164,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "THE NATIONAL BANK OF RAS AL-KHAIMAH (P.S.C)",
      type: "node",
      t: [
        {
          t: "THE NATIONAL BANK OF RAS AL-KHAIMAH (P.S.C)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AE"],
        industry: "522110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2448.9430230442267,
      y: -1608.018681681021,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Electronic Arts",
      type: "node",
      t: [
        {
          t: "Electronic Arts",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -450.4602649209944,
      y: -1274.6043303307606,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PNC Financial Services Group Inc/The",
      type: "node",
      t: [
        {
          t: "PNC Financial Services Group Inc/The",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2977.379943288354,
      y: -1445.6186575619508,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "CL Government of Chile",
      type: "node",
      t: [
        {
          t: "CL Government of Chile",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CL"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 557.7729777844283,
      y: 1981.7985934615117,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "460 Productions",
      type: "node",
      t: [
        {
          t: "460 Productions",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "512",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1941.0007280576592,
      y: -2137.633422508524,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Anti-Shabiha.com",
      type: "node",
      t: [
        {
          t: "Anti-Shabiha.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SY"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 775.538722221695,
      y: 1172.1449351391911,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Citibank, N.A.",
      type: "node",
      t: [
        {
          t: "Citibank, N.A.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1830.5870744229078,
      y: -2497.862629982923,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "EZ Loan and Tax Services",
      type: "node",
      t: [
        {
          t: "EZ Loan and Tax Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541990",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1820.1518888692763,
      y: -4030.166533626088,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Road Safety Authority",
      type: "node",
      t: [
        {
          t: "Road Safety Authority",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IE"],
        industry: "926120",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 933.8701192823987,
      y: -722.4586996038674,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Office of Personnel Management",
      type: "node",
      t: [
        {
          t: "US Office of Personnel Management",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921190",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2871.0122345119216,
      y: 438.43290500906573,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ginbot 7",
      type: "node",
      t: [
        {
          t: "Ginbot 7",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813940",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3637.702796197187,
      y: 266.755972967067,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tullamore Credit Union",
      type: "node",
      t: [
        {
          t: "Tullamore Credit Union",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IE"],
        industry: "522130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1473.5102125294925,
      y: 54.905706980415744,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Akron",
      type: "node",
      t: [
        {
          t: "City of Akron",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1360.2683694633533,
      y: 1994.5222138005483,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "South London Healthcare Trust",
      type: "node",
      t: [
        {
          t: "South London Healthcare Trust",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "621",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 147.17661046744593,
      y: -3372.566645837689,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "ICICI Bank Ltd",
      type: "node",
      t: [
        {
          t: "ICICI Bank Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1742.6152279992293,
      y: -1583.73920739283,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Portsmouth Naval Medical Center",
      type: "node",
      t: [
        {
          t: "Portsmouth Naval Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -325.01846166480345,
      y: -3067.2059597489856,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tetriary Education Commission",
      type: "node",
      t: [
        {
          t: "Tetriary Education Commission",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NZ"],
        industry: "611710",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -943.1792876326795,
      y: -520.4861440331651,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Korea Coast Guard",
      type: "node",
      t: [
        {
          t: "Korea Coast Guard",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KR"],
        industry: "928110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2847.0123656841524,
      y: -329.243731636353,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "billorielly.com",
      type: "node",
      t: [
        {
          t: "billorielly.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "81",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2164.6456015916083,
      y: -1957.2823068634857,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "alamiravideo.com",
      type: "node",
      t: [
        {
          t: "alamiravideo.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AE"],
        industry: "51913",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1195.4568412645845,
      y: 1259.9794848548117,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Palestinian Broadcasting Corporation",
      type: "node",
      t: [
        {
          t: "Palestinian Broadcasting Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PS"],
        industry: "515120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1713.3341545889925,
      y: -2465.323713323798,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Puerto Rico Department of Health",
      type: "node",
      t: [
        {
          t: "Puerto Rico Department of Health",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "923120",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3806.0825829999058,
      y: -881.528793017822,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "CROZER-KEYSTONE HEALTH SYSTEM",
      type: "node",
      t: [
        {
          t: "CROZER-KEYSTONE HEALTH SYSTEM",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 588.7627850370923,
      y: -1504.1715568548802,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Vision Technologies, Inc.",
      type: "node",
      t: [
        {
          t: "Vision Technologies, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "334511",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -684.872225104396,
      y: -481.89259965942074,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of New York",
      type: "node",
      t: [
        {
          t: "City of New York",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1658.8973064729034,
      y: -2297.687168144025,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Schlumberger Omnes, Inc.",
      type: "node",
      t: [
        {
          t: "Schlumberger Omnes, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "213112",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2787.983546214482,
      y: -1179.4297961591046,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ho Yeow Sun",
      type: "node",
      t: [
        {
          t: "Ho Yeow Sun",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SG"],
        industry: "813110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 167.87580129210392,
      y: 2041.482782588604,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PY National Police of Paraguay",
      type: "node",
      t: [
        {
          t: "PY National Police of Paraguay",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PY"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 416.88023953997504,
      y: 1905.2290491398962,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "TD Ameritrade Holding Corp",
      type: "node",
      t: [
        {
          t: "TD Ameritrade Holding Corp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "523120",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2097.5514596503444,
      y: -2193.835989388799,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Compass Bank",
      type: "node",
      t: [
        {
          t: "Compass Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 968.6791537800736,
      y: -837.3452918483458,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Fitch Ratings Lanka Limited",
      type: "node",
      t: [
        {
          t: "Fitch Ratings Lanka Limited",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["LK"],
        industry: "561499",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 563.0900363651808,
      y: 2048.104205930629,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Automatic Data Processing (ADP)",
      type: "node",
      t: [
        {
          t: "Automatic Data Processing (ADP)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561330",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 993.5752978499104,
      y: -740.6263490533743,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Isaraeli Job Search Portal",
      type: "node",
      t: [
        {
          t: "Isaraeli Job Search Portal",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 116.77171379723995,
      y: 1828.3033852600856,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Community Health Med-Check",
      type: "node",
      t: [
        {
          t: "Community Health Med-Check",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621399",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -461.44927407042087,
      y: -3031.5173481046027,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Interactive Response Technologies",
      type: "node",
      t: [
        {
          t: "Interactive Response Technologies",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561421",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2381.3548897181936,
      y: -2665.4906463617795,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tahir News",
      type: "node",
      t: [
        {
          t: "Tahir News",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["EG"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 901.4209917027024,
      y: 1098.991549820017,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "First State Financial Corp/FL",
      type: "node",
      t: [
        {
          t: "First State Financial Corp/FL",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1984.6257577029137,
      y: -4015.6308690923483,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "AO Republic of Angola Embassy in Spain",
      type: "node",
      t: [
        {
          t: "AO Republic of Angola Embassy in Spain",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["ES"],
        industry: "928120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 325.24407365461707,
      y: 1176.0939116840555,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Florida Shands Medical Center",
      type: "node",
      t: [
        {
          t: "University of Florida Shands Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -332.6739677160024,
      y: -2626.695813900275,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "U.S. Department of State",
      type: "node",
      t: [
        {
          t: "U.S. Department of State",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "928120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1669.7646820943264,
      y: -2505.9684731221746,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Work and Income New Zealand",
      type: "node",
      t: [
        {
          t: "Work and Income New Zealand",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NZ"],
        industry: "926",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -344.302013944859,
      y: -2920.1793434373135,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Vodafone Group PLC",
      type: "node",
      t: [
        {
          t: "Vodafone Group PLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -593.036417211703,
      y: -1708.3743513161157,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Compound Semiconductor",
      type: "node",
      t: [
        {
          t: "Compound Semiconductor",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "339",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1854.1194407768226,
      y: -1711.0933591068078,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "JP Morgan Chase",
      type: "node",
      t: [
        {
          t: "JP Morgan Chase",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 230.4074145688935,
      y: 1399.3753243728024,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Canadian Imperial Bank of Commerce",
      type: "node",
      t: [
        {
          t: "Canadian Imperial Bank of Commerce",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "522110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -767.815279944579,
      y: -2170.6143789178186,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Matthew David Hair Design",
      type: "node",
      t: [
        {
          t: "Matthew David Hair Design",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "812112",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2944.6135577482237,
      y: -1262.220163733225,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National Iranian Oil Company",
      type: "node",
      t: [
        {
          t: "National Iranian Oil Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IR"],
        industry: "213112",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1176.2495982946657,
      y: 1527.4356983144316,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Motorola Mobility Inc.",
      type: "node",
      t: [
        {
          t: "Motorola Mobility Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "334220",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 962.007765607324,
      y: -625.5831400258776,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Panpacific University North Philippines",
      type: "node",
      t: [
        {
          t: "Panpacific University North Philippines",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PH"],
        industry: "611310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 319.40333012105725,
      y: 1648.1049617570507,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Billabong International Limited",
      type: "node",
      t: [
        {
          t: "Billabong International Limited",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "315210",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 677.8465157925925,
      y: 2180.3203038548863,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hillside Police Department",
      type: "node",
      t: [
        {
          t: "Hillside Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 372.20675616735593,
      y: 2054.054800743317,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Olive Garden",
      type: "node",
      t: [
        {
          t: "Olive Garden",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722511",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -802.4459930520026,
      y: -1891.6824533060772,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Greene and Letts Law Firm",
      type: "node",
      t: [
        {
          t: "Greene and Letts Law Firm",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541110",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 307.90001577712474,
      y: -2698.9466045535833,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Waters, Kraus & Paul",
      type: "node",
      t: [
        {
          t: "Waters, Kraus & Paul",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -955.2284039500837,
      y: -660.4325695535463,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "NEW MEADOWLANDS STADIUM COMPANY, LLC",
      type: "node",
      t: [
        {
          t: "NEW MEADOWLANDS STADIUM COMPANY, LLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "711310",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1696.9593538608228,
      y: -1651.405746283323,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Verizon Communications Inc.",
      type: "node",
      t: [
        {
          t: "Verizon Communications Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "51721",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1191.0775334502787,
      y: -1319.6648554092535,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Shinhan Financial Group Co., Ltd.",
      type: "node",
      t: [
        {
          t: "Shinhan Financial Group Co., Ltd.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KR"],
        industry: "522110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3502.304770154955,
      y: 435.6339351514125,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Northrim Benefits Group",
      type: "node",
      t: [
        {
          t: "Northrim Benefits Group",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524210",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1752.5987683363987,
      y: -363.94024773346064,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Staples Inc",
      type: "node",
      t: [
        {
          t: "Staples Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "453210",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -711.0089899756164,
      y: -2188.5053768325733,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of California Los Angeles",
      type: "node",
      t: [
        {
          t: "University of California Los Angeles",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 250.31076376807914,
      y: -2619.472268677238,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Christina Care",
      type: "node",
      t: [
        {
          t: "Christina Care",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621498",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -521.1776346556326,
      y: -2992.8341453998487,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "99 Cents Only Stores LLC",
      type: "node",
      t: [
        {
          t: "99 Cents Only Stores LLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "452990",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2531.271769513163,
      y: -1677.80672535148,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Islamic Finder",
      type: "node",
      t: [
        {
          t: "Islamic Finder",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541612",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1036.7272874074924,
      y: 1223.2207869612303,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Marine Corps",
      type: "node",
      t: [
        {
          t: "US Marine Corps",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "928110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 942.3176766020943,
      y: 1932.2153725654507,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Manpower UK Ltd",
      type: "node",
      t: [
        {
          t: "Manpower UK Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "561320",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1048.9446191337775,
      y: -739.5140340173748,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Government of Brazil Websites",
      type: "node",
      t: [
        {
          t: "Government of Brazil Websites",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BR"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1146.2721625571048,
      y: 1008.3719067977813,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Interdisciplinary Center Herzliya",
      type: "node",
      t: [
        {
          t: "Interdisciplinary Center Herzliya",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "611310",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2686.530179353541,
      y: 431.1252046040122,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Rhode Island Attorney General",
      type: "node",
      t: [
        {
          t: "Rhode Island Attorney General",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922130",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2025.8224406359586,
      y: -2175.153069813197,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "SunTrust",
      type: "node",
      t: [
        {
          t: "SunTrust",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1375.7774078272478,
      y: -2174.690256781257,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "New Mexico State University",
      type: "node",
      t: [
        {
          t: "New Mexico State University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2169.7020618358747,
      y: -2075.2097751801243,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Boxee.tv",
      type: "node",
      t: [
        {
          t: "Boxee.tv",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "541511",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1654.6012126787687,
      y: -1536.3257990878155,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Elliott Greenleaf & Siedzikowski",
      type: "node",
      t: [
        {
          t: "Elliott Greenleaf & Siedzikowski",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2824.5011979548244,
      y: -1689.3852926059853,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Virginia Military Institute",
      type: "node",
      t: [
        {
          t: "Virginia Military Institute",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2899.039606756807,
      y: -1300.5198535929285,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United States Airforce",
      type: "node",
      t: [
        {
          t: "United States Airforce",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["JP"],
        industry: "928",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 178.13145034710328,
      y: -3200.262805783205,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "MAXIMUS Inc",
      type: "node",
      t: [
        {
          t: "MAXIMUS Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541612",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3038.192537331067,
      y: -3272.2395351791984,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "IN Regional Bench Jaipur",
      type: "node",
      t: [
        {
          t: "IN Regional Bench Jaipur",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1300.7787066655287,
      y: 1324.8569596038315,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "California Correctional Health Care Services",
      type: "node",
      t: [
        {
          t: "California Correctional Health Care Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -500.21044398910135,
      y: -3420.678691093655,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "RW NIC",
      type: "node",
      t: [
        {
          t: "RW NIC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["RW"],
        industry: "523910",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1520.6813473485345,
      y: 1821.0359314588986,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "H&R Block Inc",
      type: "node",
      t: [
        {
          t: "H&R Block Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541213",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2922.9693986648226,
      y: -1643.6631864346905,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Walgreen Co",
      type: "node",
      t: [
        {
          t: "Walgreen Co",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "446110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 348.56229759247026,
      y: -2762.2793186177946,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Lexington, KY",
      type: "node",
      t: [
        {
          t: "City of Lexington, KY",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 305.60514679620724,
      y: 2203.5155710884464,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "U.S. Department of Labor",
      type: "node",
      t: [
        {
          t: "U.S. Department of Labor",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813930",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3540.460643866325,
      y: 338.2362402545996,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Nebraska State College System",
      type: "node",
      t: [
        {
          t: "Nebraska State College System",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 490.06786386537124,
      y: -2902.2198056413977,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Egyptian Homeland Security",
      type: "node",
      t: [
        {
          t: "Egyptian Homeland Security",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["EG"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 804.5392542296381,
      y: 966.6413632668209,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Wells Fargo & Company",
      type: "node",
      t: [
        {
          t: "Wells Fargo & Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1325.566437575144,
      y: -1909.141118057537,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Woodwinds Hospital",
      type: "node",
      t: [
        {
          t: "Woodwinds Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622310",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -312.5452384690466,
      y: -3327.8584315695966,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ukraine's Interior Ministry Website",
      type: "node",
      t: [
        {
          t: "Ukraine's Interior Ministry Website",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["UA"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -702.025954268538,
      y: -644.0402407558167,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Seventh-day Adventist Church",
      type: "node",
      t: [
        {
          t: "Seventh-day Adventist Church",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2318.350641902348,
      y: -1868.3291702329352,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "CenturyLink Inc",
      type: "node",
      t: [
        {
          t: "CenturyLink Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1065.2943026605235,
      y: 1471.3203882908338,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US National Security Agency",
      type: "node",
      t: [
        {
          t: "US National Security Agency",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "928110",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -741.1633052101897,
      y: -462.0753901108178,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Army",
      type: "node",
      t: [
        {
          t: "US Army",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "928110",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1020.3220748077088,
      y: -1883.6443685978143,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cook Islands Ministry of Cultural Development",
      type: "node",
      t: [
        {
          t: "Cook Islands Ministry of Cultural Development",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CK"],
        industry: "921110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1855.9755676744735,
      y: -2165.7893000799554,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "URM Stores, Inc.",
      type: "node",
      t: [
        {
          t: "URM Stores, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "424410",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2400.61999885159,
      y: -2033.7801533450383,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Medica Health Plans",
      type: "node",
      t: [
        {
          t: "Medica Health Plans",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621491",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1422.7537011780942,
      y: 23.384304128828262,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "London Probation Trust",
      type: "node",
      t: [
        {
          t: "London Probation Trust",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1182.1772886183426,
      y: -748.8739083531773,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Wawa",
      type: "node",
      t: [
        {
          t: "Wawa",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "445120",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -774.4753401182109,
      y: -1743.890198837873,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Kasikornbank PCL",
      type: "node",
      t: [
        {
          t: "Kasikornbank PCL",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TH"],
        industry: "522110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2343.0835944564933,
      y: -1589.7470600629913,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United Stated Department of Defense",
      type: "node",
      t: [
        {
          t: "United Stated Department of Defense",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "928110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3667.0074829826917,
      y: 318.56738306286206,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Centinela State Prison, State of CA - Dept of Corrections and Rehabilitation",
      type: "node",
      t: [
        {
          t: "Centinela State Prison, State of CA - Dept of Corrections and Rehabilitation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922140",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1509.2810322155115,
      y: 7.089323385330317,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alabama Criminal Justice Information Center",
      type: "node",
      t: [
        {
          t: "Alabama Criminal Justice Information Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922190",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1463.6713790284439,
      y: 1241.031016805311,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Epson",
      type: "node",
      t: [
        {
          t: "Epson",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["JP"],
        industry: "334",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 544.1780440970788,
      y: 1844.2832470149806,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Bognor Police Department",
      type: "node",
      t: [
        {
          t: "City of Bognor Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -256.04190138869376,
      y: -2577.8806652744174,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Murfreesboro Ambulance Service",
      type: "node",
      t: [
        {
          t: "Murfreesboro Ambulance Service",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621910",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2832.7729364601482,
      y: -1218.7359089470924,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Australian Security Intelligence Organization",
      type: "node",
      t: [
        {
          t: "Australian Security Intelligence Organization",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "928",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2672.048616775898,
      y: 767.8143368818226,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Lake Worth Independent School District",
      type: "node",
      t: [
        {
          t: "Lake Worth Independent School District",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4030.849084737587,
      y: -1744.9566594549437,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "AdNet Telcom",
      type: "node",
      t: [
        {
          t: "AdNet Telcom",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["RO"],
        industry: "517110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 942.9165005012751,
      y: 2262.7383174235947,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Numbericable",
      type: "node",
      t: [
        {
          t: "Numbericable",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["FR"],
        industry: "517911",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 946.0704947456143,
      y: 2430.8224587775576,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "IN State of Kerala ",
      type: "node",
      t: [
        {
          t: "IN State of Kerala ",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 661.24380284877,
      y: 1066.6219320913688,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Absa Group Limited",
      type: "node",
      t: [
        {
          t: "Absa Group Limited",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["ZA"],
        industry: "522110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2573.110024647899,
      y: -1832.6645918900613,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Reyerson University",
      type: "node",
      t: [
        {
          t: "Reyerson University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "611310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -928.3799999845551,
      y: -1260.0999315012068,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ontario Association of Chiefs of Police",
      type: "node",
      t: [
        {
          t: "Ontario Association of Chiefs of Police",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "813920",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1279.5779740646285,
      y: 1246.6740028389486,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jose Munoz",
      type: "node",
      t: [
        {
          t: "Jose Munoz",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813940",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3822.501082761505,
      y: -938.724948541485,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Egypt’s Ministry of Information",
      type: "node",
      t: [
        {
          t: "Egypt’s Ministry of Information",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["EG"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 227.94700267867393,
      y: 2012.189960169605,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "News Corp Australia",
      type: "node",
      t: [
        {
          t: "News Corp Australia",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1812.395511352379,
      y: -2406.1026515707135,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Westpac Banking Corp",
      type: "node",
      t: [
        {
          t: "Westpac Banking Corp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NZ"],
        industry: "522110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1869.9863437360582,
      y: -3997.5310467625554,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "brokersXpress",
      type: "node",
      t: [
        {
          t: "brokersXpress",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "523120",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3983.2343987975073,
      y: -1709.0007076846423,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "UNIVERSITY OF PITTSBURGH MEDICAL CENTER",
      type: "node",
      t: [
        {
          t: "UNIVERSITY OF PITTSBURGH MEDICAL CENTER",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1928.3384946754977,
      y: -4192.193796202373,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "First Choice Home Health Care Services Inc.",
      type: "node",
      t: [
        {
          t: "First Choice Home Health Care Services Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621610",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -341.30868784359654,
      y: -3210.0988556789566,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Barack Obama",
      type: "node",
      t: [
        {
          t: "US Barack Obama",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813940",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 711.2943525117416,
      y: 1170.7681970943422,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "ACLD Inc.",
      type: "node",
      t: [
        {
          t: "ACLD Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "624120",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1063.9294300950205,
      y: -635.3484434143334,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sebastian Enterprises, Inc.",
      type: "node",
      t: [
        {
          t: "Sebastian Enterprises, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "517911",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1755.7027213193624,
      y: -1641.8120054744718,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Lawrence Melrose Medical Electronic Record, Inc.",
      type: "node",
      t: [
        {
          t: "Lawrence Melrose Medical Electronic Record, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "812990",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 19.491305859595286,
      y: -3401.529479404621,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Edmonton Public School District",
      type: "node",
      t: [
        {
          t: "Edmonton Public School District",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "611110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1856.5301406069527,
      y: -224.89843506491366,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Derry Medical Center",
      type: "node",
      t: [
        {
          t: "Derry Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621111",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3965.94659013361,
      y: -1430.9722171201702,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Mole Valley District Council",
      type: "node",
      t: [
        {
          t: "Mole Valley District Council",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 362.96991590572316,
      y: 1516.026244591064,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "MacTalk",
      type: "node",
      t: [
        {
          t: "MacTalk",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "51913",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 149.81878672361177,
      y: 1432.070618716567,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "f-1racers.net",
      type: "node",
      t: [
        {
          t: "f-1racers.net",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "51913",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 265.3968773970064,
      y: 2107.2755643922737,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "digitword.com",
      type: "node",
      t: [
        {
          t: "digitword.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["RS"],
        industry: "51913",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2062.1054445741065,
      y: -2017.333719394273,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "RentPath, Inc. (Primedia)",
      type: "node",
      t: [
        {
          t: "RentPath, Inc. (Primedia)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511120",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1004.7576039240394,
      y: -627.4347395984764,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Microsoft Corp",
      type: "node",
      t: [
        {
          t: "Microsoft Corp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541512",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 647.1385328809142,
      y: -1040.1043018327018,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "North Jersey Developmental Center",
      type: "node",
      t: [
        {
          t: "North Jersey Developmental Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 142.22176314284548,
      y: -3468.0117067696233,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "GDF Suez",
      type: "node",
      t: [
        {
          t: "GDF Suez",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "22112",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2911.0052766905546,
      y: -336.2798335541429,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "theonion.com",
      type: "node",
      t: [
        {
          t: "theonion.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3527.7593287337804,
      y: 38.11159480053675,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Vegas Tripping",
      type: "node",
      t: [
        {
          t: "Vegas Tripping",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1888.2556744770977,
      y: -2413.1411026255637,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Federal Bureau of Investigation",
      type: "node",
      t: [
        {
          t: "US Federal Bureau of Investigation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 623.6095151476043,
      y: 1997.2203557254988,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "ruptly.tv",
      type: "node",
      t: [
        {
          t: "ruptly.tv",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["RU"],
        industry: "515210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 283.5819656755773,
      y: 1761.780702996638,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Medical College of Wisconsin",
      type: "node",
      t: [
        {
          t: "Medical College of Wisconsin",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -592.5421688310644,
      y: -3094.753118415903,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "UA Parliament Verkhovna Rada",
      type: "node",
      t: [
        {
          t: "UA Parliament Verkhovna Rada",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["UA"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 972.0135489893592,
      y: 2376.6141084811543,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Staples",
      type: "node",
      t: [
        {
          t: "Staples",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "453210",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -882.0637233493148,
      y: -2039.5853450590002,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sony Online Entertainment LLC",
      type: "node",
      t: [
        {
          t: "Sony Online Entertainment LLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511210",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 281.8530859658988,
      y: 1821.4785035821096,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Omnicare, Inc.",
      type: "node",
      t: [
        {
          t: "Omnicare, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "424210",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1762.7585192506112,
      y: -4212.966829437151,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sunday Times",
      type: "node",
      t: [
        {
          t: "Sunday Times",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "511110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 125.67582045805966,
      y: 1887.3067481995595,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "County of Sangamon",
      type: "node",
      t: [
        {
          t: "County of Sangamon",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -772.4372713174016,
      y: -633.8333894400216,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "ChoicePoint",
      type: "node",
      t: [
        {
          t: "ChoicePoint",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524298",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2495.642977524466,
      y: -1922.6303605071535,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Law Firm in British Columbia",
      type: "node",
      t: [
        {
          t: "Law Firm in British Columbia",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "541110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2372.954117808199,
      y: -1918.165789690107,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Colorado Department of Revenue",
      type: "node",
      t: [
        {
          t: "Colorado Department of Revenue",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1917.1141808612756,
      y: -2298.3121308898003,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Blue Cross and Blue Shield of North Carolina",
      type: "node",
      t: [
        {
          t: "Blue Cross and Blue Shield of North Carolina",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524114",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 284.57507380925927,
      y: -3463.59804153438,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "RentCanada",
      type: "node",
      t: [
        {
          t: "RentCanada",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1618.5470720844032,
      y: -2.3682180418186363,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tri - State Surgical Associates",
      type: "node",
      t: [
        {
          t: "Tri - State Surgical Associates",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 53.69377268936819,
      y: -3545.863865351952,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "MilitarySingles.com",
      type: "node",
      t: [
        {
          t: "MilitarySingles.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1230.5065528095806,
      y: 1766.8089684839606,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "NBC Universal, Inc.",
      type: "node",
      t: [
        {
          t: "NBC Universal, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "515120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 869.2602690793137,
      y: 2109.641221389681,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Blue Cross and Blue Shield Association",
      type: "node",
      t: [
        {
          t: "Blue Cross and Blue Shield Association",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524292",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1547.4673085484465,
      y: -2304.133874626575,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Innovation Punjab",
      type: "node",
      t: [
        {
          t: "Innovation Punjab",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PK"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 309.37659916837924,
      y: 1565.7738498858744,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Navy Federal Credit Union",
      type: "node",
      t: [
        {
          t: "Navy Federal Credit Union",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522130",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -960.5276810807641,
      y: -2372.252728947271,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Embassy Of Israel In India",
      type: "node",
      t: [
        {
          t: "Embassy Of Israel In India",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "928120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 258.89337554335316,
      y: 2166.6507611708766,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Federal Election Commission",
      type: "node",
      t: [
        {
          t: "Federal Election Commission",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921190",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2661.1597870491796,
      y: 596.076319951108,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Pine Environmental Services, LLC",
      type: "node",
      t: [
        {
          t: "Pine Environmental Services, LLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561210",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1241.1324614866899,
      y: -735.5679533554512,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "U.S. Bank",
      type: "node",
      t: [
        {
          t: "U.S. Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "5222",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1262.1044877049187,
      y: -1841.226061872339,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Mobile Police",
      type: "node",
      t: [
        {
          t: "City of Mobile Police",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1308.8338167454754,
      y: 1964.3719145416653,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Australian Bureau of Statistics",
      type: "node",
      t: [
        {
          t: "Australian Bureau of Statistics",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "926110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1936.59983708029,
      y: -3913.3744005006133,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "EMAXX",
      type: "node",
      t: [
        {
          t: "EMAXX",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PH"],
        industry: "334",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1604.1973302981064,
      y: -2325.542303774161,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ministry of Economy & Trade",
      type: "node",
      t: [
        {
          t: "Ministry of Economy & Trade",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["LB"],
        industry: "541990",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 684.2971042582617,
      y: 2047.5765342539016,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "The Stop & Shop Supermarket Company",
      type: "node",
      t: [
        {
          t: "The Stop & Shop Supermarket Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "445110",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -912.0933900642956,
      y: -2112.4100959457874,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cook Islands Ministry of Transport",
      type: "node",
      t: [
        {
          t: "Cook Islands Ministry of Transport",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CK"],
        industry: "921110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2121.1346736217565,
      y: -2109.6010206358237,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Federal Reserve Bank",
      type: "node",
      t: [
        {
          t: "US Federal Reserve Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "521110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 403.3995337968702,
      y: 1825.9851053686725,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Permanent TSB Group Holdings PLC",
      type: "node",
      t: [
        {
          t: "Permanent TSB Group Holdings PLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IE"],
        industry: "551111",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2425.732619058322,
      y: -1820.6045977348522,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Health Care Organization in Milwaukee",
      type: "node",
      t: [
        {
          t: "Health Care Organization in Milwaukee",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "62",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2380.081513244945,
      y: -2207.8843289722427,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Mayer Brown LLP",
      type: "node",
      t: [
        {
          t: "Mayer Brown LLP",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2742.9506058785355,
      y: 450.5609286669405,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "UK Council for Graduate Education",
      type: "node",
      t: [
        {
          t: "UK Council for Graduate Education",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "92311",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1987.5440399691406,
      y: -1938.5252064821607,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "The Public Whip",
      type: "node",
      t: [
        {
          t: "The Public Whip",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "813940",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 128.58926225123105,
      y: 1946.7452382829833,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "West Coast District Health Board New Zealand",
      type: "node",
      t: [
        {
          t: "West Coast District Health Board New Zealand",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NZ"],
        industry: "923120",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -543.2338536004086,
      y: -2862.389371249888,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Pakistan International Airlines",
      type: "node",
      t: [
        {
          t: "Pakistan International Airlines",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PK"],
        industry: "485999",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 237.12369225873704,
      y: 1875.6866182144677,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Abtran Group Ltd",
      type: "node",
      t: [
        {
          t: "Abtran Group Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IE"],
        industry: "561499",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3059.8074956658893,
      y: -3216.7463817617754,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Visionstream PTY Limited",
      type: "node",
      t: [
        {
          t: "Visionstream PTY Limited",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "517919",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3169.7602269683357,
      y: -698.9860459720167,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "New York Police Department (NYPD)",
      type: "node",
      t: [
        {
          t: "New York Police Department (NYPD)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1095.9654872544907,
      y: -554.3156726982538,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "South West Essex Primary Care Trust",
      type: "node",
      t: [
        {
          t: "South West Essex Primary Care Trust",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "621",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -328.4034139416026,
      y: -3269.41219277022,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Platinum Solutions",
      type: "node",
      t: [
        {
          t: "Platinum Solutions",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "54151",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3876.8470473167554,
      y: -1744.5096123122134,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Institute for Supply Management",
      type: "node",
      t: [
        {
          t: "Institute for Supply Management",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611699",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 958.8801740510617,
      y: -896.0963492194983,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "NDB (Swiss Intelligence Agency)",
      type: "node",
      t: [
        {
          t: "NDB (Swiss Intelligence Agency)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CH"],
        industry: "9281",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -283.2468732835432,
      y: -2698.36077488989,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bank of America",
      type: "node",
      t: [
        {
          t: "Bank of America",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2259.079822378799,
      y: -1874.6487086013258,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "DE State of Saxony-Anhalt",
      type: "node",
      t: [
        {
          t: "DE State of Saxony-Anhalt",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["DE"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2013.049489211874,
      y: -2233.7607418664065,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "American Quality Exteriors",
      type: "node",
      t: [
        {
          t: "American Quality Exteriors",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "236115",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -72.18596903333173,
      y: -3340.6886936082997,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "HM Revenue & Customs",
      type: "node",
      t: [
        {
          t: "HM Revenue & Customs",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "921120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -118.57199510988448,
      y: -3398.857411303605,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Boca Raton Regional Hospital, Inc.",
      type: "node",
      t: [
        {
          t: "Boca Raton Regional Hospital, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -328.60405994671646,
      y: -2037.9003002246577,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "ThruWay Service Area",
      type: "node",
      t: [
        {
          t: "ThruWay Service Area",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "811111",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -860.2843147740904,
      y: -1923.8235775105368,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Business 1",
      type: "node",
      t: [
        {
          t: "US Business 1",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "238220",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 957.0824472284298,
      y: 1201.9711271459919,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "California Department of Public Health",
      type: "node",
      t: [
        {
          t: "California Department of Public Health",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1059.1368220972427,
      y: -1218.8794571151352,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "CN China Chamber of International Commerce",
      type: "node",
      t: [
        {
          t: "CN China Chamber of International Commerce",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CN"],
        industry: "928",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 176.26584332751895,
      y: 1982.5269884383015,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United States Congress",
      type: "node",
      t: [
        {
          t: "United States Congress",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921120",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 753.9105597317075,
      y: 2145.8082782079264,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Guangdong Public Security Bureau",
      type: "node",
      t: [
        {
          t: "Guangdong Public Security Bureau",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CN"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 275.2045251536988,
      y: 2048.4995409995336,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Koch Industries",
      type: "node",
      t: [
        {
          t: "Koch Industries",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "324110",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 456.13312001985696,
      y: 1589.052041176954,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Arts Block",
      type: "node",
      t: [
        {
          t: "Arts Block",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722410",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1442.5138966042532,
      y: 1475.694819116181,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alabama Securities Commision",
      type: "node",
      t: [
        {
          t: "Alabama Securities Commision",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "926150",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 122.09074369150176,
      y: -2521.7654598155045,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "bzpower.com",
      type: "node",
      t: [
        {
          t: "bzpower.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "51913",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2017.08711770415,
      y: -1714.2294987664886,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hilton Hotels Holdings LLC",
      type: "node",
      t: [
        {
          t: "Hilton Hotels Holdings LLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "721110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2544.8179478494712,
      y: -1956.2863783943158,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Mobile",
      type: "node",
      t: [
        {
          t: "City of Mobile",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 379.1727286144794,
      y: 1956.7180080626931,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Micro-Star International Co.",
      type: "node",
      t: [
        {
          t: "Micro-Star International Co.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TW"],
        industry: "33411",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 494.6972585799858,
      y: 1160.2980475716022,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "linhcrystal.com",
      type: "node",
      t: [
        {
          t: "linhcrystal.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2182.0007803542258,
      y: -2194.4680437587867,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "wow-gold.de",
      type: "node",
      t: [
        {
          t: "wow-gold.de",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["DE"],
        industry: "5112",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1404.1821550325358,
      y: 1764.0383355509948,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Washington DC Travel Website",
      type: "node",
      t: [
        {
          t: "Washington DC Travel Website",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1203.7764637632208,
      y: 1382.1796824278717,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tomren Wealth Management",
      type: "node",
      t: [
        {
          t: "Tomren Wealth Management",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "523930",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2314.1925206897117,
      y: -1927.716348517586,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Australian Defence Force Academy (ADFA)",
      type: "node",
      t: [
        {
          t: "Australian Defence Force Academy (ADFA)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 144.75228439731245,
      y: 1674.481178974418,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Round Rock Hospital",
      type: "node",
      t: [
        {
          t: "Round Rock Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 182.89344100532617,
      y: -3666.6666546282795,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Department of Telecommunications and Information Services of the City and County of San Francisco",
      type: "node",
      t: [
        {
          t: "Department of Telecommunications and Information Services of the City and County of San Francisco",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1615.7979395764671,
      y: 58.66772204545805,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Acer India",
      type: "node",
      t: [
        {
          t: "Acer India",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "334111",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 444.582194219709,
      y: 1127.8110727668509,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "North Carolina Department of State Treasury",
      type: "node",
      t: [
        {
          t: "North Carolina Department of State Treasury",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921130",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1058.6965893261008,
      y: -1005.6527977862488,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Lansing",
      type: "node",
      t: [
        {
          t: "City of Lansing",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1539.0343565178823,
      y: 1631.286207019487,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Webassur",
      type: "node",
      t: [
        {
          t: "Webassur",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BE"],
        industry: "518210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2352.0090648195946,
      y: -1528.4520819807485,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PK Pakistan People's Party",
      type: "node",
      t: [
        {
          t: "PK Pakistan People's Party",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PK"],
        industry: "813940",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 539.9408776630637,
      y: 1775.7873249731165,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National Portal of India",
      type: "node",
      t: [
        {
          t: "National Portal of India",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 827.508209876315,
      y: 2183.994067570102,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cook Islands Ministry of Agriculture",
      type: "node",
      t: [
        {
          t: "Cook Islands Ministry of Agriculture",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CK"],
        industry: "921110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2155.4737187116725,
      y: -1784.8749955507578,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tesco Corp",
      type: "node",
      t: [
        {
          t: "Tesco Corp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "333132",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2860.633520941953,
      y: -1395.3408366563117,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sprint Corp",
      type: "node",
      t: [
        {
          t: "Sprint Corp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 368.3736586756859,
      y: -3270.439160816391,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Wenzhou Television Station",
      type: "node",
      t: [
        {
          t: "Wenzhou Television Station",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CN"],
        industry: "515120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 460.25539274759944,
      y: 2244.4696215271733,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Etowah County Alabama",
      type: "node",
      t: [
        {
          t: "Etowah County Alabama",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2709.5345283816227,
      y: -604.152654981568,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "KH Cambodian Anti-Corruption Unit",
      type: "node",
      t: [
        {
          t: "KH Cambodian Anti-Corruption Unit",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KH"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1544.1893957036632,
      y: 1968.1224134122194,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Turkish National Police",
      type: "node",
      t: [
        {
          t: "Turkish National Police",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TR"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 384.9653438395785,
      y: 1127.1512949200423,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "California Statewide Law Enforcement Association (CSLEA)",
      type: "node",
      t: [
        {
          t: "California Statewide Law Enforcement Association (CSLEA)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541110",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 912.0968704618926,
      y: 1019.9317938860067,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Americredit",
      type: "node",
      t: [
        {
          t: "Americredit",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522291",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3066.1280221332236,
      y: -3157.3443566473725,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Vestergaard Frantsen",
      type: "node",
      t: [
        {
          t: "Vestergaard Frantsen",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CH"],
        industry: "325311",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -648.428464942313,
      y: -608.315468153578,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "EnerVest",
      type: "node",
      t: [
        {
          t: "EnerVest",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "211111",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1724.248194838611,
      y: -0.9370500042118692,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Government of Ukraine Websites",
      type: "node",
      t: [
        {
          t: "Government of Ukraine Websites",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["UA"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3529.769680598809,
      y: 152.0499474353919,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cigna",
      type: "node",
      t: [
        {
          t: "Cigna",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524114",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 422.53542230789685,
      y: -3143.6225192859097,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Royal Bank of Scotland Group PLC",
      type: "node",
      t: [
        {
          t: "Royal Bank of Scotland Group PLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "522110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1647.8455881121754,
      y: -1617.3908738026626,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Texas Health Arlington Memorial Hospital",
      type: "node",
      t: [
        {
          t: "Texas Health Arlington Memorial Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1666.4168260248803,
      y: -148.37061277862563,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bank Mandiri Persero Tbk PT",
      type: "node",
      t: [
        {
          t: "Bank Mandiri Persero Tbk PT",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2206.2397370500703,
      y: -1417.763718724892,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "IN Bangalore City Police",
      type: "node",
      t: [
        {
          t: "IN Bangalore City Police",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 939.1968325957632,
      y: 1144.998888012039,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Advanced Micro Devices (AMD)",
      type: "node",
      t: [
        {
          t: "Advanced Micro Devices (AMD)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "334413",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2772.7506339826396,
      y: -250.98580412238334,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Econo Lodge",
      type: "node",
      t: [
        {
          t: "Econo Lodge",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "721110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -364.11166849262713,
      y: -1766.3678254825518,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Veracity Payment Solutions, Inc.",
      type: "node",
      t: [
        {
          t: "Veracity Payment Solutions, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522320",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2313.556724509701,
      y: -2157.3990934198064,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Womens Active Museum on War and Peace",
      type: "node",
      t: [
        {
          t: "Womens Active Museum on War and Peace",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["JP"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1461.754797855825,
      y: 1799.9578982637395,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Israeli Ministry of Construction and Housing",
      type: "node",
      t: [
        {
          t: "Israeli Ministry of Construction and Housing",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "236116",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2416.163728019985,
      y: -1678.6134805521833,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Virgin Mobile (Australia) Pty Ltd",
      type: "node",
      t: [
        {
          t: "Virgin Mobile (Australia) Pty Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "517210",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1044.0207309746784,
      y: 1527.3356495644393,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Gigabyte Technology",
      type: "node",
      t: [
        {
          t: "Gigabyte Technology",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TW"],
        industry: "334111",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 584.9630605439593,
      y: 1102.013691043324,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Kroll Background America, Inc.",
      type: "node",
      t: [
        {
          t: "Kroll Background America, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561611",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2256.9354033462537,
      y: -1449.1600872536328,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "ELECTRONICS CORPORATION OF INDIA LIMITED",
      type: "node",
      t: [
        {
          t: "ELECTRONICS CORPORATION OF INDIA LIMITED",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "423690",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 193.91565216320532,
      y: 1472.2786672176435,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Adobe",
      type: "node",
      t: [
        {
          t: "Adobe",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511210",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3603.598407730682,
      y: 419.19722809057157,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "California Department of Social Services",
      type: "node",
      t: [
        {
          t: "California Department of Social Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "923",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1668.756058167053,
      y: 30.167806236735032,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Mt. Sinai Medical Center of Florida, Inc.",
      type: "node",
      t: [
        {
          t: "Mt. Sinai Medical Center of Florida, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -385.77050870639687,
      y: -836.1434266714305,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Maryland Medical Center",
      type: "node",
      t: [
        {
          t: "University of Maryland Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1754.9288027757393,
      y: -4152.727735648363,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Intel Corporation",
      type: "node",
      t: [
        {
          t: "Intel Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "334413",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3498.9739148692242,
      y: 226.59441811047282,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Fidelity National Information Services Inc",
      type: "node",
      t: [
        {
          t: "Fidelity National Information Services Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1753.0942260092174,
      y: -1011.2090220830851,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Starbucks Corp",
      type: "node",
      t: [
        {
          t: "Starbucks Corp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722515",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2432.0850050242616,
      y: -1736.0576270097545,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tennesee Bureau of Treasury",
      type: "node",
      t: [
        {
          t: "Tennesee Bureau of Treasury",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524291",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3990.533818825321,
      y: -1538.8781560344905,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Berkeley",
      type: "node",
      t: [
        {
          t: "City of Berkeley",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92114",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 118.34081260568541,
      y: -3320.4227856258917,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "cine.com.pa",
      type: "node",
      t: [
        {
          t: "cine.com.pa",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PA"],
        industry: "512",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1253.6975089794978,
      y: 1627.8065100270942,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "cifi.fr",
      type: "node",
      t: [
        {
          t: "cifi.fr",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["FR"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 566.7664351642038,
      y: 2304.728257427634,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "ESET",
      type: "node",
      t: [
        {
          t: "ESET",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PS"],
        industry: "511210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 527.7571335467128,
      y: 2114.2411621097053,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Anthem Blue Cross Blue Shield of Indiana",
      type: "node",
      t: [
        {
          t: "Anthem Blue Cross Blue Shield of Indiana",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524114",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2921.4830972163045,
      y: -3294.213065412572,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Burger King",
      type: "node",
      t: [
        {
          t: "Burger King",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -938.531828382507,
      y: -2058.9620148947943,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Coventry Health Care, Inc., First Health Priority Services",
      type: "node",
      t: [
        {
          t: "Coventry Health Care, Inc., First Health Priority Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "62111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -430.02346549318463,
      y: -3309.038743394331,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Federally Administered Tribal Areas of Pakistan Government",
      type: "node",
      t: [
        {
          t: "Federally Administered Tribal Areas of Pakistan Government",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PK"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 489.7678428494039,
      y: 1691.3867580659507,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Government of Swaziland",
      type: "node",
      t: [
        {
          t: "Government of Swaziland",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SZ"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 254.38520105549924,
      y: 1454.0514143262035,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hess Corporation",
      type: "node",
      t: [
        {
          t: "Hess Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "211111",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2207.829911864179,
      y: -2237.6895085721144,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "AXA",
      type: "node",
      t: [
        {
          t: "AXA",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["FR"],
        industry: "524113",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 725.0028389272056,
      y: 1093.5026571962644,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "JPMorgan Chase",
      type: "node",
      t: [
        {
          t: "JPMorgan Chase",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "52",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2747.315726543634,
      y: 731.3797288661963,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jakarta Body Shops",
      type: "node",
      t: [
        {
          t: "Jakarta Body Shops",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "811121",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -857.7375651120535,
      y: -1983.27316242296,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hospital for Special Surgery",
      type: "node",
      t: [
        {
          t: "Hospital for Special Surgery",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622310",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -989.3146743469106,
      y: -771.4019951804053,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "May First/People Link",
      type: "node",
      t: [
        {
          t: "May First/People Link",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "517110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2672.624808954002,
      y: 654.6574308362415,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "USAA",
      type: "node",
      t: [
        {
          t: "USAA",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524126",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2398.838265256377,
      y: -1565.3463422563473,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "iPayment, Inc.",
      type: "node",
      t: [
        {
          t: "iPayment, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522320",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2314.3799920745037,
      y: -1433.143133019359,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Mother and Daughter Personal Care Home",
      type: "node",
      t: [
        {
          t: "Mother and Daughter Personal Care Home",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "923110",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1704.2723457707548,
      y: -261.2337317134584,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "King Edward VI College",
      type: "node",
      t: [
        {
          t: "King Edward VI College",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "611310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1204.3722881651138,
      y: -926.604316119046,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ministerio de Educaci_n Chile",
      type: "node",
      t: [
        {
          t: "Ministerio de Educaci_n Chile",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CL"],
        industry: "9211",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1011.1567149238513,
      y: 984.1367364851067,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Global News Enterprises, LLC",
      type: "node",
      t: [
        {
          t: "Global News Enterprises, LLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1146.9188308085786,
      y: 1936.2247904739934,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "ES Municipality of Tordesillas",
      type: "node",
      t: [
        {
          t: "ES Municipality of Tordesillas",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["ES"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1446.3542755545495,
      y: 1535.6138360949271,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Treasure Island",
      type: "node",
      t: [
        {
          t: "Treasure Island",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "445110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2438.1213448286353,
      y: -1938.8743294398646,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Nigerian Entertainment TOday",
      type: "node",
      t: [
        {
          t: "Nigerian Entertainment TOday",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NG"],
        industry: "519130",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2111.5511307108263,
      y: -2050.867510805088,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ec-Council Foundation",
      type: "node",
      t: [
        {
          t: "Ec-Council Foundation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611420",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2087.726000103703,
      y: -1869.5289558422337,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Directors Guild of Canada",
      type: "node",
      t: [
        {
          t: "Directors Guild of Canada",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "813920",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2175.6936486275463,
      y: -2015.8437391040193,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "One.co.il",
      type: "node",
      t: [
        {
          t: "One.co.il",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "451",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 340.49140851718107,
      y: 2003.6386102042206,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "International House of Pancakes",
      type: "node",
      t: [
        {
          t: "International House of Pancakes",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722511",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1048.9811568577843,
      y: -1111.5244860053162,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Kaiser Permanente",
      type: "node",
      t: [
        {
          t: "Kaiser Permanente",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -190.0293767925641,
      y: -2588.7692392686336,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Financial Times Group Ltd.",
      type: "node",
      t: [
        {
          t: "Financial Times Group Ltd.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "551112",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 579.0837247204668,
      y: 1279.6817238323265,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Automatic Data Processing Inc",
      type: "node",
      t: [
        {
          t: "Automatic Data Processing Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2254.7911607643323,
      y: -1934.2190926855037,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Denton High School",
      type: "node",
      t: [
        {
          t: "Denton High School",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -618.5273151129086,
      y: -556.7386541059718,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Metrobank",
      type: "node",
      t: [
        {
          t: "Metrobank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PH"],
        industry: "522110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1848.814126548586,
      y: -1651.6954065391142,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Arkansas",
      type: "node",
      t: [
        {
          t: "University of Arkansas",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -519.8916672406303,
      y: -3052.488228947292,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Medical Solutions Management, Inc.",
      type: "node",
      t: [
        {
          t: "Medical Solutions Management, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "62",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2802.1239985922557,
      y: -1491.0639190085094,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "e-teacherdiploma.com",
      type: "node",
      t: [
        {
          t: "e-teacherdiploma.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["EG"],
        industry: "6117",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 464.01445972006104,
      y: 1510.07330415243,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Iowa",
      type: "node",
      t: [
        {
          t: "University of Iowa",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2341.373649142823,
      y: -1813.3546157753517,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Long Island Railroad",
      type: "node",
      t: [
        {
          t: "Long Island Railroad",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "482",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2272.601036833816,
      y: -1991.144368238447,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Department of Health Care Policy & Financing",
      type: "node",
      t: [
        {
          t: "Department of Health Care Policy & Financing",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "923120",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1772.4408786055978,
      y: -93.93105840086832,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PE Office of the President of Peru",
      type: "node",
      t: [
        {
          t: "PE Office of the President of Peru",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PE"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 174.7120239104504,
      y: 1377.922657955256,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Dr. Linda Green",
      type: "node",
      t: [
        {
          t: "Dr. Linda Green",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "62",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1018.4756229716681,
      y: -2391.9448655818337,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Amazon.com, Inc.",
      type: "node",
      t: [
        {
          t: "Amazon.com, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "454111",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1141.0298079453387,
      y: 1371.673391022785,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "AOL Inc",
      type: "node",
      t: [
        {
          t: "AOL Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "518210",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2006.3330401456606,
      y: -2397.040024040192,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Telco Service Holdings Pty Ltd",
      type: "node",
      t: [
        {
          t: "Telco Service Holdings Pty Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "517",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1989.299048904907,
      y: -3885.3572640214043,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Silver Star Motors",
      type: "node",
      t: [
        {
          t: "Silver Star Motors",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "441120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2787.7245024091626,
      y: -1257.6401096354111,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PE Peruvian National Police",
      type: "node",
      t: [
        {
          t: "PE Peruvian National Police",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PE"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1378.201719598083,
      y: 1925.8654448228954,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Department of Employment Oregon",
      type: "node",
      t: [
        {
          t: "Department of Employment Oregon",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "923130",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -969.8885121999574,
      y: -1204.9212863655198,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Yahoo",
      type: "node",
      t: [
        {
          t: "Yahoo",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -272.727628126514,
      y: 1478.7083172341454,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Honolulu Star-Advertiser",
      type: "node",
      t: [
        {
          t: "Honolulu Star-Advertiser",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2030.889652882176,
      y: -2170.519235276124,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hudson Valley Foie Gras",
      type: "node",
      t: [
        {
          t: "Hudson Valley Foie Gras",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "311612",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 295.773851270563,
      y: 1886.7955996142637,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Namibian Government",
      type: "node",
      t: [
        {
          t: "Namibian Government",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NA"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1244.4380346805756,
      y: 1305.6802665120376,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Santander UK PLC",
      type: "node",
      t: [
        {
          t: "Santander UK PLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "522110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2470.6692794798555,
      y: -1781.6020728413769,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Aon Hewitt",
      type: "node",
      t: [
        {
          t: "Aon Hewitt",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541612",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2361.60579430079,
      y: -1469.7259925988774,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Arizona Department of Homeland Security",
      type: "node",
      t: [
        {
          t: "Arizona Department of Homeland Security",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92811",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1486.2794474791795,
      y: 1982.6119199170762,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Oklahoma Behavioral Health Rehabilitation",
      type: "node",
      t: [
        {
          t: "Oklahoma Behavioral Health Rehabilitation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621112",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1022.3214700172634,
      y: -1054.3855361096134,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Club World Casino",
      type: "node",
      t: [
        {
          t: "Club World Casino",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "551112",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1518.9298348394877,
      y: -2417.273483558739,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Santa Cruz County",
      type: "node",
      t: [
        {
          t: "Santa Cruz County",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1091.8266265717507,
      y: 1053.9687542614088,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Florida A&M University",
      type: "node",
      t: [
        {
          t: "Florida A&M University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -456.94418383824086,
      y: -827.4338342376709,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Schoenbar Middle School",
      type: "node",
      t: [
        {
          t: "Schoenbar Middle School",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1174.533742755265,
      y: -978.2202074681177,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "WAZE",
      type: "node",
      t: [
        {
          t: "WAZE",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "48-49",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1145.2056010026718,
      y: -910.5349639057272,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Mansfield, OH",
      type: "node",
      t: [
        {
          t: "City of Mansfield, OH",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 777.5165093933992,
      y: 1031.6965995392857,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National Farmers Union Mutual Insurance Society Limited",
      type: "node",
      t: [
        {
          t: "National Farmers Union Mutual Insurance Society Limited",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "524126",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1255.6880134323546,
      y: 1993.2591928618785,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Brazilian Air Force",
      type: "node",
      t: [
        {
          t: "Brazilian Air Force",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BR"],
        industry: "9281",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 833.2580113038157,
      y: 2004.8473615552793,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Publix Super Markets Inc",
      type: "node",
      t: [
        {
          t: "Publix Super Markets Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "445110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2018.6578519214017,
      y: -1818.074532349989,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Council of Country Code Administrators",
      type: "node",
      t: [
        {
          t: "Council of Country Code Administrators",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 418.8482352018559,
      y: 1270.791461252048,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "The Cheescake Factory",
      type: "node",
      t: [
        {
          t: "The Cheescake Factory",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722410",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -910.0555851416441,
      y: -1890.7399350787564,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Chesterfield County School District",
      type: "node",
      t: [
        {
          t: "Chesterfield County School District",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -595.6362676731483,
      y: -3154.2659270768204,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PHH Corporation",
      type: "node",
      t: [
        {
          t: "PHH Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "53211",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -475.9446675435406,
      y: -3099.7617935850953,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Monsanto Co",
      type: "node",
      t: [
        {
          t: "Monsanto Co",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "32532",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2065.3477255585403,
      y: -2262.6372775818554,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sacramento Regional Transit",
      type: "node",
      t: [
        {
          t: "Sacramento Regional Transit",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "4851",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -369.6919900082762,
      y: -3114.0023701084133,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "RSA Conference ",
      type: "node",
      t: [
        {
          t: "RSA Conference ",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "51",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1515.791557909195,
      y: 1437.6367523232002,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Indonesia Federal Government",
      type: "node",
      t: [
        {
          t: "Indonesia Federal Government",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["ID"],
        industry: "921110",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1587.0953506192845,
      y: 1476.8130273004317,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ankara Police Directorate",
      type: "node",
      t: [
        {
          t: "Ankara Police Directorate",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TR"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1247.2677908971073,
      y: 2149.1289762102942,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "websolutions.it",
      type: "node",
      t: [
        {
          t: "websolutions.it",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IT"],
        industry: "518",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2482.278175068983,
      y: -1840.0644375502388,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "College Board",
      type: "node",
      t: [
        {
          t: "College Board",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CN"],
        industry: "6113",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -584.034453563726,
      y: -3035.788119343282,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Rackspace Hosting, Inc.",
      type: "node",
      t: [
        {
          t: "Rackspace Hosting, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "518210",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3631.035302976996,
      y: 366.12285365506295,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Central Election Commission",
      type: "node",
      t: [
        {
          t: "Central Election Commission",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["UA"],
        industry: "921190",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 377.18484363145467,
      y: 1343.391202493941,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Buckeye Title Loans of California LLC",
      type: "node",
      t: [
        {
          t: "Buckeye Title Loans of California LLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522390",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1737.0424199479417,
      y: -2303.8801249690036,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hostgator",
      type: "node",
      t: [
        {
          t: "Hostgator",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "517110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1458.5999201327036,
      y: -24.31614275386164,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Islington Council",
      type: "node",
      t: [
        {
          t: "Islington Council",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "921",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2876.1354329378664,
      y: -384.5766549837763,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "CNA Foundation",
      type: "node",
      t: [
        {
          t: "CNA Foundation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524126",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3995.243948814463,
      y: -1792.646338370062,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Beypazari State Hospital",
      type: "node",
      t: [
        {
          t: "Beypazari State Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TR"],
        industry: "622",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1453.7728354847313,
      y: 1730.9442122287646,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "American Choral Directors Association",
      type: "node",
      t: [
        {
          t: "American Choral Directors Association",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813920",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1995.5892885910062,
      y: -1613.1688987579678,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Nottingham",
      type: "node",
      t: [
        {
          t: "University of Nottingham",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -351.3773458335613,
      y: -2742.9105352884003,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Nursing and Midwifery Council",
      type: "node",
      t: [
        {
          t: "Nursing and Midwifery Council",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "813319",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 328.81246969539575,
      y: -3143.196109506524,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "TEC Industrial Maintenance & Construction",
      type: "node",
      t: [
        {
          t: "TEC Industrial Maintenance & Construction",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "221122",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2379.807290101069,
      y: -1859.0466058032534,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cnet",
      type: "node",
      t: [
        {
          t: "Cnet",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1337.5462439645353,
      y: 1260.9996081276795,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Action For Children",
      type: "node",
      t: [
        {
          t: "Action For Children",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "813211",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 934.2520220742526,
      y: -2574.4399047994043,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Morgan Stanley",
      type: "node",
      t: [
        {
          t: "Morgan Stanley",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "523110",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3554.8717024121725,
      y: 206.0775437706293,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ocean Reef Club",
      type: "node",
      t: [
        {
          t: "Ocean Reef Club",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "713940",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1682.6781538466366,
      y: -205.6234056570388,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Southwest Airlines",
      type: "node",
      t: [
        {
          t: "Southwest Airlines",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "481",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1162.293746762094,
      y: 1585.480570059046,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ukrainian Government",
      type: "node",
      t: [
        {
          t: "Ukrainian Government",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["UA"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 358.14803908674253,
      y: 1766.0089032112955,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Swedish Medical Center",
      type: "node",
      t: [
        {
          t: "Swedish Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -132.11560516945747,
      y: -3285.4809991034176,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United States Army",
      type: "node",
      t: [
        {
          t: "United States Army",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "928110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -476.30320189050053,
      y: -2748.379741667391,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of South Florida Health",
      type: "node",
      t: [
        {
          t: "University of South Florida Health",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4664.900423504932,
      y: -1398.760823514628,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "SyriaJOB Ltd.",
      type: "node",
      t: [
        {
          t: "SyriaJOB Ltd.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SY"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 466.7118662062494,
      y: 1393.590035509519,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "AUTOMOBILES CITROEN",
      type: "node",
      t: [
        {
          t: "AUTOMOBILES CITROEN",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["FR"],
        industry: "336111",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1360.8330966955682,
      y: 1137.0308877390917,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Washington University Investment Management Company",
      type: "node",
      t: [
        {
          t: "Washington University Investment Management Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "523110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3937.084687216331,
      y: -1805.907118202534,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Community Bank of Oak Park and River Forest",
      type: "node",
      t: [
        {
          t: "Community Bank of Oak Park and River Forest",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2036.4318598540503,
      y: -1656.4729902253025,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "FIDELITY INVESTMENTS INSTITUTIONAL OPERATIONS COMPANY, INC.",
      type: "node",
      t: [
        {
          t: "FIDELITY INVESTMENTS INSTITUTIONAL OPERATIONS COMPANY, INC.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "523930",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1778.1452789331324,
      y: -1531.4791765129007,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Citigroup Inc",
      type: "node",
      t: [
        {
          t: "Citigroup Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -831.3496731342057,
      y: -654.735339263696,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jobs.sy",
      type: "node",
      t: [
        {
          t: "Jobs.sy",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SY"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 289.11354566195223,
      y: 1503.0633715555805,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "The Ministry of the Interior of Peru",
      type: "node",
      t: [
        {
          t: "The Ministry of the Interior of Peru",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PE"],
        industry: "921190",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 644.3218681903622,
      y: 1126.819914197321,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "King County Public Health",
      type: "node",
      t: [
        {
          t: "King County Public Health",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4416.024726996172,
      y: -1499.1420916853717,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Information Handling Services, Inc.",
      type: "node",
      t: [
        {
          t: "Information Handling Services, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1480.4731909265743,
      y: 1617.700734997984,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Department of the Army",
      type: "node",
      t: [
        {
          t: "US Department of the Army",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "928110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -173.93628731179888,
      y: -3620.263006238636,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Greece Ministry of Foreign Affairs",
      type: "node",
      t: [
        {
          t: "Greece Ministry of Foreign Affairs",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GR"],
        industry: "928120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1076.9636096600307,
      y: 986.7444531107612,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Naver",
      type: "node",
      t: [
        {
          t: "Naver",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["KR"],
        industry: "51",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1936.216400706001,
      y: -1617.0891671585282,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "CTBC BANK CO., LTD.",
      type: "node",
      t: [
        {
          t: "CTBC BANK CO., LTD.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TW"],
        industry: "522110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1564.2660918594102,
      y: -152.23144862640447,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hathway Cable & Datacom Ltd",
      type: "node",
      t: [
        {
          t: "Hathway Cable & Datacom Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "515210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 844.6534479748398,
      y: 1014.7228449363656,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Godiva Chocolatier, Inc.",
      type: "node",
      t: [
        {
          t: "Godiva Chocolatier, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "311351",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -334.5519132750562,
      y: -3383.232328033692,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bon Secours Mary Immaculate Hospital",
      type: "node",
      t: [
        {
          t: "Bon Secours Mary Immaculate Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -452.7199217328766,
      y: -2803.2705748996837,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cook Islands Ministry of Internal Affairs",
      type: "node",
      t: [
        {
          t: "Cook Islands Ministry of Internal Affairs",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CK"],
        industry: "921110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2217.757785489687,
      y: -1930.3938894395105,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Advantage Health Solutions",
      type: "node",
      t: [
        {
          t: "Advantage Health Solutions",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524114",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 949.66772144166,
      y: -780.7857145433259,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Alabama Department of Public Safety",
      type: "node",
      t: [
        {
          t: "Alabama Department of Public Safety",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1295.884567533256,
      y: 1465.2889372474838,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Workplace Health, Safety and Compensation Commission",
      type: "node",
      t: [
        {
          t: "Workplace Health, Safety and Compensation Commission",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "524126",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -513.2880704615118,
      y: -2930.1628367534863,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Freenters",
      type: "node",
      t: [
        {
          t: "Freenters",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "323111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 467.01256105010475,
      y: 1949.2230904787793,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Nortel Networks Corporation",
      type: "node",
      t: [
        {
          t: "Nortel Networks Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "334290",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2626.0659750213817,
      y: 691.7475795152413,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Pret A Manger (usa) Limited",
      type: "node",
      t: [
        {
          t: "Pret A Manger (usa) Limited",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722511",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2946.3256362721822,
      y: -472.11540491183405,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Wheaton Franciscan Services",
      type: "node",
      t: [
        {
          t: "Wheaton Franciscan Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2002.5578172478,
      y: -4109.966006314893,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "State of Florida",
      type: "node",
      t: [
        {
          t: "State of Florida",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 826.7798595843215,
      y: -2394.0699735791422,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Segmark Solutions",
      type: "node",
      t: [
        {
          t: "Segmark Solutions",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541613",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4003.8414500216695,
      y: -1639.5874180013761,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "C.W. ADVERTISING AGENCY LTD",
      type: "node",
      t: [
        {
          t: "C.W. ADVERTISING AGENCY LTD",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "541810",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2814.1146983159215,
      y: -1432.7717623394005,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Albuquerque Police Department",
      type: "node",
      t: [
        {
          t: "Albuquerque Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 281.42588887313923,
      y: 1368.5159211586797,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Antiwar.com",
      type: "node",
      t: [
        {
          t: "Antiwar.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519110",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1456.902051120238,
      y: 1417.9116446867956,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United States Postal Service",
      type: "node",
      t: [
        {
          t: "United States Postal Service",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "491110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2615.166779220266,
      y: 750.3095375478351,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Federal Bureau of Investigation (FBI)",
      type: "node",
      t: [
        {
          t: "US Federal Bureau of Investigation (FBI)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92212",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -277.5481511056464,
      y: -3238.2651669963784,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Regional Medical Center Memphis",
      type: "node",
      t: [
        {
          t: "Regional Medical Center Memphis",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -433.9506724394914,
      y: -2904.4488388867035,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Louisiana State University",
      type: "node",
      t: [
        {
          t: "Louisiana State University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1981.1971439402732,
      y: -3956.0927700937004,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Meghna Petroleum Limited",
      type: "node",
      t: [
        {
          t: "Meghna Petroleum Limited",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BD"],
        industry: "424720",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1356.728972835279,
      y: 1196.465568983791,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sony Music",
      type: "node",
      t: [
        {
          t: "Sony Music",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IT"],
        industry: "512199",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 527.7633823291358,
      y: 1350.203656231769,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Rensselaer County Jail",
      type: "node",
      t: [
        {
          t: "Rensselaer County Jail",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92214",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -183.7874890590599,
      y: -3163.6431087737014,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Falcon",
      type: "node",
      t: [
        {
          t: "University of Falcon",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["VE"],
        industry: "611310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1416.9711608283887,
      y: 1880.6082895458476,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "ExploitHub",
      type: "node",
      t: [
        {
          t: "ExploitHub",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "51919",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1149.1364784320594,
      y: 1070.5275298518845,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hatfield City Council",
      type: "node",
      t: [
        {
          t: "Hatfield City Council",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "92",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2847.3168965290897,
      y: -499.8919617752599,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "eUKHost",
      type: "node",
      t: [
        {
          t: "eUKHost",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "518210",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1637.6640773824074,
      y: 1698.0966492903472,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Department of Justice Northern Ireland",
      type: "node",
      t: [
        {
          t: "Department of Justice Northern Ireland",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "922140",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -867.0265825916103,
      y: -509.83528593777373,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Netflix",
      type: "node",
      t: [
        {
          t: "Netflix",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "532230",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3000.762779156611,
      y: -3225.5965211017538,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Arizona",
      type: "node",
      t: [
        {
          t: "University of Arizona",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1553.1724070844398,
      y: -33.21009426640603,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United States Secret Service",
      type: "node",
      t: [
        {
          t: "United States Secret Service",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922190",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -896.3375738589843,
      y: -677.305106861169,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Nordstrom Federal Savings Banks",
      type: "node",
      t: [
        {
          t: "Nordstrom Federal Savings Banks",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2508.584269518774,
      y: -1609.9147388903511,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "TerraCom",
      type: "node",
      t: [
        {
          t: "TerraCom",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "517911",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -255.6310730089383,
      y: -2637.3854946561855,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "1st Source Bank",
      type: "node",
      t: [
        {
          t: "1st Source Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2317.71589086706,
      y: -2097.8089648609275,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Fuji Xerox Co., Ltd.",
      type: "node",
      t: [
        {
          t: "Fuji Xerox Co., Ltd.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SG"],
        industry: "333316",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 988.4156160656748,
      y: 1097.946132098663,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Scripps College",
      type: "node",
      t: [
        {
          t: "Scripps College",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -351.89581793451134,
      y: -2860.5071411929307,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "openSUSE",
      type: "node",
      t: [
        {
          t: "openSUSE",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 202.0134540620652,
      y: 1643.312492511408,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sun TV",
      type: "node",
      t: [
        {
          t: "Sun TV",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "515120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 995.553362940108,
      y: 2131.9547868275895,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Israel websites",
      type: "node",
      t: [
        {
          t: "Israel websites",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IS"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 843.3581850582432,
      y: 1084.9622548728585,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ilm Ki Dunya",
      type: "node",
      t: [
        {
          t: "Ilm Ki Dunya",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PK"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1911.8199568094217,
      y: -1671.4330514699827,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Mad Mimi",
      type: "node",
      t: [
        {
          t: "Mad Mimi",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "51",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1917.2448464143117,
      y: -1560.5691458900264,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "PNC Bank",
      type: "node",
      t: [
        {
          t: "PNC Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2913.4885960272504,
      y: -1535.1050981320718,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Essex Police Department",
      type: "node",
      t: [
        {
          t: "Essex Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "92219",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 57.41586929256755,
      y: -2528.398969410306,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "West Coast District Health Board",
      type: "node",
      t: [
        {
          t: "West Coast District Health Board",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NZ"],
        industry: "923120",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 386.2191677069475,
      y: -3001.649342944774,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "University of Connecticut",
      type: "node",
      t: [
        {
          t: "University of Connecticut",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1706.7913772036754,
      y: -4187.7128788978025,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Argentinian National Rehabilitation Service",
      type: "node",
      t: [
        {
          t: "Argentinian National Rehabilitation Service",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AR"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1377.3234220132044,
      y: 1703.4862696910222,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "IN Central Bank of India",
      type: "node",
      t: [
        {
          t: "IN Central Bank of India",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "522110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 361.55506560375716,
      y: 1254.5917868722772,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "eHarmony",
      type: "node",
      t: [
        {
          t: "eHarmony",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1978.4077653430104,
      y: -1770.2407782389696,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "German Federal Intelligence Service",
      type: "node",
      t: [
        {
          t: "German Federal Intelligence Service",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["DE"],
        industry: "928110",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3596.414372744248,
      y: 317.5702851944334,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Long Beach",
      type: "node",
      t: [
        {
          t: "City of Long Beach",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "926120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -676.4220847742536,
      y: -540.9707061660974,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Spec's",
      type: "node",
      t: [
        {
          t: "Spec's",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "445310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2390.8050890776317,
      y: -1974.995462095866,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Albany Medical Center",
      type: "node",
      t: [
        {
          t: "Albany Medical Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -351.65530344591116,
      y: -2683.3270579020386,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ireland 65th Battalion, Reserve Defence Forces",
      type: "node",
      t: [
        {
          t: "Ireland 65th Battalion, Reserve Defence Forces",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IE"],
        industry: "928",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1752.4953833188629,
      y: -2420.4004199229184,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "habeas.be",
      type: "node",
      t: [
        {
          t: "habeas.be",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BE"],
        industry: "561",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2387.106955686473,
      y: -1775.1255626400598,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Muscogee County Sheriff Office",
      type: "node",
      t: [
        {
          t: "Muscogee County Sheriff Office",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -571.553737423837,
      y: -2917.3984045061284,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ctrip.com International Ltd",
      type: "node",
      t: [
        {
          t: "Ctrip.com International Ltd",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1754.3374049795466,
      y: -2508.665440245312,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Peruvian Association of Authors and Composers",
      type: "node",
      t: [
        {
          t: "Peruvian Association of Authors and Composers",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PE"],
        industry: "813920",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 495.79078129026743,
      y: 2001.4844107318931,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Time Magazine",
      type: "node",
      t: [
        {
          t: "Time Magazine",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511120",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 473.6299960998813,
      y: 1777.404732882981,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Zabian Anti-Corruption Commision",
      type: "node",
      t: [
        {
          t: "Zabian Anti-Corruption Commision",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["ZM"],
        industry: "561499",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 179.9377110869127,
      y: 1858.6306162335077,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Clay County Magistrate Court",
      type: "node",
      t: [
        {
          t: "Clay County Magistrate Court",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92211",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1912.272604361342,
      y: -2467.848716018992,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "British Ministry of Justice",
      type: "node",
      t: [
        {
          t: "British Ministry of Justice",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1113.1060193816793,
      y: 2086.5186158414917,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "TIAA-CREF (Teachers Insurance and Annuity Association - College Retirement Equities Fund)",
      type: "node",
      t: [
        {
          t: "TIAA-CREF (Teachers Insurance and Annuity Association - College Retirement Equities Fund)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "525110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2980.913211568607,
      y: -3289.1606323978795,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "WHMCS",
      type: "node",
      t: [
        {
          t: "WHMCS",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "541512",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 165.03434516951438,
      y: 1793.3579308201597,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bronx Police Department",
      type: "node",
      t: [
        {
          t: "Bronx Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "9221",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -480.0535348126082,
      y: -3341.483468420432,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "New Jersey Health Department",
      type: "node",
      t: [
        {
          t: "New Jersey Health Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "923120",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -511.7992327364566,
      y: -2811.759734383931,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Legal Aid Ontario",
      type: "node",
      t: [
        {
          t: "Legal Aid Ontario",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "541110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -291.43054632536405,
      y: -3424.471401873847,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Spain People's Party",
      type: "node",
      t: [
        {
          t: "Spain People's Party",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["ES"],
        industry: "813940",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1573.5810509530224,
      y: 1418.742856461854,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Palos Verdes High School",
      type: "node",
      t: [
        {
          t: "Palos Verdes High School",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -432.3577744278482,
      y: -889.7085304511343,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Director's Guild of Canada",
      type: "node",
      t: [
        {
          t: "Director's Guild of Canada",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "813920",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 223.95706322730825,
      y: 1755.9325409207595,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Zimbabwe Ministry of Defense",
      type: "node",
      t: [
        {
          t: "Zimbabwe Ministry of Defense",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["ZW"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 735.3415737914702,
      y: 974.702070578981,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Becton, Dickinson and Company",
      type: "node",
      t: [
        {
          t: "Becton, Dickinson and Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "339112",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -318.92567112698725,
      y: -2996.1151998993323,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cole Taylor Mortgage",
      type: "node",
      t: [
        {
          t: "Cole Taylor Mortgage",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1606.0812889344795,
      y: -60.60445196731007,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Anoka County Human Services",
      type: "node",
      t: [
        {
          t: "Anoka County Human Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "923130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4027.965863035847,
      y: -1585.1606320249625,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "UA Right Sector nationalist movement (banderivets.org.ua)",
      type: "node",
      t: [
        {
          t: "UA Right Sector nationalist movement (banderivets.org.ua)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["UA"],
        industry: "813940",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1394.9025886210543,
      y: 1242.2935528751805,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United States College Hockey Association",
      type: "node",
      t: [
        {
          t: "United States College Hockey Association",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813990",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 342.0499293741482,
      y: 1827.054384147712,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "DENT Neurological Institute",
      type: "node",
      t: [
        {
          t: "DENT Neurological Institute",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -370.6036163421602,
      y: -3314.4637738855013,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Haagen - Dasz",
      type: "node",
      t: [
        {
          t: "Haagen - Dasz",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722513",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2337.2656329789556,
      y: -1649.4148938626386,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Christ Hospital",
      type: "node",
      t: [
        {
          t: "Christ Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1117.8051561540628,
      y: -609.8512039250882,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cintas Corp",
      type: "node",
      t: [
        {
          t: "Cintas Corp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -743.5146310555929,
      y: -522.9373033670081,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Lloyd's Register",
      type: "node",
      t: [
        {
          t: "Lloyd's Register",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "541614",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1081.1899254002437,
      y: -1163.4962484215457,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Department of Veteran Affairs",
      type: "node",
      t: [
        {
          t: "Department of Veteran Affairs",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561990",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1947.4763563229571,
      y: -4087.0808148998494,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ministry of Highways and Infrastructure",
      type: "node",
      t: [
        {
          t: "Ministry of Highways and Infrastructure",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "92",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -259.3684004200977,
      y: -3090.4313426838567,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Pemex",
      type: "node",
      t: [
        {
          t: "Pemex",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["MX"],
        industry: "324110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 390.51583571914466,
      y: 2110.8384804503467,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Loongson",
      type: "node",
      t: [
        {
          t: "Loongson",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CN"],
        industry: "322299",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 509.53865043069754,
      y: 1222.012163232368,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "FI Finnish Foreign Ministry",
      type: "node",
      t: [
        {
          t: "FI Finnish Foreign Ministry",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["FI"],
        industry: "928120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2627.1673561657726,
      y: 808.8297835996809,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ciara Foundation in Venezuela (ciara.gob.ve)",
      type: "node",
      t: [
        {
          t: "Ciara Foundation in Venezuela (ciara.gob.ve)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["VE"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 240.24742507259816,
      y: 1946.841182785456,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Lloyds Banking Group plc",
      type: "node",
      t: [
        {
          t: "Lloyds Banking Group plc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "522110",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -919.4258532728088,
      y: -1993.1475835702695,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "European Investment Bank",
      type: "node",
      t: [
        {
          t: "European Investment Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["LU"],
        industry: "926110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 898.8398585865207,
      y: 1978.746349429698,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Royal Free Hospital",
      type: "node",
      t: [
        {
          t: "Royal Free Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -68.983285050022,
      y: -3218.338141532817,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Arizona Department of Public Safety",
      type: "node",
      t: [
        {
          t: "Arizona Department of Public Safety",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1027.7899037540083,
      y: 1144.2489212530681,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Michigan State University",
      type: "node",
      t: [
        {
          t: "Michigan State University",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 696.0225906658152,
      y: 1986.3563055932855,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Police Department of Littleton, Massachusetts",
      type: "node",
      t: [
        {
          t: "Police Department of Littleton, Massachusetts",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -483.66750353929365,
      y: -2871.743672299794,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Dr. Sandra Bujanda-Wagner",
      type: "node",
      t: [
        {
          t: "Dr. Sandra Bujanda-Wagner",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -334.5947902612088,
      y: -2800.15188560289,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "NZ Southern District Health Board",
      type: "node",
      t: [
        {
          t: "NZ Southern District Health Board",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NZ"],
        industry: "62",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -70.81683092371918,
      y: -2532.2927448601745,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Belgian port of Antwerp",
      type: "node",
      t: [
        {
          t: "Belgian port of Antwerp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BE"],
        industry: "488310",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2331.0949712928905,
      y: -1754.6319551107354,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Skrillex",
      type: "node",
      t: [
        {
          t: "Skrillex",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "711130",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 439.96735426391206,
      y: 1453.4286845978759,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Victorian Institute of Forensic Medicine",
      type: "node",
      t: [
        {
          t: "Victorian Institute of Forensic Medicine",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "621",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -536.224278630576,
      y: -642.916169315451,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Seattle & King County Public Health Center",
      type: "node",
      t: [
        {
          t: "Seattle & King County Public Health Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "62",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -882.6117394159414,
      y: -617.6749414612532,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Israeli Postal Service",
      type: "node",
      t: [
        {
          t: "Israeli Postal Service",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 221.2398182005129,
      y: 1815.4708743933497,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Subway",
      type: "node",
      t: [
        {
          t: "Subway",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722513",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4087.272960250055,
      y: -1725.5121141937525,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "German Chamber of Commerce",
      type: "node",
      t: [
        {
          t: "German Chamber of Commerce",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["DE"],
        industry: "813910",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 523.0972590309193,
      y: 1096.8387924651006,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hope Hospice",
      type: "node",
      t: [
        {
          t: "Hope Hospice",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621610",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1827.879544973451,
      y: -115.66289783470393,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "openssl.org",
      type: "node",
      t: [
        {
          t: "openssl.org",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["Unknown"],
        industry: "541512",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -373.80537752168584,
      y: -901.4899748683224,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Publishers Circulation Fulfillment",
      type: "node",
      t: [
        {
          t: "Publishers Circulation Fulfillment",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "492",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -214.6036065201297,
      y: -3341.4384217134225,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Append-Hc.com",
      type: "node",
      t: [
        {
          t: "Append-Hc.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IR"],
        industry: "518",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 316.9419211333566,
      y: 1710.674345042059,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Irvine Scientific",
      type: "node",
      t: [
        {
          t: "Irvine Scientific",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "339112",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 3948.066601953238,
      y: -1601.0186149786837,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "EnerVest Operating",
      type: "node",
      t: [
        {
          t: "EnerVest Operating",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "211111",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1792.0304017913952,
      y: -240.29745079883332,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Australian Reserve Bank",
      type: "node",
      t: [
        {
          t: "Australian Reserve Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "521110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1037.0396319418437,
      y: -694.4113710889387,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Vancouver Coastal Health",
      type: "node",
      t: [
        {
          t: "Vancouver Coastal Health",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "622110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -409.06133183178326,
      y: -2843.7643686023953,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Destiny Software",
      type: "node",
      t: [
        {
          t: "Destiny Software",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541511",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2087.323140519643,
      y: -1810.0219690951562,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "School District No 36 (Surrey)",
      type: "node",
      t: [
        {
          t: "School District No 36 (Surrey)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "611110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 165.40814819264824,
      y: -2567.6599531883917,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "UK Home Office",
      type: "node",
      t: [
        {
          t: "UK Home Office",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1943.3332966956377,
      y: -2244.8945236201193,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "New York Ironworks",
      type: "node",
      t: [
        {
          t: "New York Ironworks",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "423910",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1307.429341091321,
      y: 1110.3118905687825,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Gulf Coast Health Care Services Inc",
      type: "node",
      t: [
        {
          t: "Gulf Coast Health Care Services Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621610",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1502.5211431416178,
      y: -64.68130978938188,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Healthcare.gov website",
      type: "node",
      t: [
        {
          t: "Healthcare.gov website",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 263.80609241104275,
      y: 1311.6558883903972,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Acme Barricades Lc",
      type: "node",
      t: [
        {
          t: "Acme Barricades Lc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "332999",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2093.380626317444,
      y: -1929.4586707584413,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "California Department of Child Support Services",
      type: "node",
      t: [
        {
          t: "California Department of Child Support Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "624190",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -511.52030202925744,
      y: -588.6568607071604,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Leeds City Council",
      type: "node",
      t: [
        {
          t: "Leeds City Council",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "921110",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1530.1309359716865,
      y: 73.37188170381614,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Active Community Team",
      type: "node",
      t: [
        {
          t: "Active Community Team",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "624",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1831.692505911773,
      y: -2578.7038055115822,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Cook Islands Business Trade Investment Board",
      type: "node",
      t: [
        {
          t: "Cook Islands Business Trade Investment Board",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CK"],
        industry: "921110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1928.671773189496,
      y: -1894.880703232841,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Australian Secret Intelligence Service",
      type: "node",
      t: [
        {
          t: "Australian Secret Intelligence Service",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "928110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 261.1616380972007,
      y: 1635.355180981839,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Enki Corp",
      type: "node",
      t: [
        {
          t: "Enki Corp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "518210",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 13.53624424689633,
      y: -1518.2520031647273,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Council on Foreign Relations",
      type: "node",
      t: [
        {
          t: "Council on Foreign Relations",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "928120",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 720.8078262179374,
      y: 1922.0794651379038,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "St. Joseph License Office",
      type: "node",
      t: [
        {
          t: "St. Joseph License Office",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561990",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 881.3291094906258,
      y: -2546.766141730564,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Wrigley Field",
      type: "node",
      t: [
        {
          t: "Wrigley Field",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722511",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -813.6597503404137,
      y: -1822.2743050685158,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National Armed Forces of the Bolivarian Republic of Venezuela",
      type: "node",
      t: [
        {
          t: "National Armed Forces of the Bolivarian Republic of Venezuela",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["VE"],
        industry: "928110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1136.1292872975478,
      y: 1847.3194595981531,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tallahassee Memorial HealthCare",
      type: "node",
      t: [
        {
          t: "Tallahassee Memorial HealthCare",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -562.1194715594024,
      y: -3266.8015243252653,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Government of the Phillippines",
      type: "node",
      t: [
        {
          t: "Government of the Phillippines",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["PH"],
        industry: "922",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 197.19521958533346,
      y: 1702.6912995501225,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "nychiefs.org",
      type: "node",
      t: [
        {
          t: "nychiefs.org",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813410",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 953.6904337655178,
      y: 965.8582131398848,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Valley National Bancorp",
      type: "node",
      t: [
        {
          t: "Valley National Bancorp",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1795.276704464225,
      y: -1686.5294548998004,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Fidelity Investments Institutional Services Company, Inc",
      type: "node",
      t: [
        {
          t: "Fidelity Investments Institutional Services Company, Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "523999",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1804.8525303841006,
      y: -3050.775753736083,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "AVEGID",
      type: "node",
      t: [
        {
          t: "AVEGID",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["VE"],
        industry: "813",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 379.36065476035196,
      y: 1693.6118246386313,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "MagnaGamer",
      type: "node",
      t: [
        {
          t: "MagnaGamer",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["JP"],
        industry: "511210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 495.7049262851169,
      y: 1283.1044914531794,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Facebook Inc",
      type: "node",
      t: [
        {
          t: "Facebook Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "517919",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 911.3569811280277,
      y: -2458.6618598848404,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Community Hospital of Upland, PA",
      type: "node",
      t: [
        {
          t: "Community Hospital of Upland, PA",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "622110",
        size: "Small",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -869.99228100135,
      y: -1285.1295797373332,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Suddenlink Communications",
      type: "node",
      t: [
        {
          t: "Suddenlink Communications",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "517",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -535.5971592951473,
      y: -3320.0794704206905,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of New York Fire Department",
      type: "node",
      t: [
        {
          t: "City of New York Fire Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922160",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2742.7215729812106,
      y: -1218.7002533932332,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "HN Honduras Ministry of Industry and Trade",
      type: "node",
      t: [
        {
          t: "HN Honduras Ministry of Industry and Trade",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["HN"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1534.1695832824462,
      y: 1878.9914917129072,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Eastern Health Authority",
      type: "node",
      t: [
        {
          t: "Eastern Health Authority",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "621111",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1042.0764116537744,
      y: -579.9399089829258,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "North Atlantic Treaty Organization",
      type: "node",
      t: [
        {
          t: "North Atlantic Treaty Organization",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BE"],
        industry: "813940",
        size: "Large",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 559.8741239481328,
      y: 88.93691393085419,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "State of Alabama",
      type: "node",
      t: [
        {
          t: "State of Alabama",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2077.1066629958177,
      y: -1700.1065144907084,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "ElectraCard Services",
      type: "node",
      t: [
        {
          t: "ElectraCard Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IN"],
        industry: "541511",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2182.62019117216,
      y: -2110.311546130648,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "LABusinessConnect.com",
      type: "node",
      t: [
        {
          t: "LABusinessConnect.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "51919",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1551.6154363669398,
      y: 1524.73579650604,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Whaleoil (Cameron Slater)",
      type: "node",
      t: [
        {
          t: "Whaleoil (Cameron Slater)",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NZ"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 373.9159436628445,
      y: 2168.1411095020594,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Diagnostics For You",
      type: "node",
      t: [
        {
          t: "Diagnostics For You",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "621111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -616.99510962474,
      y: -659.1221910598829,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tribune Co.",
      type: "node",
      t: [
        {
          t: "Tribune Co.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 494.73975375378313,
      y: -419.55657877606495,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "ANZ Bank",
      type: "node",
      t: [
        {
          t: "ANZ Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "522110",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1018.6376310987794,
      y: -804.6635702461094,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "VZ Government",
      type: "node",
      t: [
        {
          t: "VZ Government",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["VE"],
        industry: "921",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 659.9900668015775,
      y: 1204.984779033177,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "State Farm Insurance",
      type: "node",
      t: [
        {
          t: "State Farm Insurance",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "524126",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -403.85401773058356,
      y: -2956.0111817937645,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "OMNI Community Credit Union,",
      type: "node",
      t: [
        {
          t: "OMNI Community Credit Union,",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2216.909240025774,
      y: -1870.6767663565738,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sinai Medical Center of Jersey City LLC",
      type: "node",
      t: [
        {
          t: "Sinai Medical Center of Jersey City LLC",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "621111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2713.7313584623907,
      y: -243.04690940027922,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sacremento Regional Transit",
      type: "node",
      t: [
        {
          t: "Sacremento Regional Transit",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "485111",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2797.6191735049324,
      y: -684.2391356911239,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: '"ybs-bank.com" a Malaysian imitation of the real Yorkshire Bank website',
      type: "node",
      t: [
        {
          t: '"ybs-bank.com" a Malaysian imitation of the real Yorkshire Bank website',
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["MY"],
        industry: "000",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 468.0289250052597,
      y: 1072.9923583095315,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tweetdeck, Inc.",
      type: "node",
      t: [
        {
          t: "Tweetdeck, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2226.4044049185904,
      y: -2047.017162442215,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "China Internet Network Information Center",
      type: "node",
      t: [
        {
          t: "China Internet Network Information Center",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CN"],
        industry: "518",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 382.88178367059777,
      y: 1190.9758702624722,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bank Muscat",
      type: "node",
      t: [
        {
          t: "Bank Muscat",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["OM"],
        industry: "522110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2275.760906079992,
      y: -1732.4434107316483,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Visa Inc",
      type: "node",
      t: [
        {
          t: "Visa Inc",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 561.0912581725497,
      y: 1162.1693186392604,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bank of America Corporation",
      type: "node",
      t: [
        {
          t: "Bank of America Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2230.6617510793694,
      y: -1771.3004151156629,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National Health Service",
      type: "node",
      t: [
        {
          t: "National Health Service",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "622110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -466.3020548090424,
      y: -2966.823142808667,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Halifax Bank",
      type: "node",
      t: [
        {
          t: "Halifax Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "522110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2362.006688268668,
      y: -1703.581040860311,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Canadian Naval Intelligence",
      type: "node",
      t: [
        {
          t: "Canadian Naval Intelligence",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "928110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -482.02545369896325,
      y: -3279.9896279187756,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Minnesota Department of Natural Resources",
      type: "node",
      t: [
        {
          t: "Minnesota Department of Natural Resources",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "924120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -120.2143078476031,
      y: -3646.020297749961,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Logica",
      type: "node",
      t: [
        {
          t: "Logica",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SE"],
        industry: "54",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1978.2651233243478,
      y: -1861.8542820380171,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "US Department of the Navy",
      type: "node",
      t: [
        {
          t: "US Department of the Navy",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "928110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2794.5117485276487,
      y: 785.6509344598858,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "UA Ukraine telecommunication systems",
      type: "node",
      t: [
        {
          t: "UA Ukraine telecommunication systems",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["UA"],
        industry: "517210",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2821.5006611622393,
      y: 732.5140544573394,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "LSU Health",
      type: "node",
      t: [
        {
          t: "LSU Health",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -396.7296527767405,
      y: -3187.8612867584857,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ebay",
      type: "node",
      t: [
        {
          t: "Ebay",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "454112",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1330.2061310113554,
      y: 1519.489288597426,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Queen Elizabeth Hospital",
      type: "node",
      t: [
        {
          t: "Queen Elizabeth Hospital",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["HK"],
        industry: "622110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -913.2223601432761,
      y: -1186.5826970559096,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Residents Property Tax and Rent Refund Circuit Breaker Program",
      type: "node",
      t: [
        {
          t: "Residents Property Tax and Rent Refund Circuit Breaker Program",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -809.6916206659544,
      y: -1257.4808101165358,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Central City Concern",
      type: "node",
      t: [
        {
          t: "Central City Concern",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "561311",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 376.1750327346899,
      y: -3087.8658086369173,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Federal Emergency Management Agency",
      type: "node",
      t: [
        {
          t: "Federal Emergency Management Agency",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92219",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1075.2709345301887,
      y: 2226.4618050521985,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Texas Board of Professional Land Surveying",
      type: "node",
      t: [
        {
          t: "Texas Board of Professional Land Surveying",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 356.4597071351393,
      y: 1889.7662840465382,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Michaels Stores, Inc.",
      type: "node",
      t: [
        {
          t: "Michaels Stores, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "451120",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2341.842334041428,
      y: -2043.3028686457155,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "OpenX",
      type: "node",
      t: [
        {
          t: "OpenX",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1713.9359929819566,
      y: -1531.5461798439892,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Parametric Technology Corporation",
      type: "node",
      t: [
        {
          t: "Parametric Technology Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "5112",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2105.323779312075,
      y: -1752.6207262531052,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Jersey City Public School District",
      type: "node",
      t: [
        {
          t: "Jersey City Public School District",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1231.10319164079,
      y: -1074.825273986056,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "National University of Singapore",
      type: "node",
      t: [
        {
          t: "National University of Singapore",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["SG"],
        industry: "611310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 303.3891315302533,
      y: 1231.5875312427297,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Shanghai Municipal Health Bureau",
      type: "node",
      t: [
        {
          t: "Shanghai Municipal Health Bureau",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CN"],
        industry: "923120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2859.9743750734424,
      y: -558.1011672553468,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Islamic Network",
      type: "node",
      t: [
        {
          t: "Islamic Network",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "8131",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 248.17230459639495,
      y: 1254.177363759346,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "California Department of Healthcare Services",
      type: "node",
      t: [
        {
          t: "California Department of Healthcare Services",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "9231",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -465.2800538612555,
      y: -3178.922437968268,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "FENADEPOL",
      type: "node",
      t: [
        {
          t: "FENADEPOL",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["BR"],
        industry: "922120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 206.17155125307454,
      y: 1327.310886974652,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "CVS Caremark",
      type: "node",
      t: [
        {
          t: "CVS Caremark",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "446110",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -338.63770447010666,
      y: -3461.1309518862254,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Guard",
      type: "node",
      t: [
        {
          t: "Security guard",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        internal: true,
        type: "actor",
      },
      c: "white",
      fi: {
        t: "fas fa-users",
        c: "rgb(229, 227, 227)",
      },
      e: 1.6931471805599454,
      donut: {
        v: [0, 0, 1, 0, 0, 0, 0, 0],
        c: [
          "rgb(255, 0, 13)",
          "rgb(252, 132, 39)",
          "rgb(255, 207, 9)",
          "rgb(33, 252, 13)",
          "rgb(0, 253, 255)",
          "rgb(229, 153, 255)",
          "rgb(227, 19, 254)",
          "rgb(186, 153, 15)",
        ],
        b: "#555",
        bw: 1,
        w: 10,
      },
      x: 4456.679017815038,
      y: -1710.7915061932918,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "RISCO Group",
      type: "node",
      t: [
        {
          t: "RISCO Group",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "5616",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4435.257901122403,
      y: -1805.6737941872275,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hale & Hearty Soup",
      type: "node",
      t: [
        {
          t: "Hale & Hearty Soup",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "424410",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1232.3043269943223,
      y: -1892.8773131708303,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ralph Lauren Corporation",
      type: "node",
      t: [
        {
          t: "Ralph Lauren Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "315220",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2456.1199527509284,
      y: -1548.8521191375776,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Sprouts Farmers Market",
      type: "node",
      t: [
        {
          t: "Sprouts Farmers Market",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "445110",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2238.9009717833,
      y: -1516.458349648794,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "unnamed mall",
      type: "node",
      t: [
        {
          t: "unnamed mall",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["MY"],
        industry: "522320",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2125.8402431953073,
      y: -2168.9746991058205,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Bangkok Bank PCL",
      type: "node",
      t: [
        {
          t: "Bangkok Bank PCL",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["TH"],
        industry: "522110",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2529.4206449127078,
      y: -1792.213611871709,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Salt Lake City Police Department",
      type: "node",
      t: [
        {
          t: "Salt Lake City Police Department",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 218.66477224109644,
      y: 1526.552303257381,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "United Nations in Honduras",
      type: "node",
      t: [
        {
          t: "United Nations in Honduras",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["HN"],
        industry: "928120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 140.52075976882702,
      y: 1544.9303551155763,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ruby Tuesday",
      type: "node",
      t: [
        {
          t: "Ruby Tuesday",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "722",
        size: "25001 to 50000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2942.6493662930143,
      y: -3238.4696803038405,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Ministry of Communications and Information Technologies of the Republic of Azerbaijan",
      type: "node",
      t: [
        {
          t: "Ministry of Communications and Information Technologies of the Republic of Azerbaijan",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AZ"],
        industry: "517911",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 539.9258061459568,
      y: 1036.0013199939485,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Mo Money Taxes",
      type: "node",
      t: [
        {
          t: "Mo Money Taxes",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541213",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -940.5136679424186,
      y: -602.7646373266148,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "DENSO CORPORATION",
      type: "node",
      t: [
        {
          t: "DENSO CORPORATION",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["JP"],
        industry: "336390",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -596.9466874340042,
      y: -1202.7368632503994,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Hertfordshire Police",
      type: "node",
      t: [
        {
          t: "Hertfordshire Police",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "922120",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -259.11465525058975,
      y: -3301.5842825988434,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "UK Army",
      type: "node",
      t: [
        {
          t: "UK Army",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "928110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2275.3584460369257,
      y: -2080.8775893363795,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Fazio Mechanical Services Inc.",
      type: "node",
      t: [
        {
          t: "Fazio Mechanical Services Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "238220",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2288.690059771368,
      y: -1614.0224898637562,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Davidmorgan.com",
      type: "node",
      t: [
        {
          t: "Davidmorgan.com",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "454",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2227.7108744261004,
      y: -2239.3693308587585,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Westboro Baptist Church",
      type: "node",
      t: [
        {
          t: "Westboro Baptist Church",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "813110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1536.9729587153533,
      y: 1371.5954715089783,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Beta Technology, Inc.",
      type: "node",
      t: [
        {
          t: "Beta Technology, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "325612",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2844.1722428593803,
      y: -1338.1551539469724,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "City of Joburg",
      type: "node",
      t: [
        {
          t: "City of Joburg",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["ZA"],
        industry: "92",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1841.5276628535112,
      y: -1542.7516257348802,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Amcal Pharmacy",
      type: "node",
      t: [
        {
          t: "Amcal Pharmacy",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AU"],
        industry: "446110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 4584.37844838975,
      y: -1576.024135949443,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "HM PASSPORT OFFICE",
      type: "node",
      t: [
        {
          t: "HM PASSPORT OFFICE",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "921120",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -534.8170827045292,
      y: -3110.187260524713,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "The Boeing Company",
      type: "node",
      t: [
        {
          t: "The Boeing Company",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "336411",
        size: "Over 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -511.76558989138357,
      y: -1136.8544185902483,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "High Point Enterprises",
      type: "node",
      t: [
        {
          t: "High Point Enterprises",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511110",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1872.9001326064426,
      y: -4170.086287333688,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "1000 Genomes Project",
      type: "node",
      t: [
        {
          t: "1000 Genomes Project",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["GB"],
        industry: "541712",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -323.9791787616996,
      y: -3152.469362780386,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Microsoft Corporation",
      type: "node",
      t: [
        {
          t: "Microsoft Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "511210",
        size: "50001 to 100000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1103.6684763895773,
      y: 1528.0045596835707,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Egyptian Government",
      type: "node",
      t: [
        {
          t: "Egyptian Government",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["EG"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 648.1197155873765,
      y: 996.7843351948914,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "C.R. Bard, Inc.",
      type: "node",
      t: [
        {
          t: "C.R. Bard, Inc.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "339112",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -524.0449878059794,
      y: -3168.7099071958332,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "UN in armena",
      type: "node",
      t: [
        {
          t: "UN in armena",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["AM"],
        industry: "928120",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1507.4330681204228,
      y: 1757.101433894206,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Wachovia Bank",
      type: "node",
      t: [
        {
          t: "Wachovia Bank",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "522110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -2028.216537833856,
      y: -4056.206232544406,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "New York University Asian/Pacific/American Institute",
      type: "node",
      t: [
        {
          t: "New York University Asian/Pacific/American Institute",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "611310",
        size: "10001 to 25000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 423.7418911252382,
      y: 1996.151767495232,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Pizza Hut",
      type: "node",
      t: [
        {
          t: "Pizza Hut",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["ES"],
        industry: "722511",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 1054.415467189328,
      y: 2097.663325466133,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Digital Playground",
      type: "node",
      t: [
        {
          t: "Digital Playground",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "512110",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 600.4076555038723,
      y: 1037.0342810408201,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Virginia Department of State Police",
      type: "node",
      t: [
        {
          t: "Virginia Department of State Police",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "922120",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -142.16113217717225,
      y: -3344.1765022318054,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Tiffany & Co.",
      type: "node",
      t: [
        {
          t: "Tiffany & Co.",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "448310",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -983.2877338522599,
      y: -476.3336549792143,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Elections New Brunswick",
      type: "node",
      t: [
        {
          t: "Elections New Brunswick",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["CA"],
        industry: "921190",
        size: "11 to 100",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2809.0709828570043,
      y: -375.35787713634,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Accident Compensation Corporation",
      type: "node",
      t: [
        {
          t: "Accident Compensation Corporation",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["NZ"],
        industry: "524114",
        size: "1001 to 10000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 2125.875155293972,
      y: -2349.6263738389152,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Twitter",
      type: "node",
      t: [
        {
          t: "Twitter",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "519130",
        size: "101 to 1000",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 684.3966478258562,
      y: 2323.447925294895,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Israeli Government websites",
      type: "node",
      t: [
        {
          t: "Israeli Government websites",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["IL"],
        industry: "921110",
        size: "Unknown",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: 810.4441452332608,
      y: 2126.814783087515,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
    {
      id: "Instant Refund Tax Service",
      type: "node",
      t: [
        {
          t: "Instant Refund Tax Service",
          fs: "auto",
          textWrap: "normal",
          position: {
            vertical: "middle",
            horizontal: "centre",
          },
          fc: "black",
        },
      ],
      d: {
        country: ["US"],
        industry: "541990",
        size: "1 to 10",
        type: "victim",
      },
      c: "#d5d7d8",
      b: "#555",
      x: -1923.619452068795,
      y: -3971.5311430214842,
      bw: 2,
      fbc: "rgba(0,0,0,0.0)",
    },
  ],
  combos: {
    nodes: [],
    links: [],
  },
  reveal: [],
  viewSettings: {
    width: 850,
    height: 630,
    zoom: 0.08204041416504261,
    offsetX: 382.9427508071737,
    offsetY: 413.16159590124937,
  },
};
<!doctype html>
<html lang="en" style="background-color: #2d383f">
  <head>
    <meta charset="utf-8" />
    <title>Filter Data Breaches</title>
    <link rel="stylesheet" type="text/css" href="@ci/theme/kl/css/keylines.css" />
    <link rel="stylesheet" type="text/css" href="@ci/theme/kl/css/minimalsdk.css" />
    <link rel="stylesheet" type="text/css" href="@ci/theme/kl/css/sdk-layout.css" />
    <link rel="stylesheet" type="text/css" href="@ci/theme/kl/css/demo.css" />
    <link
      rel="stylesheet"
      type="text/css"
      href="@fortawesome/[email protected]/css/fontawesome.css"
    />
    <link
      rel="stylesheet"
      type="text/css"
      href="@fortawesome/[email protected]/css/solid.css"
    />
    <link rel="stylesheet" type="text/css" href="databreaches.css" />
    <link rel="stylesheet" href="./style.css" />
  </head>
  <body>
    <div id="klchart" class="klchart klchart-timebar"></div>
    <div id="kltimebar" class="kltimebar"></div>
    <script type="module" src="./code.js"></script>
  </body>
</html>
ul.legend {
  margin-top: 14px;
  margin-bottom: 15px;
  list-style: none;
  padding: 0px;
}

ul.legend li {
  height: 30px;
}
ul.legend input {
  margin-top: 9px;
}
ul.legend span.color-legend {
  color: #fff;
  display: inline-block;
  font-weight: bold;
  margin-right: 5px;
  margin-left: 0px;
  padding: 4px;
  width: 28px;
  height: 28px;
  border-radius: 28px;
}

.highlight {
  font-weight: bold;
}

.color-legend {
  margin-left: 5px;
}

#victimName {
  font-size: 14px;
}

.typeahead {
  max-width: 161px;
  min-width: 161px;
  border: 1px solid #ccc;
}

.typeahead li {
  font-size: 14px;
  background-color: transparent;
  padding: 2px 5px;
  width: 100%;
}
.typeahead li a {
  color: #009968;
  width: 100%;
}
.typeahead li:hover a {
  color: #fff;
}
.typeahead li.active a {
  color: #fff;
}
.typeahead li.active {
  background-color: #009968;
}

.popover {
  display: none;
  height: 80px;
  width: 250px;
  font-size: 16px;
  line-height: 16px;
  margin: 0px;
  border: 1px solid #ccc;
  z-index: 1000;
  margin-bottom: -80px;
}

.highlight {
  font-weight: bold;
}

.klchart,
#fullscreen.fullscreenrow .cichart,
#fullscreen.fullscreenrow .klchart {
  border: none;
  background-color: #2d383f;
}

.kltimebar {
  border: none;
  border-top: dashed 1px grey;
  background-color: #2d383f;
}

.popover .popover-title {
  padding: 4px;
  margin: 0px;
  font-size: 16px;
  line-height: 16px;
  width: 100%;
}

.popover .popover-content {
  padding: 4px;
  margin: 0px;
  font-size: 14px;
  line-height: 14px;
  background-color: #fff;
  height: 54px;
  width: 100%;
}

.arrow {
  background-color: #fff;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transform: translateX(244px) translateY(35px) rotateZ(45deg);
  width: 10px;
  height: 10px;
  position: absolute;
}

Terms of use

These terms do not alter or supersede any existing agreements between you (or your employer) and us.

By accessing or using any Content you agree to be bound by these Terms of Use. Please review these terms carefully before using the website.

The contents of this website, including but not limited to any text, code samples, API references, schemas, interactive tools, and other materials (collectively, the 'Content'), are made available for informational and internal evaluation purposes only. All intellectual property rights in the Content are reserved. No licence is granted to use the Content for any commercial purpose, or to copy, distribute, modify, reverse-engineer, or incorporate any part of the Content into any product or service, without our prior written consent.

This Content is provided “as is” and “as available,” without any representations, warranties, or guarantees of any kind, whether express or implied, including but not limited to implied warranties of merchantability, fitness for a particular purpose, non-infringement, or accuracy. To the fullest extent permitted by applicable law, we expressly exclude and disclaim all implied warranties, conditions, and other terms that might otherwise be implied.

We disclaim all liability for any loss or damage, whether direct, indirect, incidental, consequential, or otherwise, arising from any reliance placed on the Content or from your use of it, to the fullest extent permitted by applicable law. By continuing to access or use the Content, you acknowledge and agree to these terms.