and
+{% for chart in charts %}
+ {{ echarts_container(chart) }}
+{% endfor %}
+
+
+
diff --git a/pyecharts/templates/simple_chart.html b/pyecharts/templates/simple_chart.html
new file mode 100644
index 000000000..cdcf4a9b6
--- /dev/null
+++ b/pyecharts/templates/simple_chart.html
@@ -0,0 +1,12 @@
+
+
+
+
+
{{ chart.page_title }}
+ {{ echarts_js_dependencies(chart) }}
+
+
+ {{ echarts_container(chart) }}
+ {{ echarts_js_content(chart) }}
+
+
\ No newline at end of file
diff --git a/pyecharts/templates/simple_page.html b/pyecharts/templates/simple_page.html
new file mode 100644
index 000000000..85118962d
--- /dev/null
+++ b/pyecharts/templates/simple_page.html
@@ -0,0 +1,14 @@
+
+
+
+
+
{{ page.page_title }}
+ {{ echarts_js_dependencies(page) }}
+
+
+{% for chart in page %}
+ {{ echarts_container(chart) }}
+{% endfor %}
+{{ echarts_js_content(*page) }}
+
+
\ No newline at end of file
diff --git a/pyecharts/temple.py b/pyecharts/temple.py
deleted file mode 100644
index 79e1b7780..000000000
--- a/pyecharts/temple.py
+++ /dev/null
@@ -1,143 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-#coding=utf-8
-
-_temple = """
-
-
-
-
-
-
ECharts
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-"""
-
-_temple_wd = """
-
-
-
-
-
-
ECharts
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-"""
-
-temple = """
-
-
-
-
-
-
ECharts
-
-
-
-
-
-
-
-
-
-
-
-
-"""
\ No newline at end of file
diff --git a/pyecharts/utils.py b/pyecharts/utils.py
new file mode 100644
index 000000000..62162cc3c
--- /dev/null
+++ b/pyecharts/utils.py
@@ -0,0 +1,106 @@
+# coding=utf-8
+from __future__ import unicode_literals
+
+import codecs
+import datetime
+import os
+import json
+
+
+def get_resource_dir(*paths):
+ """
+
+ :param path:
+ :return:
+ """
+ current_path = os.path.dirname(__file__)
+ resource_path = os.path.join(current_path, *paths)
+ return resource_path
+
+
+def write_utf8_html_file(file_name, html_content):
+ """
+
+ :param file_name:
+ :param html_content:
+ :return:
+ """
+ with codecs.open(file_name, 'w+', encoding='utf-8') as f:
+ f.write(html_content)
+
+
+class UnknownTypeEncoder(json.JSONEncoder):
+ """
+ UnknownTypeEncoder`类用于处理数据的编码,使其能够被正常的序列化
+ """
+
+ def default(self, obj):
+ if isinstance(obj, (datetime.datetime, datetime.date)):
+ return obj.isoformat()
+ else:
+ # Pandas and Numpy lists
+ try:
+ return obj.astype(float).tolist()
+ except Exception:
+ try:
+ return obj.astype(str).tolist()
+ except Exception:
+ return json.JSONEncoder.default(self, obj)
+
+
+def json_dumps(data, indent=0):
+ """ json 序列化编码处理
+
+ :param data: 字典数据
+ :param indent: 缩进量
+ """
+ return json.dumps(data, indent=indent, cls=UnknownTypeEncoder)
+
+
+def to_css_length(x):
+ """
+ Return the standard length string of css.
+ It's compatible with number values in old versions.
+
+ :param x:
+ :return:
+ """
+ if isinstance(x, (int, float)):
+ return '{}px'.format(x)
+ else:
+ return x
+
+
+def merge_js_dependencies(*chart_or_name_list):
+ """
+ Merge multiple dependencies to a total list.
+ This will ensure the order and unique in the items.
+
+ :param chart_or_name_list:
+ :return: A list containing dependency items.
+ """
+ front_must_items = ['echarts'] # items which must be included.
+ front_optional_items = ['echartsgl']
+ dependencies = []
+ fist_items = set()
+
+ def _add(_items):
+ if _items in front_must_items:
+ pass
+ elif _items in front_optional_items:
+ fist_items.add(_items)
+ elif _items not in dependencies:
+ dependencies.append(_items)
+
+ for d in chart_or_name_list:
+ if hasattr(d, 'js_dependencies'):
+ for x in d.js_dependencies:
+ _add(x)
+ elif isinstance(d, (list, tuple, set)):
+ for x in d:
+ _add(x)
+ else:
+ _add(d)
+ # items which should be included in front part.
+ fol = [x for x in front_optional_items if x in fist_items]
+ return front_must_items + fol + dependencies
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 000000000..ef6507766
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,5 @@
+jinja2>=2.8
+future
+pillow
+lml>=0.0.2
+jupyter-echarts-pypkg>=0.1.0
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 000000000..2a9acf13d
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,2 @@
+[bdist_wheel]
+universal = 1
diff --git a/setup.py b/setup.py
index 0bb40653d..71c456ae9 100644
--- a/setup.py
+++ b/setup.py
@@ -1,22 +1,43 @@
+# coding=utf-8
+import os
+from setuptools import setup, find_packages
-try:
- from setuptools import setup
-except ImportError:
- from distutils.core import setup
-import pyecharts.__version__ as about
+__title__ = 'pyecharts'
+__description__ = 'Python echarts, make charting easier'
+__url__ = 'https://github.com/chenjiandongx/pyecharts'
+__author_email__ = 'chenjiandongx@qq.com'
+__license__ = 'MIT'
+
+__requires__ = ['pillow',
+ 'jinja2',
+ 'future',
+ 'jupyter-echarts-pypkg==0.1.0',
+ 'lml==0.0.2']
+
+__keywords__ = ['Echarts',
+ 'charts',
+ 'plotting-tool']
+
+# Load the package's _version.py module as a dictionary.
+here = os.path.abspath(os.path.dirname(__file__))
+about = {}
+with open(os.path.join(here, __title__, '_version.py')) as f:
+ exec(f.read(), about)
setup(
- name=about.__title__,
- version=about.__version__,
- description=about.__description__,
- url=about.__url__,
- author=about.__author__,
- author_email=about.__author_email__,
- license=about.__license__,
- packages=about.__packages__,
- keywords=about.__keywords__,
- install_requires=about.__requires__,
+ name=__title__,
+ version=about['__version__'],
+ description=__description__,
+ url=__url__,
+ author=about['__author__'],
+ author_email=__author_email__,
+ license=__license__,
+ packages=find_packages(exclude=('test',)),
+ keywords=__keywords__,
+ install_requires=__requires__,
+ zip_safe=False,
+ include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
@@ -33,4 +54,4 @@
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries'
]
-)
\ No newline at end of file
+)
diff --git a/test.sh b/test.sh
new file mode 100644
index 000000000..8588254b6
--- /dev/null
+++ b/test.sh
@@ -0,0 +1,2 @@
+cd test
+nosetests --with-coverage --cover-package pyecharts --cover-package test && cd .. && flake8 --exclude docs --builtins=unicode,xrange,long
diff --git a/test/constants.py b/test/constants.py
new file mode 100644
index 000000000..7f168730f
--- /dev/null
+++ b/test/constants.py
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
+
+RANGE_COLOR = [
+ '#313695', '#4575b4', '#74add1', '#abd9e9', '#e0f3f8',
+ '#ffffbf', '#fee090', '#fdae61', '#f46d43', '#d73027', '#a50026'
+ ]
+
+X_TIME = [
+ "12a", "1a", "2a", "3a", "4a", "5a", "6a", "7a", "8a", "9a", "10a", "11a",
+ "12p", "1p", "2p", "3p", "4p", "5p", "6p", "7p", "8p", "9p", "10p", "11p"
+ ]
+
+Y_WEEK = [
+ "Saturday", "Friday", "Thursday", "Wednesday",
+ "Tuesday", "Monday", "Sunday"
+ ]
+
+CLOTHES = ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
+
+WEEK = ['周一', '周二', '周三', '周四', '周五', '周六', '周日']
diff --git a/test/fixtures/energy.json b/test/fixtures/energy.json
new file mode 100644
index 000000000..1732724f7
--- /dev/null
+++ b/test/fixtures/energy.json
@@ -0,0 +1,488 @@
+{
+ "nodes": [{
+ "name": "Agricultural 'waste'"
+ },
+ {
+ "name": "Bio-conversion"
+ },
+ {
+ "name": "Liquid"
+ },
+ {
+ "name": "Losses"
+ },
+ {
+ "name": "Solid"
+ },
+ {
+ "name": "Gas"
+ },
+ {
+ "name": "Biofuel imports"
+ },
+ {
+ "name": "Biomass imports"
+ },
+ {
+ "name": "Coal imports"
+ },
+ {
+ "name": "Coal"
+ },
+ {
+ "name": "Coal reserves"
+ },
+ {
+ "name": "District heating"
+ },
+ {
+ "name": "Industry"
+ },
+ {
+ "name": "Heating and cooling - commercial"
+ },
+ {
+ "name": "Heating and cooling - homes"
+ },
+ {
+ "name": "Electricity grid"
+ },
+ {
+ "name": "Over generation / exports"
+ },
+ {
+ "name": "H2 conversion"
+ },
+ {
+ "name": "Road transport"
+ },
+ {
+ "name": "Agriculture"
+ },
+ {
+ "name": "Rail transport"
+ },
+ {
+ "name": "Lighting & appliances - commercial"
+ },
+ {
+ "name": "Lighting & appliances - homes"
+ },
+ {
+ "name": "Gas imports"
+ },
+ {
+ "name": "Ngas"
+ },
+ {
+ "name": "Gas reserves"
+ },
+ {
+ "name": "Thermal generation"
+ },
+ {
+ "name": "Geothermal"
+ },
+ {
+ "name": "H2"
+ },
+ {
+ "name": "Hydro"
+ },
+ {
+ "name": "International shipping"
+ },
+ {
+ "name": "Domestic aviation"
+ },
+ {
+ "name": "International aviation"
+ },
+ {
+ "name": "National navigation"
+ },
+ {
+ "name": "Marine algae"
+ },
+ {
+ "name": "Nuclear"
+ },
+ {
+ "name": "Oil imports"
+ },
+ {
+ "name": "Oil"
+ },
+ {
+ "name": "Oil reserves"
+ },
+ {
+ "name": "Other waste"
+ },
+ {
+ "name": "Pumped heat"
+ },
+ {
+ "name": "Solar PV"
+ },
+ {
+ "name": "Solar Thermal"
+ },
+ {
+ "name": "Solar"
+ },
+ {
+ "name": "Tidal"
+ },
+ {
+ "name": "UK land based bioenergy"
+ },
+ {
+ "name": "Wave"
+ },
+ {
+ "name": "Wind"
+ }
+ ],
+ "links": [{
+ "source": "Agricultural 'waste'",
+ "target": "Bio-conversion",
+ "value": 124.729
+ },
+ {
+ "source": "Bio-conversion",
+ "target": "Liquid",
+ "value": 0.597
+ },
+ {
+ "source": "Bio-conversion",
+ "target": "Losses",
+ "value": 26.862
+ },
+ {
+ "source": "Bio-conversion",
+ "target": "Solid",
+ "value": 280.322
+ },
+ {
+ "source": "Bio-conversion",
+ "target": "Gas",
+ "value": 81.144
+ },
+ {
+ "source": "Biofuel imports",
+ "target": "Liquid",
+ "value": 35
+ },
+ {
+ "source": "Biomass imports",
+ "target": "Solid",
+ "value": 35
+ },
+ {
+ "source": "Coal imports",
+ "target": "Coal",
+ "value": 11.606
+ },
+ {
+ "source": "Coal reserves",
+ "target": "Coal",
+ "value": 63.965
+ },
+ {
+ "source": "Coal",
+ "target": "Solid",
+ "value": 75.571
+ },
+ {
+ "source": "District heating",
+ "target": "Industry",
+ "value": 10.639
+ },
+ {
+ "source": "District heating",
+ "target": "Heating and cooling - commercial",
+ "value": 22.505
+ },
+ {
+ "source": "District heating",
+ "target": "Heating and cooling - homes",
+ "value": 46.184
+ },
+ {
+ "source": "Electricity grid",
+ "target": "Over generation / exports",
+ "value": 104.453
+ },
+ {
+ "source": "Electricity grid",
+ "target": "Heating and cooling - homes",
+ "value": 113.726
+ },
+ {
+ "source": "Electricity grid",
+ "target": "H2 conversion",
+ "value": 27.14
+ },
+ {
+ "source": "Electricity grid",
+ "target": "Industry",
+ "value": 342.165
+ },
+ {
+ "source": "Electricity grid",
+ "target": "Road transport",
+ "value": 37.797
+ },
+ {
+ "source": "Electricity grid",
+ "target": "Agriculture",
+ "value": 4.412
+ },
+ {
+ "source": "Electricity grid",
+ "target": "Heating and cooling - commercial",
+ "value": 40.858
+ },
+ {
+ "source": "Electricity grid",
+ "target": "Losses",
+ "value": 56.691
+ },
+ {
+ "source": "Electricity grid",
+ "target": "Rail transport",
+ "value": 7.863
+ },
+ {
+ "source": "Electricity grid",
+ "target": "Lighting & appliances - commercial",
+ "value": 90.008
+ },
+ {
+ "source": "Electricity grid",
+ "target": "Lighting & appliances - homes",
+ "value": 93.494
+ },
+ {
+ "source": "Gas imports",
+ "target": "Ngas",
+ "value": 40.719
+ },
+ {
+ "source": "Gas reserves",
+ "target": "Ngas",
+ "value": 82.233
+ },
+ {
+ "source": "Gas",
+ "target": "Heating and cooling - commercial",
+ "value": 0.129
+ },
+ {
+ "source": "Gas",
+ "target": "Losses",
+ "value": 1.401
+ },
+ {
+ "source": "Gas",
+ "target": "Thermal generation",
+ "value": 151.891
+ },
+ {
+ "source": "Gas",
+ "target": "Agriculture",
+ "value": 2.096
+ },
+ {
+ "source": "Gas",
+ "target": "Industry",
+ "value": 48.58
+ },
+ {
+ "source": "Geothermal",
+ "target": "Electricity grid",
+ "value": 7.013
+ },
+ {
+ "source": "H2 conversion",
+ "target": "H2",
+ "value": 20.897
+ },
+ {
+ "source": "H2 conversion",
+ "target": "Losses",
+ "value": 6.242
+ },
+ {
+ "source": "H2",
+ "target": "Road transport",
+ "value": 20.897
+ },
+ {
+ "source": "Hydro",
+ "target": "Electricity grid",
+ "value": 6.995
+ },
+ {
+ "source": "Liquid",
+ "target": "Industry",
+ "value": 121.066
+ },
+ {
+ "source": "Liquid",
+ "target": "International shipping",
+ "value": 128.69
+ },
+ {
+ "source": "Liquid",
+ "target": "Road transport",
+ "value": 135.835
+ },
+ {
+ "source": "Liquid",
+ "target": "Domestic aviation",
+ "value": 14.458
+ },
+ {
+ "source": "Liquid",
+ "target": "International aviation",
+ "value": 206.267
+ },
+ {
+ "source": "Liquid",
+ "target": "Agriculture",
+ "value": 3.64
+ },
+ {
+ "source": "Liquid",
+ "target": "National navigation",
+ "value": 33.218
+ },
+ {
+ "source": "Liquid",
+ "target": "Rail transport",
+ "value": 4.413
+ },
+ {
+ "source": "Marine algae",
+ "target": "Bio-conversion",
+ "value": 4.375
+ },
+ {
+ "source": "Ngas",
+ "target": "Gas",
+ "value": 122.952
+ },
+ {
+ "source": "Nuclear",
+ "target": "Thermal generation",
+ "value": 839.978
+ },
+ {
+ "source": "Oil imports",
+ "target": "Oil",
+ "value": 504.287
+ },
+ {
+ "source": "Oil reserves",
+ "target": "Oil",
+ "value": 107.703
+ },
+ {
+ "source": "Oil",
+ "target": "Liquid",
+ "value": 611.99
+ },
+ {
+ "source": "Other waste",
+ "target": "Solid",
+ "value": 56.587
+ },
+ {
+ "source": "Other waste",
+ "target": "Bio-conversion",
+ "value": 77.81
+ },
+ {
+ "source": "Pumped heat",
+ "target": "Heating and cooling - homes",
+ "value": 193.026
+ },
+ {
+ "source": "Pumped heat",
+ "target": "Heating and cooling - commercial",
+ "value": 70.672
+ },
+ {
+ "source": "Solar PV",
+ "target": "Electricity grid",
+ "value": 59.901
+ },
+ {
+ "source": "Solar Thermal",
+ "target": "Heating and cooling - homes",
+ "value": 19.263
+ },
+ {
+ "source": "Solar",
+ "target": "Solar Thermal",
+ "value": 19.263
+ },
+ {
+ "source": "Solar",
+ "target": "Solar PV",
+ "value": 59.901
+ },
+ {
+ "source": "Solid",
+ "target": "Agriculture",
+ "value": 0.882
+ },
+ {
+ "source": "Solid",
+ "target": "Thermal generation",
+ "value": 400.12
+ },
+ {
+ "source": "Solid",
+ "target": "Industry",
+ "value": 46.477
+ },
+ {
+ "source": "Thermal generation",
+ "target": "Electricity grid",
+ "value": 525.531
+ },
+ {
+ "source": "Thermal generation",
+ "target": "Losses",
+ "value": 787.129
+ },
+ {
+ "source": "Thermal generation",
+ "target": "District heating",
+ "value": 79.329
+ },
+ {
+ "source": "Tidal",
+ "target": "Electricity grid",
+ "value": 9.452
+ },
+ {
+ "source": "UK land based bioenergy",
+ "target": "Bio-conversion",
+ "value": 182.01
+ },
+ {
+ "source": "Wave",
+ "target": "Electricity grid",
+ "value": 19.013
+ },
+ {
+ "source": "Wind",
+ "target": "Electricity grid",
+ "value": 289.366
+ }
+ ]
+}
\ No newline at end of file
diff --git a/test/fixtures/registry.json b/test/fixtures/registry.json
new file mode 100644
index 000000000..d43a3fb7f
--- /dev/null
+++ b/test/fixtures/registry.json
@@ -0,0 +1,12 @@
+{
+ "JUPYTER_URL": "/nbextensions/test-js",
+ "GITHUB_URL": "https://your.github.io/test-js/test-js",
+ "JUPYTER_ENTRY": "test-js/index",
+ "JS_FOLDER": "test-js",
+ "PINYIN_MAP": {
+ "Chinese": "pinyin"
+ },
+ "FILE_MAP": {
+ "pinyin": "the_js_file_name"
+ }
+}
diff --git a/test/fixtures/treemap.json b/test/fixtures/treemap.json
new file mode 100644
index 000000000..18cd22a1f
--- /dev/null
+++ b/test/fixtures/treemap.json
@@ -0,0 +1,21035 @@
+[
+ {
+ "value": 40,
+ "name": "Accessibility",
+ "path": "Accessibility"
+ },
+ {
+ "value": 180,
+ "name": "Accounts",
+ "path": "Accounts",
+ "children": [
+ {
+ "value": 76,
+ "name": "Access",
+ "path": "Accounts/Access",
+ "children": [
+ {
+ "value": 12,
+ "name": "DefaultAccessPlugin.bundle",
+ "path": "Accounts/Access/DefaultAccessPlugin.bundle"
+ },
+ {
+ "value": 28,
+ "name": "FacebookAccessPlugin.bundle",
+ "path": "Accounts/Access/FacebookAccessPlugin.bundle"
+ },
+ {
+ "value": 20,
+ "name": "LinkedInAccessPlugin.bundle",
+ "path": "Accounts/Access/LinkedInAccessPlugin.bundle"
+ },
+ {
+ "value": 16,
+ "name": "TencentWeiboAccessPlugin.bundle",
+ "path": "Accounts/Access/TencentWeiboAccessPlugin.bundle"
+ }
+ ]
+ },
+ {
+ "value": 92,
+ "name": "Authentication",
+ "path": "Accounts/Authentication",
+ "children": [
+ {
+ "value": 24,
+ "name": "FacebookAuthenticationPlugin.bundle",
+ "path": "Accounts/Authentication/FacebookAuthenticationPlugin.bundle"
+ },
+ {
+ "value": 16,
+ "name": "LinkedInAuthenticationPlugin.bundle",
+ "path": "Accounts/Authentication/LinkedInAuthenticationPlugin.bundle"
+ },
+ {
+ "value": 20,
+ "name": "TencentWeiboAuthenticationPlugin.bundle",
+ "path": "Accounts/Authentication/TencentWeiboAuthenticationPlugin.bundle"
+ },
+ {
+ "value": 16,
+ "name": "TwitterAuthenticationPlugin.bundle",
+ "path": "Accounts/Authentication/TwitterAuthenticationPlugin.bundle"
+ },
+ {
+ "value": 16,
+ "name": "WeiboAuthenticationPlugin.bundle",
+ "path": "Accounts/Authentication/WeiboAuthenticationPlugin.bundle"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "Notification",
+ "path": "Accounts/Notification",
+ "children": [
+ {
+ "value": 12,
+ "name": "SPAAccountsNotificationPlugin.bundle",
+ "path": "Accounts/Notification/SPAAccountsNotificationPlugin.bundle"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 1904,
+ "name": "AddressBook Plug-Ins",
+ "path": "AddressBook Plug-Ins",
+ "children": [
+ {
+ "value": 744,
+ "name": "CardDAVPlugin.sourcebundle",
+ "path": "AddressBook Plug-Ins/CardDAVPlugin.sourcebundle",
+ "children": [
+ {
+ "value": 744,
+ "name": "Contents",
+ "path": "AddressBook Plug-Ins/CardDAVPlugin.sourcebundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "DirectoryServices.sourcebundle",
+ "path": "AddressBook Plug-Ins/DirectoryServices.sourcebundle",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "AddressBook Plug-Ins/DirectoryServices.sourcebundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 680,
+ "name": "Exchange.sourcebundle",
+ "path": "AddressBook Plug-Ins/Exchange.sourcebundle",
+ "children": [
+ {
+ "value": 680,
+ "name": "Contents",
+ "path": "AddressBook Plug-Ins/Exchange.sourcebundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 432,
+ "name": "LDAP.sourcebundle",
+ "path": "AddressBook Plug-Ins/LDAP.sourcebundle",
+ "children": [
+ {
+ "value": 432,
+ "name": "Contents",
+ "path": "AddressBook Plug-Ins/LDAP.sourcebundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "LocalSource.sourcebundle",
+ "path": "AddressBook Plug-Ins/LocalSource.sourcebundle",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "AddressBook Plug-Ins/LocalSource.sourcebundle/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 36,
+ "name": "Assistant",
+ "path": "Assistant",
+ "children": [
+ {
+ "value": 36,
+ "name": "Plugins",
+ "path": "Assistant/Plugins",
+ "children": [
+ {
+ "value": 36,
+ "name": "AddressBook.assistantBundle",
+ "path": "Assistant/Plugins/AddressBook.assistantBundle"
+ },
+ {
+ "value": 8,
+ "name": "GenericAddressHandler.addresshandler",
+ "path": "Recents/Plugins/GenericAddressHandler.addresshandler"
+ },
+ {
+ "value": 12,
+ "name": "MapsRecents.addresshandler",
+ "path": "Recents/Plugins/MapsRecents.addresshandler"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 53228,
+ "name": "Automator",
+ "path": "Automator",
+ "children": [
+ {
+ "value": 0,
+ "name": "ActivateFonts.action",
+ "path": "Automator/ActivateFonts.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/ActivateFonts.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "AddAttachments to Front Message.action",
+ "path": "Automator/AddAttachments to Front Message.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/AddAttachments to Front Message.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "AddColor Profile.action",
+ "path": "Automator/AddColor Profile.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/AddColor Profile.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "AddGrid to PDF Documents.action",
+ "path": "Automator/AddGrid to PDF Documents.action",
+ "children": [
+ {
+ "value": 32,
+ "name": "Contents",
+ "path": "Automator/AddGrid to PDF Documents.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "AddMovie to iDVD Menu.action",
+ "path": "Automator/AddMovie to iDVD Menu.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/AddMovie to iDVD Menu.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "AddPhotos to Album.action",
+ "path": "Automator/AddPhotos to Album.action",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Automator/AddPhotos to Album.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "AddSongs to iPod.action",
+ "path": "Automator/AddSongs to iPod.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/AddSongs to iPod.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "AddSongs to Playlist.action",
+ "path": "Automator/AddSongs to Playlist.action",
+ "children": [
+ {
+ "value": 44,
+ "name": "Contents",
+ "path": "Automator/AddSongs to Playlist.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "AddThumbnail Icon to Image Files.action",
+ "path": "Automator/AddThumbnail Icon to Image Files.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/AddThumbnail Icon to Image Files.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 268,
+ "name": "Addto Font Library.action",
+ "path": "Automator/Addto Font Library.action",
+ "children": [
+ {
+ "value": 268,
+ "name": "Contents",
+ "path": "Automator/Addto Font Library.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "AddressBook.definition",
+ "path": "Automator/AddressBook.definition",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/AddressBook.definition/Contents"
+ }
+ ]
+ },
+ {
+ "value": 408,
+ "name": "AppleVersioning Tool.action",
+ "path": "Automator/AppleVersioning Tool.action",
+ "children": [
+ {
+ "value": 408,
+ "name": "Contents",
+ "path": "Automator/AppleVersioning Tool.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 568,
+ "name": "ApplyColorSync Profile to Images.action",
+ "path": "Automator/ApplyColorSync Profile to Images.action",
+ "children": [
+ {
+ "value": 568,
+ "name": "Contents",
+ "path": "Automator/ApplyColorSync Profile to Images.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 348,
+ "name": "ApplyQuartz Composition Filter to Image Files.action",
+ "path": "Automator/ApplyQuartz Composition Filter to Image Files.action",
+ "children": [
+ {
+ "value": 348,
+ "name": "Contents",
+ "path": "Automator/ApplyQuartz Composition Filter to Image Files.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 368,
+ "name": "ApplyQuartz Filter to PDF Documents.action",
+ "path": "Automator/ApplyQuartz Filter to PDF Documents.action",
+ "children": [
+ {
+ "value": 368,
+ "name": "Contents",
+ "path": "Automator/ApplyQuartz Filter to PDF Documents.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 96,
+ "name": "ApplySQL.action",
+ "path": "Automator/ApplySQL.action",
+ "children": [
+ {
+ "value": 96,
+ "name": "Contents",
+ "path": "Automator/ApplySQL.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 372,
+ "name": "Askfor Confirmation.action",
+ "path": "Automator/Askfor Confirmation.action",
+ "children": [
+ {
+ "value": 372,
+ "name": "Contents",
+ "path": "Automator/Askfor Confirmation.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 104,
+ "name": "Askfor Finder Items.action",
+ "path": "Automator/Askfor Finder Items.action",
+ "children": [
+ {
+ "value": 104,
+ "name": "Contents",
+ "path": "Automator/Askfor Finder Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "Askfor Movies.action",
+ "path": "Automator/Askfor Movies.action",
+ "children": [
+ {
+ "value": 52,
+ "name": "Contents",
+ "path": "Automator/Askfor Movies.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "Askfor Photos.action",
+ "path": "Automator/Askfor Photos.action",
+ "children": [
+ {
+ "value": 44,
+ "name": "Contents",
+ "path": "Automator/Askfor Photos.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "Askfor Servers.action",
+ "path": "Automator/Askfor Servers.action",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "Automator/Askfor Servers.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "Askfor Songs.action",
+ "path": "Automator/Askfor Songs.action",
+ "children": [
+ {
+ "value": 52,
+ "name": "Contents",
+ "path": "Automator/Askfor Songs.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 288,
+ "name": "Askfor Text.action",
+ "path": "Automator/Askfor Text.action",
+ "children": [
+ {
+ "value": 288,
+ "name": "Contents",
+ "path": "Automator/Askfor Text.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "Automator.definition",
+ "path": "Automator/Automator.definition",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/Automator.definition/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "BrowseMovies.action",
+ "path": "Automator/BrowseMovies.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/BrowseMovies.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 552,
+ "name": "BuildXcode Project.action",
+ "path": "Automator/BuildXcode Project.action",
+ "children": [
+ {
+ "value": 552,
+ "name": "Contents",
+ "path": "Automator/BuildXcode Project.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 296,
+ "name": "BurnA Disc.action",
+ "path": "Automator/BurnA Disc.action",
+ "children": [
+ {
+ "value": 296,
+ "name": "Contents",
+ "path": "Automator/BurnA Disc.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ChangeCase of Song Names.action",
+ "path": "Automator/ChangeCase of Song Names.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ChangeCase of Song Names.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "ChangeType of Images.action",
+ "path": "Automator/ChangeType of Images.action",
+ "children": [
+ {
+ "value": 60,
+ "name": "Contents",
+ "path": "Automator/ChangeType of Images.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "Choosefrom List.action",
+ "path": "Automator/Choosefrom List.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/Choosefrom List.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "CombineMail Messages.action",
+ "path": "Automator/CombineMail Messages.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/CombineMail Messages.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "CombinePDF Pages.action",
+ "path": "Automator/CombinePDF Pages.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/CombinePDF Pages.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "CombineText Files.action",
+ "path": "Automator/CombineText Files.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/CombineText Files.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "CompressImages in PDF Documents.action",
+ "path": "Automator/CompressImages in PDF Documents.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/CompressImages in PDF Documents.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "Connectto Servers.action",
+ "path": "Automator/Connectto Servers.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/Connectto Servers.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertAccount object to Mailbox object.caction",
+ "path": "Automator/ConvertAccount object to Mailbox object.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertAccount object to Mailbox object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertAlbum object to Photo object.caction",
+ "path": "Automator/ConvertAlbum object to Photo object.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertAlbum object to Photo object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertAlias object to Finder object.caction",
+ "path": "Automator/ConvertAlias object to Finder object.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertAlias object to Finder object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertAlias object to iPhoto photo object.caction",
+ "path": "Automator/ConvertAlias object to iPhoto photo object.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertAlias object to iPhoto photo object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertCalendar object to Event object.caction",
+ "path": "Automator/ConvertCalendar object to Event object.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertCalendar object to Event object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertCalendar object to Reminders object.caction",
+ "path": "Automator/ConvertCalendar object to Reminders object.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertCalendar object to Reminders object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertCocoa Data To Cocoa String.caction",
+ "path": "Automator/ConvertCocoa Data To Cocoa String.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertCocoa Data To Cocoa String.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertCocoa String To Cocoa Data.caction",
+ "path": "Automator/ConvertCocoa String To Cocoa Data.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertCocoa String To Cocoa Data.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "ConvertCocoa URL to iTunes Track Object.caction",
+ "path": "Automator/ConvertCocoa URL to iTunes Track Object.caction",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/ConvertCocoa URL to iTunes Track Object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "ConvertCocoa URL to RSS Feed.caction",
+ "path": "Automator/ConvertCocoa URL to RSS Feed.caction",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/ConvertCocoa URL to RSS Feed.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 40,
+ "name": "ConvertCSV to SQL.action",
+ "path": "Automator/ConvertCSV to SQL.action",
+ "children": [
+ {
+ "value": 40,
+ "name": "Contents",
+ "path": "Automator/ConvertCSV to SQL.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertFeeds to Articles.caction",
+ "path": "Automator/ConvertFeeds to Articles.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertFeeds to Articles.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertFinder object to Alias object.caction",
+ "path": "Automator/ConvertFinder object to Alias object.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertFinder object to Alias object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertGroup object to Person object.caction",
+ "path": "Automator/ConvertGroup object to Person object.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertGroup object to Person object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertiPhoto Album to Alias object.caction",
+ "path": "Automator/ConvertiPhoto Album to Alias object.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertiPhoto Album to Alias object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertiTunes object to Alias object.caction",
+ "path": "Automator/ConvertiTunes object to Alias object.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertiTunes object to Alias object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertiTunes Playlist object to Alias object.caction",
+ "path": "Automator/ConvertiTunes Playlist object to Alias object.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertiTunes Playlist object to Alias object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertMailbox object to Message object.caction",
+ "path": "Automator/ConvertMailbox object to Message object.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertMailbox object to Message object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertPhoto object to Alias object.caction",
+ "path": "Automator/ConvertPhoto object to Alias object.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertPhoto object to Alias object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertPlaylist object to Song object.caction",
+ "path": "Automator/ConvertPlaylist object to Song object.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertPlaylist object to Song object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2760,
+ "name": "ConvertQuartz Compositions to QuickTime Movies.action",
+ "path": "Automator/ConvertQuartz Compositions to QuickTime Movies.action",
+ "children": [
+ {
+ "value": 2760,
+ "name": "Contents",
+ "path": "Automator/ConvertQuartz Compositions to QuickTime Movies.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ConvertSource object to Playlist object.caction",
+ "path": "Automator/ConvertSource object to Playlist object.caction",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ConvertSource object to Playlist object.caction/Contents"
+ }
+ ]
+ },
+ {
+ "value": 96,
+ "name": "CopyFinder Items.action",
+ "path": "Automator/CopyFinder Items.action",
+ "children": [
+ {
+ "value": 96,
+ "name": "Contents",
+ "path": "Automator/CopyFinder Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "Copyto Clipboard.action",
+ "path": "Automator/Copyto Clipboard.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/Copyto Clipboard.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "CreateAnnotated Movie File.action",
+ "path": "Automator/CreateAnnotated Movie File.action",
+ "children": [
+ {
+ "value": 72,
+ "name": "Contents",
+ "path": "Automator/CreateAnnotated Movie File.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 96,
+ "name": "CreateArchive.action",
+ "path": "Automator/CreateArchive.action",
+ "children": [
+ {
+ "value": 96,
+ "name": "Contents",
+ "path": "Automator/CreateArchive.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 412,
+ "name": "CreateBanner Image from Text.action",
+ "path": "Automator/CreateBanner Image from Text.action",
+ "children": [
+ {
+ "value": 412,
+ "name": "Contents",
+ "path": "Automator/CreateBanner Image from Text.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 392,
+ "name": "CreatePackage.action",
+ "path": "Automator/CreatePackage.action",
+ "children": [
+ {
+ "value": 392,
+ "name": "Contents",
+ "path": "Automator/CreatePackage.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 208,
+ "name": "CreateThumbnail Images.action",
+ "path": "Automator/CreateThumbnail Images.action",
+ "children": [
+ {
+ "value": 208,
+ "name": "Contents",
+ "path": "Automator/CreateThumbnail Images.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 712,
+ "name": "CropImages.action",
+ "path": "Automator/CropImages.action",
+ "children": [
+ {
+ "value": 712,
+ "name": "Contents",
+ "path": "Automator/CropImages.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "CVSAdd.action",
+ "path": "Automator/CVSAdd.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/CVSAdd.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "CVSCheckout.action",
+ "path": "Automator/CVSCheckout.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/CVSCheckout.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "CVSCommit.action",
+ "path": "Automator/CVSCommit.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/CVSCommit.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "CVSUpdate.action",
+ "path": "Automator/CVSUpdate.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/CVSUpdate.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "DeactivateFonts.action",
+ "path": "Automator/DeactivateFonts.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/DeactivateFonts.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "DeleteAll iPod Notes.action",
+ "path": "Automator/DeleteAll iPod Notes.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/DeleteAll iPod Notes.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "DeleteCalendar Events.action",
+ "path": "Automator/DeleteCalendar Events.action",
+ "children": [
+ {
+ "value": 32,
+ "name": "Contents",
+ "path": "Automator/DeleteCalendar Events.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "DeleteCalendar Items.action",
+ "path": "Automator/DeleteCalendar Items.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/DeleteCalendar Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "DeleteCalendars.action",
+ "path": "Automator/DeleteCalendars.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/DeleteCalendars.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "DeleteReminders.action",
+ "path": "Automator/DeleteReminders.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/DeleteReminders.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "DisplayMail Messages.action",
+ "path": "Automator/DisplayMail Messages.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/DisplayMail Messages.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "DisplayNotification.action",
+ "path": "Automator/DisplayNotification.action",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "Automator/DisplayNotification.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "DisplayWebpages 2.action",
+ "path": "Automator/DisplayWebpages 2.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/DisplayWebpages 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "DisplayWebpages.action",
+ "path": "Automator/DisplayWebpages.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/DisplayWebpages.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "DownloadPictures.action",
+ "path": "Automator/DownloadPictures.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/DownloadPictures.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "DownloadURLs.action",
+ "path": "Automator/DownloadURLs.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/DownloadURLs.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "DuplicateFinder Items.action",
+ "path": "Automator/DuplicateFinder Items.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/DuplicateFinder Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "EjectDisk.action",
+ "path": "Automator/EjectDisk.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/EjectDisk.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "EjectiPod.action",
+ "path": "Automator/EjectiPod.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/EjectiPod.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "Enableor Disable Tracks.action",
+ "path": "Automator/Enableor Disable Tracks.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/Enableor Disable Tracks.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 464,
+ "name": "EncodeMedia.action",
+ "path": "Automator/EncodeMedia.action",
+ "children": [
+ {
+ "value": 464,
+ "name": "Contents",
+ "path": "Automator/EncodeMedia.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 80,
+ "name": "Encodeto MPEG Audio.action",
+ "path": "Automator/Encodeto MPEG Audio.action",
+ "children": [
+ {
+ "value": 80,
+ "name": "Contents",
+ "path": "Automator/Encodeto MPEG Audio.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "EncryptPDF Documents.action",
+ "path": "Automator/EncryptPDF Documents.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/EncryptPDF Documents.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "EventSummary.action",
+ "path": "Automator/EventSummary.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/EventSummary.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "ExecuteSQL.action",
+ "path": "Automator/ExecuteSQL.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/ExecuteSQL.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 264,
+ "name": "ExportFont Files.action",
+ "path": "Automator/ExportFont Files.action",
+ "children": [
+ {
+ "value": 264,
+ "name": "Contents",
+ "path": "Automator/ExportFont Files.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "ExportMovies for iPod.action",
+ "path": "Automator/ExportMovies for iPod.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/ExportMovies for iPod.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "ExportvCards.action",
+ "path": "Automator/ExportvCards.action",
+ "children": [
+ {
+ "value": 44,
+ "name": "Contents",
+ "path": "Automator/ExportvCards.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "ExtractData from Text.action",
+ "path": "Automator/ExtractData from Text.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/ExtractData from Text.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "ExtractOdd & Even Pages.action",
+ "path": "Automator/ExtractOdd & Even Pages.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/ExtractOdd & Even Pages.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "ExtractPDF Annotations.action",
+ "path": "Automator/ExtractPDF Annotations.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/ExtractPDF Annotations.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2620,
+ "name": "ExtractPDF Text.action",
+ "path": "Automator/ExtractPDF Text.action",
+ "children": [
+ {
+ "value": 2620,
+ "name": "Contents",
+ "path": "Automator/ExtractPDF Text.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "FilterArticles.action",
+ "path": "Automator/FilterArticles.action",
+ "children": [
+ {
+ "value": 44,
+ "name": "Contents",
+ "path": "Automator/FilterArticles.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 272,
+ "name": "FilterCalendar Items 2.action",
+ "path": "Automator/FilterCalendar Items 2.action",
+ "children": [
+ {
+ "value": 272,
+ "name": "Contents",
+ "path": "Automator/FilterCalendar Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 280,
+ "name": "FilterContacts Items 2.action",
+ "path": "Automator/FilterContacts Items 2.action",
+ "children": [
+ {
+ "value": 280,
+ "name": "Contents",
+ "path": "Automator/FilterContacts Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 280,
+ "name": "FilterFinder Items 2.action",
+ "path": "Automator/FilterFinder Items 2.action",
+ "children": [
+ {
+ "value": 280,
+ "name": "Contents",
+ "path": "Automator/FilterFinder Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "FilterFinder Items.action",
+ "path": "Automator/FilterFinder Items.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/FilterFinder Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 264,
+ "name": "FilterFonts by Font Type.action",
+ "path": "Automator/FilterFonts by Font Type.action",
+ "children": [
+ {
+ "value": 264,
+ "name": "Contents",
+ "path": "Automator/FilterFonts by Font Type.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 280,
+ "name": "FilteriPhoto Items 2.action",
+ "path": "Automator/FilteriPhoto Items 2.action",
+ "children": [
+ {
+ "value": 280,
+ "name": "Contents",
+ "path": "Automator/FilteriPhoto Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 272,
+ "name": "FilterItems.action",
+ "path": "Automator/FilterItems.action",
+ "children": [
+ {
+ "value": 272,
+ "name": "Contents",
+ "path": "Automator/FilterItems.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "FilteriTunes Items 2.action",
+ "path": "Automator/FilteriTunes Items 2.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/FilteriTunes Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "FilterMail Items 2.action",
+ "path": "Automator/FilterMail Items 2.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/FilterMail Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "FilterParagraphs.action",
+ "path": "Automator/FilterParagraphs.action",
+ "children": [
+ {
+ "value": 60,
+ "name": "Contents",
+ "path": "Automator/FilterParagraphs.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "FilterURLs 2.action",
+ "path": "Automator/FilterURLs 2.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/FilterURLs 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "FilterURLs.action",
+ "path": "Automator/FilterURLs.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/FilterURLs.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 272,
+ "name": "FindCalendar Items 2.action",
+ "path": "Automator/FindCalendar Items 2.action",
+ "children": [
+ {
+ "value": 272,
+ "name": "Contents",
+ "path": "Automator/FindCalendar Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "FindContacts Items 2.action",
+ "path": "Automator/FindContacts Items 2.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/FindContacts Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "FindFinder Items 2.action",
+ "path": "Automator/FindFinder Items 2.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/FindFinder Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 280,
+ "name": "FindFinder Items.action",
+ "path": "Automator/FindFinder Items.action",
+ "children": [
+ {
+ "value": 280,
+ "name": "Contents",
+ "path": "Automator/FindFinder Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "FindiPhoto Items 2.action",
+ "path": "Automator/FindiPhoto Items 2.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/FindiPhoto Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 272,
+ "name": "FindItems.action",
+ "path": "Automator/FindItems.action",
+ "children": [
+ {
+ "value": 272,
+ "name": "Contents",
+ "path": "Automator/FindItems.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "FindiTunes Items 2.action",
+ "path": "Automator/FindiTunes Items 2.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/FindiTunes Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 280,
+ "name": "FindMail Items 2.action",
+ "path": "Automator/FindMail Items 2.action",
+ "children": [
+ {
+ "value": 280,
+ "name": "Contents",
+ "path": "Automator/FindMail Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 84,
+ "name": "FindPeople with Birthdays.action",
+ "path": "Automator/FindPeople with Birthdays.action",
+ "children": [
+ {
+ "value": 84,
+ "name": "Contents",
+ "path": "Automator/FindPeople with Birthdays.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "Finder.definition",
+ "path": "Automator/Finder.definition",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/Finder.definition/Contents"
+ }
+ ]
+ },
+ {
+ "value": 104,
+ "name": "FlipImages.action",
+ "path": "Automator/FlipImages.action",
+ "children": [
+ {
+ "value": 104,
+ "name": "Contents",
+ "path": "Automator/FlipImages.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "FontBook.definition",
+ "path": "Automator/FontBook.definition",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/FontBook.definition/Contents"
+ }
+ ]
+ },
+ {
+ "value": 36,
+ "name": "GetAttachments from Mail Messages.action",
+ "path": "Automator/GetAttachments from Mail Messages.action",
+ "children": [
+ {
+ "value": 36,
+ "name": "Contents",
+ "path": "Automator/GetAttachments from Mail Messages.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 180,
+ "name": "GetContact Information.action",
+ "path": "Automator/GetContact Information.action",
+ "children": [
+ {
+ "value": 180,
+ "name": "Contents",
+ "path": "Automator/GetContact Information.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "GetContents of Clipboard.action",
+ "path": "Automator/GetContents of Clipboard.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/GetContents of Clipboard.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "GetContents of TextEdit Document.action",
+ "path": "Automator/GetContents of TextEdit Document.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/GetContents of TextEdit Document.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "GetContents of Webpages.action",
+ "path": "Automator/GetContents of Webpages.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/GetContents of Webpages.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "GetCurrent Webpage from Safari.action",
+ "path": "Automator/GetCurrent Webpage from Safari.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/GetCurrent Webpage from Safari.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 84,
+ "name": "GetDefinition of Word.action",
+ "path": "Automator/GetDefinition of Word.action",
+ "children": [
+ {
+ "value": 84,
+ "name": "Contents",
+ "path": "Automator/GetDefinition of Word.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "GetEnclosure URLs from Articles.action",
+ "path": "Automator/GetEnclosure URLs from Articles.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/GetEnclosure URLs from Articles.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "GetFeeds from URLs.action",
+ "path": "Automator/GetFeeds from URLs.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/GetFeeds from URLs.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "GetFiles for Fonts.action",
+ "path": "Automator/GetFiles for Fonts.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/GetFiles for Fonts.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "GetFolder Contents.action",
+ "path": "Automator/GetFolder Contents.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/GetFolder Contents.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 412,
+ "name": "GetFont Info.action",
+ "path": "Automator/GetFont Info.action",
+ "children": [
+ {
+ "value": 412,
+ "name": "Contents",
+ "path": "Automator/GetFont Info.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "GetFonts from Font Files.action",
+ "path": "Automator/GetFonts from Font Files.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/GetFonts from Font Files.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "GetFonts of TextEdit Document.action",
+ "path": "Automator/GetFonts of TextEdit Document.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/GetFonts of TextEdit Document.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "GetiDVD Slideshow Images.action",
+ "path": "Automator/GetiDVD Slideshow Images.action",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Automator/GetiDVD Slideshow Images.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "GetImage URLs from Articles.action",
+ "path": "Automator/GetImage URLs from Articles.action",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "Automator/GetImage URLs from Articles.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "GetImage URLs from Webpage.action",
+ "path": "Automator/GetImage URLs from Webpage.action",
+ "children": [
+ {
+ "value": 52,
+ "name": "Contents",
+ "path": "Automator/GetImage URLs from Webpage.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "GetLink URLs from Articles.action",
+ "path": "Automator/GetLink URLs from Articles.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/GetLink URLs from Articles.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "GetLink URLs from Webpages.action",
+ "path": "Automator/GetLink URLs from Webpages.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/GetLink URLs from Webpages.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "GetNew Mail.action",
+ "path": "Automator/GetNew Mail.action",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Automator/GetNew Mail.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "GetPDF Metadata.action",
+ "path": "Automator/GetPDF Metadata.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/GetPDF Metadata.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "GetPermalinks of Articles.action",
+ "path": "Automator/GetPermalinks of Articles.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/GetPermalinks of Articles.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "GetPostScript name of Font.action",
+ "path": "Automator/GetPostScript name of Font.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/GetPostScript name of Font.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "GetSelected Contacts Items 2.action",
+ "path": "Automator/GetSelected Contacts Items 2.action",
+ "children": [
+ {
+ "value": 44,
+ "name": "Contents",
+ "path": "Automator/GetSelected Contacts Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "GetSelected Finder Items 2.action",
+ "path": "Automator/GetSelected Finder Items 2.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/GetSelected Finder Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "GetSelected iPhoto Items 2.action",
+ "path": "Automator/GetSelected iPhoto Items 2.action",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "Automator/GetSelected iPhoto Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "GetSelected Items.action",
+ "path": "Automator/GetSelected Items.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/GetSelected Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "GetSelected iTunes Items 2.action",
+ "path": "Automator/GetSelected iTunes Items 2.action",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "Automator/GetSelected iTunes Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "GetSelected Mail Items 2.action",
+ "path": "Automator/GetSelected Mail Items 2.action",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "Automator/GetSelected Mail Items 2.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 540,
+ "name": "GetSpecified Calendar Items.action",
+ "path": "Automator/GetSpecified Calendar Items.action",
+ "children": [
+ {
+ "value": 540,
+ "name": "Contents",
+ "path": "Automator/GetSpecified Calendar Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 292,
+ "name": "GetSpecified Contacts Items.action",
+ "path": "Automator/GetSpecified Contacts Items.action",
+ "children": [
+ {
+ "value": 292,
+ "name": "Contents",
+ "path": "Automator/GetSpecified Contacts Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 308,
+ "name": "GetSpecified Finder Items.action",
+ "path": "Automator/GetSpecified Finder Items.action",
+ "children": [
+ {
+ "value": 308,
+ "name": "Contents",
+ "path": "Automator/GetSpecified Finder Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 288,
+ "name": "GetSpecified iPhoto Items.action",
+ "path": "Automator/GetSpecified iPhoto Items.action",
+ "children": [
+ {
+ "value": 288,
+ "name": "Contents",
+ "path": "Automator/GetSpecified iPhoto Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 288,
+ "name": "GetSpecified iTunes Items.action",
+ "path": "Automator/GetSpecified iTunes Items.action",
+ "children": [
+ {
+ "value": 288,
+ "name": "Contents",
+ "path": "Automator/GetSpecified iTunes Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 380,
+ "name": "GetSpecified Mail Items.action",
+ "path": "Automator/GetSpecified Mail Items.action",
+ "children": [
+ {
+ "value": 380,
+ "name": "Contents",
+ "path": "Automator/GetSpecified Mail Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 288,
+ "name": "GetSpecified Movies.action",
+ "path": "Automator/GetSpecified Movies.action",
+ "children": [
+ {
+ "value": 288,
+ "name": "Contents",
+ "path": "Automator/GetSpecified Movies.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "GetSpecified Servers.action",
+ "path": "Automator/GetSpecified Servers.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/GetSpecified Servers.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 272,
+ "name": "GetSpecified Text.action",
+ "path": "Automator/GetSpecified Text.action",
+ "children": [
+ {
+ "value": 272,
+ "name": "Contents",
+ "path": "Automator/GetSpecified Text.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 288,
+ "name": "GetSpecified URLs.action",
+ "path": "Automator/GetSpecified URLs.action",
+ "children": [
+ {
+ "value": 288,
+ "name": "Contents",
+ "path": "Automator/GetSpecified URLs.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "GetText from Articles.action",
+ "path": "Automator/GetText from Articles.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/GetText from Articles.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 40,
+ "name": "GetText from Webpage.action",
+ "path": "Automator/GetText from Webpage.action",
+ "children": [
+ {
+ "value": 40,
+ "name": "Contents",
+ "path": "Automator/GetText from Webpage.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "Getthe Current Song.action",
+ "path": "Automator/Getthe Current Song.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/Getthe Current Song.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 36,
+ "name": "GetValue of Variable.action",
+ "path": "Automator/GetValue of Variable.action",
+ "children": [
+ {
+ "value": 36,
+ "name": "Contents",
+ "path": "Automator/GetValue of Variable.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 280,
+ "name": "GroupMailer.action",
+ "path": "Automator/GroupMailer.action",
+ "children": [
+ {
+ "value": 280,
+ "name": "Contents",
+ "path": "Automator/GroupMailer.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "HideAll Applications.action",
+ "path": "Automator/HideAll Applications.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/HideAll Applications.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "HintMovies.action",
+ "path": "Automator/HintMovies.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/HintMovies.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "iCal.definition",
+ "path": "Automator/iCal.definition",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/iCal.definition/Contents"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "ImportAudio Files.action",
+ "path": "Automator/ImportAudio Files.action",
+ "children": [
+ {
+ "value": 44,
+ "name": "Contents",
+ "path": "Automator/ImportAudio Files.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "ImportFiles into iPhoto.action",
+ "path": "Automator/ImportFiles into iPhoto.action",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "Automator/ImportFiles into iPhoto.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "ImportFiles into iTunes.action",
+ "path": "Automator/ImportFiles into iTunes.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/ImportFiles into iTunes.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 256,
+ "name": "InitiateRemote Broadcast.action",
+ "path": "Automator/InitiateRemote Broadcast.action",
+ "children": [
+ {
+ "value": 256,
+ "name": "Contents",
+ "path": "Automator/InitiateRemote Broadcast.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "iPhoto.definition",
+ "path": "Automator/iPhoto.definition",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/iPhoto.definition/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "iTunes.definition",
+ "path": "Automator/iTunes.definition",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/iTunes.definition/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "LabelFinder Items.action",
+ "path": "Automator/LabelFinder Items.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/LabelFinder Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "LaunchApplication.action",
+ "path": "Automator/LaunchApplication.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/LaunchApplication.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "Loop.action",
+ "path": "Automator/Loop.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/Loop.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "Mail.definition",
+ "path": "Automator/Mail.definition",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/Mail.definition/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "MarkArticles.action",
+ "path": "Automator/MarkArticles.action",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "Automator/MarkArticles.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "MountDisk Image.action",
+ "path": "Automator/MountDisk Image.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/MountDisk Image.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "MoveFinder Items to Trash.action",
+ "path": "Automator/MoveFinder Items to Trash.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/MoveFinder Items to Trash.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "MoveFinder Items.action",
+ "path": "Automator/MoveFinder Items.action",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "Automator/MoveFinder Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 108,
+ "name": "NewAliases.action",
+ "path": "Automator/NewAliases.action",
+ "children": [
+ {
+ "value": 108,
+ "name": "Contents",
+ "path": "Automator/NewAliases.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "NewAudio Capture.action",
+ "path": "Automator/NewAudio Capture.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/NewAudio Capture.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 676,
+ "name": "NewCalendar Events Leopard.action",
+ "path": "Automator/NewCalendar Events Leopard.action",
+ "children": [
+ {
+ "value": 676,
+ "name": "Contents",
+ "path": "Automator/NewCalendar Events Leopard.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "NewCalendar.action",
+ "path": "Automator/NewCalendar.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/NewCalendar.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "NewDisk Image.action",
+ "path": "Automator/NewDisk Image.action",
+ "children": [
+ {
+ "value": 64,
+ "name": "Contents",
+ "path": "Automator/NewDisk Image.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "NewFolder.action",
+ "path": "Automator/NewFolder.action",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Automator/NewFolder.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "NewiDVD Menu.action",
+ "path": "Automator/NewiDVD Menu.action",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Automator/NewiDVD Menu.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "NewiDVD Movie Sequence.action",
+ "path": "Automator/NewiDVD Movie Sequence.action",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Automator/NewiDVD Movie Sequence.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "NewiDVD Slideshow.action",
+ "path": "Automator/NewiDVD Slideshow.action",
+ "children": [
+ {
+ "value": 64,
+ "name": "Contents",
+ "path": "Automator/NewiDVD Slideshow.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "NewiPhoto Album.action",
+ "path": "Automator/NewiPhoto Album.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/NewiPhoto Album.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "NewiPod Note.action",
+ "path": "Automator/NewiPod Note.action",
+ "children": [
+ {
+ "value": 32,
+ "name": "Contents",
+ "path": "Automator/NewiPod Note.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "NewiTunes Playlist.action",
+ "path": "Automator/NewiTunes Playlist.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/NewiTunes Playlist.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 576,
+ "name": "NewMail Message.action",
+ "path": "Automator/NewMail Message.action",
+ "children": [
+ {
+ "value": 576,
+ "name": "Contents",
+ "path": "Automator/NewMail Message.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "NewPDF Contact Sheet.action",
+ "path": "Automator/NewPDF Contact Sheet.action",
+ "children": [
+ {
+ "value": 32,
+ "name": "Contents",
+ "path": "Automator/NewPDF Contact Sheet.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 4444,
+ "name": "NewPDF from Images.action",
+ "path": "Automator/NewPDF from Images.action",
+ "children": [
+ {
+ "value": 4444,
+ "name": "Contents",
+ "path": "Automator/NewPDF from Images.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1976,
+ "name": "NewQuickTime Slideshow.action",
+ "path": "Automator/NewQuickTime Slideshow.action",
+ "children": [
+ {
+ "value": 1976,
+ "name": "Contents",
+ "path": "Automator/NewQuickTime Slideshow.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 808,
+ "name": "NewReminders Item.action",
+ "path": "Automator/NewReminders Item.action",
+ "children": [
+ {
+ "value": 808,
+ "name": "Contents",
+ "path": "Automator/NewReminders Item.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "NewScreen Capture.action",
+ "path": "Automator/NewScreen Capture.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/NewScreen Capture.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "NewText File.action",
+ "path": "Automator/NewText File.action",
+ "children": [
+ {
+ "value": 64,
+ "name": "Contents",
+ "path": "Automator/NewText File.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "NewTextEdit Document.action",
+ "path": "Automator/NewTextEdit Document.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/NewTextEdit Document.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "NewVideo Capture.action",
+ "path": "Automator/NewVideo Capture.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/NewVideo Capture.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "OpenFinder Items.action",
+ "path": "Automator/OpenFinder Items.action",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "Automator/OpenFinder Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "OpenImages in Preview.action",
+ "path": "Automator/OpenImages in Preview.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/OpenImages in Preview.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "OpenKeynote Presentations.action",
+ "path": "Automator/OpenKeynote Presentations.action",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Automator/OpenKeynote Presentations.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "PadImages.action",
+ "path": "Automator/PadImages.action",
+ "children": [
+ {
+ "value": 60,
+ "name": "Contents",
+ "path": "Automator/PadImages.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "PauseCapture.action",
+ "path": "Automator/PauseCapture.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/PauseCapture.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "PauseDVD Playback.action",
+ "path": "Automator/PauseDVD Playback.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/PauseDVD Playback.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "PauseiTunes.action",
+ "path": "Automator/PauseiTunes.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/PauseiTunes.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "Pause.action",
+ "path": "Automator/Pause.action",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Automator/Pause.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 3696,
+ "name": "PDFto Images.action",
+ "path": "Automator/PDFto Images.action",
+ "children": [
+ {
+ "value": 3696,
+ "name": "Contents",
+ "path": "Automator/PDFto Images.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "PlayDVD.action",
+ "path": "Automator/PlayDVD.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/PlayDVD.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "PlayiPhoto Slideshow.action",
+ "path": "Automator/PlayiPhoto Slideshow.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/PlayiPhoto Slideshow.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "PlayiTunes Playlist.action",
+ "path": "Automator/PlayiTunes Playlist.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/PlayiTunes Playlist.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 264,
+ "name": "PlayMovies.action",
+ "path": "Automator/PlayMovies.action",
+ "children": [
+ {
+ "value": 264,
+ "name": "Contents",
+ "path": "Automator/PlayMovies.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "PrintFinder Items.action",
+ "path": "Automator/PrintFinder Items.action",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Automator/PrintFinder Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 108,
+ "name": "PrintImages.action",
+ "path": "Automator/PrintImages.action",
+ "children": [
+ {
+ "value": 108,
+ "name": "Contents",
+ "path": "Automator/PrintImages.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "PrintKeynote Presentation.action",
+ "path": "Automator/PrintKeynote Presentation.action",
+ "children": [
+ {
+ "value": 32,
+ "name": "Contents",
+ "path": "Automator/PrintKeynote Presentation.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 288,
+ "name": "QuitAll Applications.action",
+ "path": "Automator/QuitAll Applications.action",
+ "children": [
+ {
+ "value": 288,
+ "name": "Contents",
+ "path": "Automator/QuitAll Applications.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "QuitApplication.action",
+ "path": "Automator/QuitApplication.action",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "Automator/QuitApplication.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "RemoveEmpty Playlists.action",
+ "path": "Automator/RemoveEmpty Playlists.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/RemoveEmpty Playlists.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "RemoveFont Files.action",
+ "path": "Automator/RemoveFont Files.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/RemoveFont Files.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1092,
+ "name": "RenameFinder Items.action",
+ "path": "Automator/RenameFinder Items.action",
+ "children": [
+ {
+ "value": 1092,
+ "name": "Contents",
+ "path": "Automator/RenameFinder Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "RenamePDF Documents.action",
+ "path": "Automator/RenamePDF Documents.action",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "Automator/RenamePDF Documents.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "RenderPDF Pages as Images.action",
+ "path": "Automator/RenderPDF Pages as Images.action",
+ "children": [
+ {
+ "value": 32,
+ "name": "Contents",
+ "path": "Automator/RenderPDF Pages as Images.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2888,
+ "name": "RenderQuartz Compositions to Image Files.action",
+ "path": "Automator/RenderQuartz Compositions to Image Files.action",
+ "children": [
+ {
+ "value": 2888,
+ "name": "Contents",
+ "path": "Automator/RenderQuartz Compositions to Image Files.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "ResumeCapture.action",
+ "path": "Automator/ResumeCapture.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/ResumeCapture.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ResumeDVD Playback.action",
+ "path": "Automator/ResumeDVD Playback.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ResumeDVD Playback.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "RevealFinder Items.action",
+ "path": "Automator/RevealFinder Items.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/RevealFinder Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 428,
+ "name": "ReviewPhotos.action",
+ "path": "Automator/ReviewPhotos.action",
+ "children": [
+ {
+ "value": 428,
+ "name": "Contents",
+ "path": "Automator/ReviewPhotos.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "RotateImages.action",
+ "path": "Automator/RotateImages.action",
+ "children": [
+ {
+ "value": 56,
+ "name": "Contents",
+ "path": "Automator/RotateImages.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 308,
+ "name": "RunAppleScript.action",
+ "path": "Automator/RunAppleScript.action",
+ "children": [
+ {
+ "value": 308,
+ "name": "Contents",
+ "path": "Automator/RunAppleScript.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "RunSelf-Test.action",
+ "path": "Automator/RunSelf-Test.action",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Automator/RunSelf-Test.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 316,
+ "name": "RunShell Script.action",
+ "path": "Automator/RunShell Script.action",
+ "children": [
+ {
+ "value": 316,
+ "name": "Contents",
+ "path": "Automator/RunShell Script.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 36,
+ "name": "RunWeb Service.action",
+ "path": "Automator/RunWeb Service.action",
+ "children": [
+ {
+ "value": 36,
+ "name": "Contents",
+ "path": "Automator/RunWeb Service.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 416,
+ "name": "RunWorkflow.action",
+ "path": "Automator/RunWorkflow.action",
+ "children": [
+ {
+ "value": 416,
+ "name": "Contents",
+ "path": "Automator/RunWorkflow.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "SaveImages from Web Content.action",
+ "path": "Automator/SaveImages from Web Content.action",
+ "children": [
+ {
+ "value": 32,
+ "name": "Contents",
+ "path": "Automator/SaveImages from Web Content.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "ScaleImages.action",
+ "path": "Automator/ScaleImages.action",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Automator/ScaleImages.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2112,
+ "name": "SearchPDFs.action",
+ "path": "Automator/SearchPDFs.action",
+ "children": [
+ {
+ "value": 2112,
+ "name": "Contents",
+ "path": "Automator/SearchPDFs.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "SelectFonts in Font Book.action",
+ "path": "Automator/SelectFonts in Font Book.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/SelectFonts in Font Book.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 944,
+ "name": "SendBirthday Greetings.action",
+ "path": "Automator/SendBirthday Greetings.action",
+ "children": [
+ {
+ "value": 944,
+ "name": "Contents",
+ "path": "Automator/SendBirthday Greetings.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "SendOutgoing Messages.action",
+ "path": "Automator/SendOutgoing Messages.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/SendOutgoing Messages.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "SetApplication for Files.action",
+ "path": "Automator/SetApplication for Files.action",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "Automator/SetApplication for Files.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 340,
+ "name": "SetComputer Volume.action",
+ "path": "Automator/SetComputer Volume.action",
+ "children": [
+ {
+ "value": 340,
+ "name": "Contents",
+ "path": "Automator/SetComputer Volume.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "SetContents of TextEdit Document.action",
+ "path": "Automator/SetContents of TextEdit Document.action",
+ "children": [
+ {
+ "value": 44,
+ "name": "Contents",
+ "path": "Automator/SetContents of TextEdit Document.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "SetDesktop Picture.action",
+ "path": "Automator/SetDesktop Picture.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/SetDesktop Picture.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 820,
+ "name": "SetFolder Views.action",
+ "path": "Automator/SetFolder Views.action",
+ "children": [
+ {
+ "value": 820,
+ "name": "Contents",
+ "path": "Automator/SetFolder Views.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "SetiDVD Background Image.action",
+ "path": "Automator/SetiDVD Background Image.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/SetiDVD Background Image.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "SetiDVD Button Face.action",
+ "path": "Automator/SetiDVD Button Face.action",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Automator/SetiDVD Button Face.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 112,
+ "name": "SetInfo of iTunes Songs.action",
+ "path": "Automator/SetInfo of iTunes Songs.action",
+ "children": [
+ {
+ "value": 112,
+ "name": "Contents",
+ "path": "Automator/SetInfo of iTunes Songs.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 408,
+ "name": "SetiTunes Equalizer.action",
+ "path": "Automator/SetiTunes Equalizer.action",
+ "children": [
+ {
+ "value": 408,
+ "name": "Contents",
+ "path": "Automator/SetiTunes Equalizer.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "SetiTunes Volume.action",
+ "path": "Automator/SetiTunes Volume.action",
+ "children": [
+ {
+ "value": 32,
+ "name": "Contents",
+ "path": "Automator/SetiTunes Volume.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 280,
+ "name": "SetMovie Annotations.action",
+ "path": "Automator/SetMovie Annotations.action",
+ "children": [
+ {
+ "value": 280,
+ "name": "Contents",
+ "path": "Automator/SetMovie Annotations.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 256,
+ "name": "SetMovie Playback Properties.action",
+ "path": "Automator/SetMovie Playback Properties.action",
+ "children": [
+ {
+ "value": 256,
+ "name": "Contents",
+ "path": "Automator/SetMovie Playback Properties.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "SetMovie URL.action",
+ "path": "Automator/SetMovie URL.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/SetMovie URL.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 408,
+ "name": "SetOptions of iTunes Songs.action",
+ "path": "Automator/SetOptions of iTunes Songs.action",
+ "children": [
+ {
+ "value": 408,
+ "name": "Contents",
+ "path": "Automator/SetOptions of iTunes Songs.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 408,
+ "name": "SetPDF Metadata.action",
+ "path": "Automator/SetPDF Metadata.action",
+ "children": [
+ {
+ "value": 408,
+ "name": "Contents",
+ "path": "Automator/SetPDF Metadata.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "SetSpotlight Comments for Finder Items.action",
+ "path": "Automator/SetSpotlight Comments for Finder Items.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/SetSpotlight Comments for Finder Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "SetValue of Variable.action",
+ "path": "Automator/SetValue of Variable.action",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Automator/SetValue of Variable.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ShowMain iDVD Menu.action",
+ "path": "Automator/ShowMain iDVD Menu.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ShowMain iDVD Menu.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ShowNext Keynote Slide.action",
+ "path": "Automator/ShowNext Keynote Slide.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ShowNext Keynote Slide.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "ShowPrevious Keynote Slide.action",
+ "path": "Automator/ShowPrevious Keynote Slide.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/ShowPrevious Keynote Slide.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "ShowSpecified Keynote Slide.action",
+ "path": "Automator/ShowSpecified Keynote Slide.action",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "Automator/ShowSpecified Keynote Slide.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 36,
+ "name": "SortFinder Items.action",
+ "path": "Automator/SortFinder Items.action",
+ "children": [
+ {
+ "value": 36,
+ "name": "Contents",
+ "path": "Automator/SortFinder Items.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "SpeakText.action",
+ "path": "Automator/SpeakText.action",
+ "children": [
+ {
+ "value": 32,
+ "name": "Contents",
+ "path": "Automator/SpeakText.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "SpotlightLeopard.action",
+ "path": "Automator/SpotlightLeopard.action",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Automator/SpotlightLeopard.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "StartCapture.action",
+ "path": "Automator/StartCapture.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/StartCapture.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "StartiTunes Playing.action",
+ "path": "Automator/StartiTunes Playing.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/StartiTunes Playing.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "StartiTunes Visuals.action",
+ "path": "Automator/StartiTunes Visuals.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/StartiTunes Visuals.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "StartKeynote Slideshow.action",
+ "path": "Automator/StartKeynote Slideshow.action",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "Automator/StartKeynote Slideshow.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "StartScreen Saver.action",
+ "path": "Automator/StartScreen Saver.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/StartScreen Saver.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "StopCapture.action",
+ "path": "Automator/StopCapture.action",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Automator/StopCapture.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "StopDVD Playback.action",
+ "path": "Automator/StopDVD Playback.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/StopDVD Playback.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "StopiTunes Visuals.action",
+ "path": "Automator/StopiTunes Visuals.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/StopiTunes Visuals.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "StopKeynote Slideshow.action",
+ "path": "Automator/StopKeynote Slideshow.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/StopKeynote Slideshow.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "SystemProfile.action",
+ "path": "Automator/SystemProfile.action",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "Automator/SystemProfile.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "TakePicture.action",
+ "path": "Automator/TakePicture.action",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Automator/TakePicture.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 420,
+ "name": "TakeScreenshot.action",
+ "path": "Automator/TakeScreenshot.action",
+ "children": [
+ {
+ "value": 420,
+ "name": "Contents",
+ "path": "Automator/TakeScreenshot.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "TakeVideo Snapshot.action",
+ "path": "Automator/TakeVideo Snapshot.action",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Automator/TakeVideo Snapshot.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 100,
+ "name": "Textto Audio File.action",
+ "path": "Automator/Textto Audio File.action",
+ "children": [
+ {
+ "value": 100,
+ "name": "Contents",
+ "path": "Automator/Textto Audio File.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 436,
+ "name": "Textto EPUB File.action",
+ "path": "Automator/Textto EPUB File.action",
+ "children": [
+ {
+ "value": 436,
+ "name": "Contents",
+ "path": "Automator/Textto EPUB File.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "UpdateiPod.action",
+ "path": "Automator/UpdateiPod.action",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Automator/UpdateiPod.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 264,
+ "name": "ValidateFont Files.action",
+ "path": "Automator/ValidateFont Files.action",
+ "children": [
+ {
+ "value": 264,
+ "name": "Contents",
+ "path": "Automator/ValidateFont Files.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 272,
+ "name": "ViewResults.action",
+ "path": "Automator/ViewResults.action",
+ "children": [
+ {
+ "value": 272,
+ "name": "Contents",
+ "path": "Automator/ViewResults.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "Waitfor User Action.action",
+ "path": "Automator/Waitfor User Action.action",
+ "children": [
+ {
+ "value": 64,
+ "name": "Contents",
+ "path": "Automator/Waitfor User Action.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 456,
+ "name": "WatchMe Do.action",
+ "path": "Automator/WatchMe Do.action",
+ "children": [
+ {
+ "value": 456,
+ "name": "Contents",
+ "path": "Automator/WatchMe Do.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "WatermarkPDF Documents.action",
+ "path": "Automator/WatermarkPDF Documents.action",
+ "children": [
+ {
+ "value": 72,
+ "name": "Contents",
+ "path": "Automator/WatermarkPDF Documents.action/Contents"
+ }
+ ]
+ },
+ {
+ "value": 80,
+ "name": "WebsitePopup.action",
+ "path": "Automator/WebsitePopup.action",
+ "children": [
+ {
+ "value": 80,
+ "name": "Contents",
+ "path": "Automator/WebsitePopup.action/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 2868,
+ "name": "BridgeSupport",
+ "path": "BridgeSupport",
+ "children": [
+ {
+ "value": 0,
+ "name": "include",
+ "path": "BridgeSupport/include"
+ },
+ {
+ "value": 2840,
+ "name": "ruby-2.0",
+ "path": "BridgeSupport/ruby-2.0"
+ }
+ ]
+ },
+ {
+ "value": 21988,
+ "name": "Caches",
+ "path": "Caches",
+ "children": [
+ {
+ "value": 2296,
+ "name": "com.apple.CVMS",
+ "path": "Caches/com.apple.CVMS"
+ },
+ {
+ "value": 19048,
+ "name": "com.apple.kext.caches",
+ "path": "Caches/com.apple.kext.caches",
+ "children": [
+ {
+ "value": 12,
+ "name": "Directories",
+ "path": "Caches/com.apple.kext.caches/Directories"
+ },
+ {
+ "value": 19036,
+ "name": "Startup",
+ "path": "Caches/com.apple.kext.caches/Startup"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 2252,
+ "name": "ColorPickers",
+ "path": "ColorPickers",
+ "children": [
+ {
+ "value": 288,
+ "name": "NSColorPickerCrayon.colorPicker",
+ "path": "ColorPickers/NSColorPickerCrayon.colorPicker",
+ "children": [
+ {
+ "value": 0,
+ "name": "_CodeSignature",
+ "path": "ColorPickers/NSColorPickerCrayon.colorPicker/_CodeSignature"
+ },
+ {
+ "value": 288,
+ "name": "Resources",
+ "path": "ColorPickers/NSColorPickerCrayon.colorPicker/Resources"
+ }
+ ]
+ },
+ {
+ "value": 524,
+ "name": "NSColorPickerPageableNameList.colorPicker",
+ "path": "ColorPickers/NSColorPickerPageableNameList.colorPicker",
+ "children": [
+ {
+ "value": 0,
+ "name": "_CodeSignature",
+ "path": "ColorPickers/NSColorPickerPageableNameList.colorPicker/_CodeSignature"
+ },
+ {
+ "value": 524,
+ "name": "Resources",
+ "path": "ColorPickers/NSColorPickerPageableNameList.colorPicker/Resources"
+ }
+ ]
+ },
+ {
+ "value": 848,
+ "name": "NSColorPickerSliders.colorPicker",
+ "path": "ColorPickers/NSColorPickerSliders.colorPicker",
+ "children": [
+ {
+ "value": 0,
+ "name": "_CodeSignature",
+ "path": "ColorPickers/NSColorPickerSliders.colorPicker/_CodeSignature"
+ },
+ {
+ "value": 848,
+ "name": "Resources",
+ "path": "ColorPickers/NSColorPickerSliders.colorPicker/Resources"
+ }
+ ]
+ },
+ {
+ "value": 532,
+ "name": "NSColorPickerUser.colorPicker",
+ "path": "ColorPickers/NSColorPickerUser.colorPicker",
+ "children": [
+ {
+ "value": 0,
+ "name": "_CodeSignature",
+ "path": "ColorPickers/NSColorPickerUser.colorPicker/_CodeSignature"
+ },
+ {
+ "value": 532,
+ "name": "Resources",
+ "path": "ColorPickers/NSColorPickerUser.colorPicker/Resources"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "NSColorPickerWheel.colorPicker",
+ "path": "ColorPickers/NSColorPickerWheel.colorPicker",
+ "children": [
+ {
+ "value": 0,
+ "name": "_CodeSignature",
+ "path": "ColorPickers/NSColorPickerWheel.colorPicker/_CodeSignature"
+ },
+ {
+ "value": 60,
+ "name": "Resources",
+ "path": "ColorPickers/NSColorPickerWheel.colorPicker/Resources"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "Colors",
+ "path": "Colors",
+ "children": [
+ {
+ "value": 0,
+ "name": "Apple.clr",
+ "path": "Colors/Apple.clr",
+ "children": [
+ {
+ "value": 0,
+ "name": "ar.lproj",
+ "path": "Colors/Apple.clr/ar.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ca.lproj",
+ "path": "Colors/Apple.clr/ca.lproj"
+ },
+ {
+ "value": 0,
+ "name": "cs.lproj",
+ "path": "Colors/Apple.clr/cs.lproj"
+ },
+ {
+ "value": 0,
+ "name": "da.lproj",
+ "path": "Colors/Apple.clr/da.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Dutch.lproj",
+ "path": "Colors/Apple.clr/Dutch.lproj"
+ },
+ {
+ "value": 0,
+ "name": "el.lproj",
+ "path": "Colors/Apple.clr/el.lproj"
+ },
+ {
+ "value": 0,
+ "name": "English.lproj",
+ "path": "Colors/Apple.clr/English.lproj"
+ },
+ {
+ "value": 0,
+ "name": "fi.lproj",
+ "path": "Colors/Apple.clr/fi.lproj"
+ },
+ {
+ "value": 0,
+ "name": "French.lproj",
+ "path": "Colors/Apple.clr/French.lproj"
+ },
+ {
+ "value": 0,
+ "name": "German.lproj",
+ "path": "Colors/Apple.clr/German.lproj"
+ },
+ {
+ "value": 0,
+ "name": "he.lproj",
+ "path": "Colors/Apple.clr/he.lproj"
+ },
+ {
+ "value": 0,
+ "name": "hr.lproj",
+ "path": "Colors/Apple.clr/hr.lproj"
+ },
+ {
+ "value": 0,
+ "name": "hu.lproj",
+ "path": "Colors/Apple.clr/hu.lproj"
+ },
+ {
+ "value": 0,
+ "name": "id.lproj",
+ "path": "Colors/Apple.clr/id.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Italian.lproj",
+ "path": "Colors/Apple.clr/Italian.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Japanese.lproj",
+ "path": "Colors/Apple.clr/Japanese.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ko.lproj",
+ "path": "Colors/Apple.clr/ko.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ms.lproj",
+ "path": "Colors/Apple.clr/ms.lproj"
+ },
+ {
+ "value": 0,
+ "name": "no.lproj",
+ "path": "Colors/Apple.clr/no.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pl.lproj",
+ "path": "Colors/Apple.clr/pl.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pt.lproj",
+ "path": "Colors/Apple.clr/pt.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pt_PT.lproj",
+ "path": "Colors/Apple.clr/pt_PT.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ro.lproj",
+ "path": "Colors/Apple.clr/ro.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ru.lproj",
+ "path": "Colors/Apple.clr/ru.lproj"
+ },
+ {
+ "value": 0,
+ "name": "sk.lproj",
+ "path": "Colors/Apple.clr/sk.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Spanish.lproj",
+ "path": "Colors/Apple.clr/Spanish.lproj"
+ },
+ {
+ "value": 0,
+ "name": "sv.lproj",
+ "path": "Colors/Apple.clr/sv.lproj"
+ },
+ {
+ "value": 0,
+ "name": "th.lproj",
+ "path": "Colors/Apple.clr/th.lproj"
+ },
+ {
+ "value": 0,
+ "name": "tr.lproj",
+ "path": "Colors/Apple.clr/tr.lproj"
+ },
+ {
+ "value": 0,
+ "name": "uk.lproj",
+ "path": "Colors/Apple.clr/uk.lproj"
+ },
+ {
+ "value": 0,
+ "name": "vi.lproj",
+ "path": "Colors/Apple.clr/vi.lproj"
+ },
+ {
+ "value": 0,
+ "name": "zh_CN.lproj",
+ "path": "Colors/Apple.clr/zh_CN.lproj"
+ },
+ {
+ "value": 0,
+ "name": "zh_TW.lproj",
+ "path": "Colors/Apple.clr/zh_TW.lproj"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "Crayons.clr",
+ "path": "Colors/Crayons.clr",
+ "children": [
+ {
+ "value": 0,
+ "name": "ar.lproj",
+ "path": "Colors/Crayons.clr/ar.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ca.lproj",
+ "path": "Colors/Crayons.clr/ca.lproj"
+ },
+ {
+ "value": 0,
+ "name": "cs.lproj",
+ "path": "Colors/Crayons.clr/cs.lproj"
+ },
+ {
+ "value": 0,
+ "name": "da.lproj",
+ "path": "Colors/Crayons.clr/da.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Dutch.lproj",
+ "path": "Colors/Crayons.clr/Dutch.lproj"
+ },
+ {
+ "value": 0,
+ "name": "el.lproj",
+ "path": "Colors/Crayons.clr/el.lproj"
+ },
+ {
+ "value": 0,
+ "name": "English.lproj",
+ "path": "Colors/Crayons.clr/English.lproj"
+ },
+ {
+ "value": 0,
+ "name": "fi.lproj",
+ "path": "Colors/Crayons.clr/fi.lproj"
+ },
+ {
+ "value": 0,
+ "name": "French.lproj",
+ "path": "Colors/Crayons.clr/French.lproj"
+ },
+ {
+ "value": 0,
+ "name": "German.lproj",
+ "path": "Colors/Crayons.clr/German.lproj"
+ },
+ {
+ "value": 0,
+ "name": "he.lproj",
+ "path": "Colors/Crayons.clr/he.lproj"
+ },
+ {
+ "value": 0,
+ "name": "hr.lproj",
+ "path": "Colors/Crayons.clr/hr.lproj"
+ },
+ {
+ "value": 0,
+ "name": "hu.lproj",
+ "path": "Colors/Crayons.clr/hu.lproj"
+ },
+ {
+ "value": 0,
+ "name": "id.lproj",
+ "path": "Colors/Crayons.clr/id.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Italian.lproj",
+ "path": "Colors/Crayons.clr/Italian.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Japanese.lproj",
+ "path": "Colors/Crayons.clr/Japanese.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ko.lproj",
+ "path": "Colors/Crayons.clr/ko.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ms.lproj",
+ "path": "Colors/Crayons.clr/ms.lproj"
+ },
+ {
+ "value": 0,
+ "name": "no.lproj",
+ "path": "Colors/Crayons.clr/no.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pl.lproj",
+ "path": "Colors/Crayons.clr/pl.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pt.lproj",
+ "path": "Colors/Crayons.clr/pt.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pt_PT.lproj",
+ "path": "Colors/Crayons.clr/pt_PT.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ro.lproj",
+ "path": "Colors/Crayons.clr/ro.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ru.lproj",
+ "path": "Colors/Crayons.clr/ru.lproj"
+ },
+ {
+ "value": 0,
+ "name": "sk.lproj",
+ "path": "Colors/Crayons.clr/sk.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Spanish.lproj",
+ "path": "Colors/Crayons.clr/Spanish.lproj"
+ },
+ {
+ "value": 0,
+ "name": "sv.lproj",
+ "path": "Colors/Crayons.clr/sv.lproj"
+ },
+ {
+ "value": 0,
+ "name": "th.lproj",
+ "path": "Colors/Crayons.clr/th.lproj"
+ },
+ {
+ "value": 0,
+ "name": "tr.lproj",
+ "path": "Colors/Crayons.clr/tr.lproj"
+ },
+ {
+ "value": 0,
+ "name": "uk.lproj",
+ "path": "Colors/Crayons.clr/uk.lproj"
+ },
+ {
+ "value": 0,
+ "name": "vi.lproj",
+ "path": "Colors/Crayons.clr/vi.lproj"
+ },
+ {
+ "value": 0,
+ "name": "zh_CN.lproj",
+ "path": "Colors/Crayons.clr/zh_CN.lproj"
+ },
+ {
+ "value": 0,
+ "name": "zh_TW.lproj",
+ "path": "Colors/Crayons.clr/zh_TW.lproj"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "System.clr",
+ "path": "Colors/System.clr",
+ "children": [
+ {
+ "value": 0,
+ "name": "ar.lproj",
+ "path": "Colors/System.clr/ar.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ca.lproj",
+ "path": "Colors/System.clr/ca.lproj"
+ },
+ {
+ "value": 0,
+ "name": "cs.lproj",
+ "path": "Colors/System.clr/cs.lproj"
+ },
+ {
+ "value": 0,
+ "name": "da.lproj",
+ "path": "Colors/System.clr/da.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Dutch.lproj",
+ "path": "Colors/System.clr/Dutch.lproj"
+ },
+ {
+ "value": 0,
+ "name": "el.lproj",
+ "path": "Colors/System.clr/el.lproj"
+ },
+ {
+ "value": 0,
+ "name": "English.lproj",
+ "path": "Colors/System.clr/English.lproj"
+ },
+ {
+ "value": 0,
+ "name": "fi.lproj",
+ "path": "Colors/System.clr/fi.lproj"
+ },
+ {
+ "value": 0,
+ "name": "French.lproj",
+ "path": "Colors/System.clr/French.lproj"
+ },
+ {
+ "value": 0,
+ "name": "German.lproj",
+ "path": "Colors/System.clr/German.lproj"
+ },
+ {
+ "value": 0,
+ "name": "he.lproj",
+ "path": "Colors/System.clr/he.lproj"
+ },
+ {
+ "value": 0,
+ "name": "hr.lproj",
+ "path": "Colors/System.clr/hr.lproj"
+ },
+ {
+ "value": 0,
+ "name": "hu.lproj",
+ "path": "Colors/System.clr/hu.lproj"
+ },
+ {
+ "value": 0,
+ "name": "id.lproj",
+ "path": "Colors/System.clr/id.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Italian.lproj",
+ "path": "Colors/System.clr/Italian.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Japanese.lproj",
+ "path": "Colors/System.clr/Japanese.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ko.lproj",
+ "path": "Colors/System.clr/ko.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ms.lproj",
+ "path": "Colors/System.clr/ms.lproj"
+ },
+ {
+ "value": 0,
+ "name": "no.lproj",
+ "path": "Colors/System.clr/no.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pl.lproj",
+ "path": "Colors/System.clr/pl.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pt.lproj",
+ "path": "Colors/System.clr/pt.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pt_PT.lproj",
+ "path": "Colors/System.clr/pt_PT.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ro.lproj",
+ "path": "Colors/System.clr/ro.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ru.lproj",
+ "path": "Colors/System.clr/ru.lproj"
+ },
+ {
+ "value": 0,
+ "name": "sk.lproj",
+ "path": "Colors/System.clr/sk.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Spanish.lproj",
+ "path": "Colors/System.clr/Spanish.lproj"
+ },
+ {
+ "value": 0,
+ "name": "sv.lproj",
+ "path": "Colors/System.clr/sv.lproj"
+ },
+ {
+ "value": 0,
+ "name": "th.lproj",
+ "path": "Colors/System.clr/th.lproj"
+ },
+ {
+ "value": 0,
+ "name": "tr.lproj",
+ "path": "Colors/System.clr/tr.lproj"
+ },
+ {
+ "value": 0,
+ "name": "uk.lproj",
+ "path": "Colors/System.clr/uk.lproj"
+ },
+ {
+ "value": 0,
+ "name": "vi.lproj",
+ "path": "Colors/System.clr/vi.lproj"
+ },
+ {
+ "value": 0,
+ "name": "zh_CN.lproj",
+ "path": "Colors/System.clr/zh_CN.lproj"
+ },
+ {
+ "value": 0,
+ "name": "zh_TW.lproj",
+ "path": "Colors/System.clr/zh_TW.lproj"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 2908,
+ "name": "ColorSync",
+ "path": "ColorSync",
+ "children": [
+ {
+ "value": 2868,
+ "name": "Calibrators",
+ "path": "ColorSync/Calibrators",
+ "children": [
+ {
+ "value": 2868,
+ "name": "DisplayCalibrator.app",
+ "path": "ColorSync/Calibrators/DisplayCalibrator.app"
+ }
+ ]
+ },
+ {
+ "value": 40,
+ "name": "Profiles",
+ "path": "ColorSync/Profiles"
+ }
+ ]
+ },
+ {
+ "value": 21772,
+ "name": "Components",
+ "path": "Components",
+ "children": [
+ {
+ "value": 416,
+ "name": "AppleScript.component",
+ "path": "Components/AppleScript.component",
+ "children": [
+ {
+ "value": 416,
+ "name": "Contents",
+ "path": "Components/AppleScript.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2592,
+ "name": "AudioCodecs.component",
+ "path": "Components/AudioCodecs.component",
+ "children": [
+ {
+ "value": 2592,
+ "name": "Contents",
+ "path": "Components/AudioCodecs.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 92,
+ "name": "AUSpeechSynthesis.component",
+ "path": "Components/AUSpeechSynthesis.component",
+ "children": [
+ {
+ "value": 92,
+ "name": "Contents",
+ "path": "Components/AUSpeechSynthesis.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 18492,
+ "name": "CoreAudio.component",
+ "path": "Components/CoreAudio.component",
+ "children": [
+ {
+ "value": 18492,
+ "name": "Contents",
+ "path": "Components/CoreAudio.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "IOFWDVComponents.component",
+ "path": "Components/IOFWDVComponents.component",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "Components/IOFWDVComponents.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "IOQTComponents.component",
+ "path": "Components/IOQTComponents.component",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "Components/IOQTComponents.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "PDFImporter.component",
+ "path": "Components/PDFImporter.component",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Components/PDFImporter.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 120,
+ "name": "SoundManagerComponents.component",
+ "path": "Components/SoundManagerComponents.component",
+ "children": [
+ {
+ "value": 120,
+ "name": "Contents",
+ "path": "Components/SoundManagerComponents.component/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 45728,
+ "name": "Compositions",
+ "path": "Compositions",
+ "children": [
+ {
+ "value": 0,
+ "name": ".Localization.bundle",
+ "path": "Compositions/.Localization.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Compositions/.Localization.bundle/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 409060,
+ "name": "CoreServices",
+ "path": "CoreServices",
+ "children": [
+ {
+ "value": 1152,
+ "name": "AddPrinter.app",
+ "path": "CoreServices/AddPrinter.app",
+ "children": [
+ {
+ "value": 1152,
+ "name": "Contents",
+ "path": "CoreServices/AddPrinter.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "AddressBookUrlForwarder.app",
+ "path": "CoreServices/AddressBookUrlForwarder.app",
+ "children": [
+ {
+ "value": 72,
+ "name": "Contents",
+ "path": "CoreServices/AddressBookUrlForwarder.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "AirPlayUIAgent.app",
+ "path": "CoreServices/AirPlayUIAgent.app",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "CoreServices/AirPlayUIAgent.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "AirPortBase Station Agent.app",
+ "path": "CoreServices/AirPortBase Station Agent.app",
+ "children": [
+ {
+ "value": 56,
+ "name": "Contents",
+ "path": "CoreServices/AirPortBase Station Agent.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 92,
+ "name": "AOS.bundle",
+ "path": "CoreServices/AOS.bundle",
+ "children": [
+ {
+ "value": 92,
+ "name": "Contents",
+ "path": "CoreServices/AOS.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1564,
+ "name": "AppDownloadLauncher.app",
+ "path": "CoreServices/AppDownloadLauncher.app",
+ "children": [
+ {
+ "value": 1564,
+ "name": "Contents",
+ "path": "CoreServices/AppDownloadLauncher.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 376,
+ "name": "Apple80211Agent.app",
+ "path": "CoreServices/Apple80211Agent.app",
+ "children": [
+ {
+ "value": 376,
+ "name": "Contents",
+ "path": "CoreServices/Apple80211Agent.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 480,
+ "name": "AppleFileServer.app",
+ "path": "CoreServices/AppleFileServer.app",
+ "children": [
+ {
+ "value": 480,
+ "name": "Contents",
+ "path": "CoreServices/AppleFileServer.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "AppleGraphicsWarning.app",
+ "path": "CoreServices/AppleGraphicsWarning.app",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "CoreServices/AppleGraphicsWarning.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1752,
+ "name": "AppleScriptUtility.app",
+ "path": "CoreServices/AppleScriptUtility.app",
+ "children": [
+ {
+ "value": 1752,
+ "name": "Contents",
+ "path": "CoreServices/AppleScriptUtility.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "ApplicationFirewall.bundle",
+ "path": "CoreServices/ApplicationFirewall.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "CoreServices/ApplicationFirewall.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 14808,
+ "name": "Applications",
+ "path": "CoreServices/Applications",
+ "children": [
+ {
+ "value": 1792,
+ "name": "NetworkUtility.app",
+ "path": "CoreServices/Applications/NetworkUtility.app"
+ },
+ {
+ "value": 7328,
+ "name": "RAIDUtility.app",
+ "path": "CoreServices/Applications/RAIDUtility.app"
+ },
+ {
+ "value": 5688,
+ "name": "WirelessDiagnostics.app",
+ "path": "CoreServices/Applications/WirelessDiagnostics.app"
+ }
+ ]
+ },
+ {
+ "value": 6620,
+ "name": "ArchiveUtility.app",
+ "path": "CoreServices/ArchiveUtility.app",
+ "children": [
+ {
+ "value": 6620,
+ "name": "Contents",
+ "path": "CoreServices/ArchiveUtility.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "AutomatorLauncher.app",
+ "path": "CoreServices/AutomatorLauncher.app",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "CoreServices/AutomatorLauncher.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 584,
+ "name": "AutomatorRunner.app",
+ "path": "CoreServices/AutomatorRunner.app",
+ "children": [
+ {
+ "value": 584,
+ "name": "Contents",
+ "path": "CoreServices/AutomatorRunner.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 412,
+ "name": "AVRCPAgent.app",
+ "path": "CoreServices/AVRCPAgent.app",
+ "children": [
+ {
+ "value": 412,
+ "name": "Contents",
+ "path": "CoreServices/AVRCPAgent.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1400,
+ "name": "backupd.bundle",
+ "path": "CoreServices/backupd.bundle",
+ "children": [
+ {
+ "value": 1400,
+ "name": "Contents",
+ "path": "CoreServices/backupd.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2548,
+ "name": "BluetoothSetup Assistant.app",
+ "path": "CoreServices/BluetoothSetup Assistant.app",
+ "children": [
+ {
+ "value": 2548,
+ "name": "Contents",
+ "path": "CoreServices/BluetoothSetup Assistant.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2588,
+ "name": "BluetoothUIServer.app",
+ "path": "CoreServices/BluetoothUIServer.app",
+ "children": [
+ {
+ "value": 2588,
+ "name": "Contents",
+ "path": "CoreServices/BluetoothUIServer.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1288,
+ "name": "CalendarFileHandler.app",
+ "path": "CoreServices/CalendarFileHandler.app",
+ "children": [
+ {
+ "value": 1288,
+ "name": "Contents",
+ "path": "CoreServices/CalendarFileHandler.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "CaptiveNetwork Assistant.app",
+ "path": "CoreServices/CaptiveNetwork Assistant.app",
+ "children": [
+ {
+ "value": 44,
+ "name": "Contents",
+ "path": "CoreServices/CaptiveNetwork Assistant.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "CarbonSpellChecker.bundle",
+ "path": "CoreServices/CarbonSpellChecker.bundle",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "CoreServices/CarbonSpellChecker.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 27144,
+ "name": "CertificateAssistant.app",
+ "path": "CoreServices/CertificateAssistant.app",
+ "children": [
+ {
+ "value": 27144,
+ "name": "Contents",
+ "path": "CoreServices/CertificateAssistant.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "CommonCocoaPanels.bundle",
+ "path": "CoreServices/CommonCocoaPanels.bundle",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "CoreServices/CommonCocoaPanels.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 676,
+ "name": "CoreLocationAgent.app",
+ "path": "CoreServices/CoreLocationAgent.app",
+ "children": [
+ {
+ "value": 676,
+ "name": "Contents",
+ "path": "CoreServices/CoreLocationAgent.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 164,
+ "name": "CoreServicesUIAgent.app",
+ "path": "CoreServices/CoreServicesUIAgent.app",
+ "children": [
+ {
+ "value": 164,
+ "name": "Contents",
+ "path": "CoreServices/CoreServicesUIAgent.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 171300,
+ "name": "CoreTypes.bundle",
+ "path": "CoreServices/CoreTypes.bundle",
+ "children": [
+ {
+ "value": 171300,
+ "name": "Contents",
+ "path": "CoreServices/CoreTypes.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 308,
+ "name": "DatabaseEvents.app",
+ "path": "CoreServices/DatabaseEvents.app",
+ "children": [
+ {
+ "value": 308,
+ "name": "Contents",
+ "path": "CoreServices/DatabaseEvents.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 6104,
+ "name": "DirectoryUtility.app",
+ "path": "CoreServices/DirectoryUtility.app",
+ "children": [
+ {
+ "value": 6104,
+ "name": "Contents",
+ "path": "CoreServices/DirectoryUtility.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1840,
+ "name": "DiskImageMounter.app",
+ "path": "CoreServices/DiskImageMounter.app",
+ "children": [
+ {
+ "value": 1840,
+ "name": "Contents",
+ "path": "CoreServices/DiskImageMounter.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8476,
+ "name": "Dock.app",
+ "path": "CoreServices/Dock.app",
+ "children": [
+ {
+ "value": 8476,
+ "name": "Contents",
+ "path": "CoreServices/Dock.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 696,
+ "name": "Encodings",
+ "path": "CoreServices/Encodings"
+ },
+ {
+ "value": 1024,
+ "name": "ExpansionSlot Utility.app",
+ "path": "CoreServices/ExpansionSlot Utility.app",
+ "children": [
+ {
+ "value": 1024,
+ "name": "Contents",
+ "path": "CoreServices/ExpansionSlot Utility.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1732,
+ "name": "FileSync.app",
+ "path": "CoreServices/FileSync.app",
+ "children": [
+ {
+ "value": 1732,
+ "name": "Contents",
+ "path": "CoreServices/FileSync.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 572,
+ "name": "FileSyncAgent.app",
+ "path": "CoreServices/FileSyncAgent.app",
+ "children": [
+ {
+ "value": 572,
+ "name": "Contents",
+ "path": "CoreServices/FileSyncAgent.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 35168,
+ "name": "Finder.app",
+ "path": "CoreServices/Finder.app",
+ "children": [
+ {
+ "value": 35168,
+ "name": "Contents",
+ "path": "CoreServices/Finder.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "FirmwareUpdates",
+ "path": "CoreServices/FirmwareUpdates"
+ },
+ {
+ "value": 336,
+ "name": "FolderActions Dispatcher.app",
+ "path": "CoreServices/FolderActions Dispatcher.app",
+ "children": [
+ {
+ "value": 336,
+ "name": "Contents",
+ "path": "CoreServices/FolderActions Dispatcher.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1820,
+ "name": "FolderActions Setup.app",
+ "path": "CoreServices/FolderActions Setup.app",
+ "children": [
+ {
+ "value": 1820,
+ "name": "Contents",
+ "path": "CoreServices/FolderActions Setup.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 3268,
+ "name": "HelpViewer.app",
+ "path": "CoreServices/HelpViewer.app",
+ "children": [
+ {
+ "value": 3268,
+ "name": "Contents",
+ "path": "CoreServices/HelpViewer.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 352,
+ "name": "ImageEvents.app",
+ "path": "CoreServices/ImageEvents.app",
+ "children": [
+ {
+ "value": 352,
+ "name": "Contents",
+ "path": "CoreServices/ImageEvents.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2012,
+ "name": "InstallCommand Line Developer Tools.app",
+ "path": "CoreServices/InstallCommand Line Developer Tools.app",
+ "children": [
+ {
+ "value": 2012,
+ "name": "Contents",
+ "path": "CoreServices/InstallCommand Line Developer Tools.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 108,
+ "name": "Installin Progress.app",
+ "path": "CoreServices/Installin Progress.app",
+ "children": [
+ {
+ "value": 108,
+ "name": "Contents",
+ "path": "CoreServices/Installin Progress.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 7444,
+ "name": "Installer.app",
+ "path": "CoreServices/Installer.app",
+ "children": [
+ {
+ "value": 7444,
+ "name": "Contents",
+ "path": "CoreServices/Installer.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "InstallerStatusNotifications.bundle",
+ "path": "CoreServices/InstallerStatusNotifications.bundle",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "CoreServices/InstallerStatusNotifications.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "InternetSharing.bundle",
+ "path": "CoreServices/InternetSharing.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Resources",
+ "path": "CoreServices/InternetSharing.bundle/Resources"
+ }
+ ]
+ },
+ {
+ "value": 244,
+ "name": "JarLauncher.app",
+ "path": "CoreServices/JarLauncher.app",
+ "children": [
+ {
+ "value": 244,
+ "name": "Contents",
+ "path": "CoreServices/JarLauncher.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 152,
+ "name": "JavaWeb Start.app",
+ "path": "CoreServices/JavaWeb Start.app",
+ "children": [
+ {
+ "value": 152,
+ "name": "Contents",
+ "path": "CoreServices/JavaWeb Start.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "KernelEventAgent.bundle",
+ "path": "CoreServices/KernelEventAgent.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "CoreServices/KernelEventAgent.bundle/Contents"
+ },
+ {
+ "value": 12,
+ "name": "FileSystemUIAgent.app",
+ "path": "CoreServices/KernelEventAgent.bundle/FileSystemUIAgent.app"
+ }
+ ]
+ },
+ {
+ "value": 1016,
+ "name": "KeyboardSetupAssistant.app",
+ "path": "CoreServices/KeyboardSetupAssistant.app",
+ "children": [
+ {
+ "value": 1016,
+ "name": "Contents",
+ "path": "CoreServices/KeyboardSetupAssistant.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 840,
+ "name": "KeychainCircle Notification.app",
+ "path": "CoreServices/KeychainCircle Notification.app",
+ "children": [
+ {
+ "value": 840,
+ "name": "Contents",
+ "path": "CoreServices/KeychainCircle Notification.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1448,
+ "name": "LanguageChooser.app",
+ "path": "CoreServices/LanguageChooser.app",
+ "children": [
+ {
+ "value": 1448,
+ "name": "Contents",
+ "path": "CoreServices/LanguageChooser.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 868,
+ "name": "LocationMenu.app",
+ "path": "CoreServices/LocationMenu.app",
+ "children": [
+ {
+ "value": 868,
+ "name": "Contents",
+ "path": "CoreServices/LocationMenu.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8260,
+ "name": "loginwindow.app",
+ "path": "CoreServices/loginwindow.app",
+ "children": [
+ {
+ "value": 8260,
+ "name": "Contents",
+ "path": "CoreServices/loginwindow.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 3632,
+ "name": "ManagedClient.app",
+ "path": "CoreServices/ManagedClient.app",
+ "children": [
+ {
+ "value": 3632,
+ "name": "Contents",
+ "path": "CoreServices/ManagedClient.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "mDNSResponder.bundle",
+ "path": "CoreServices/mDNSResponder.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Resources",
+ "path": "CoreServices/mDNSResponder.bundle/Resources"
+ }
+ ]
+ },
+ {
+ "value": 420,
+ "name": "MemorySlot Utility.app",
+ "path": "CoreServices/MemorySlot Utility.app",
+ "children": [
+ {
+ "value": 420,
+ "name": "Contents",
+ "path": "CoreServices/MemorySlot Utility.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 4272,
+ "name": "MenuExtras",
+ "path": "CoreServices/MenuExtras",
+ "children": [
+ {
+ "value": 416,
+ "name": "AirPort.menu",
+ "path": "CoreServices/MenuExtras/AirPort.menu"
+ },
+ {
+ "value": 788,
+ "name": "Battery.menu",
+ "path": "CoreServices/MenuExtras/Battery.menu"
+ },
+ {
+ "value": 112,
+ "name": "Bluetooth.menu",
+ "path": "CoreServices/MenuExtras/Bluetooth.menu"
+ },
+ {
+ "value": 12,
+ "name": "Clock.menu",
+ "path": "CoreServices/MenuExtras/Clock.menu"
+ },
+ {
+ "value": 84,
+ "name": "Displays.menu",
+ "path": "CoreServices/MenuExtras/Displays.menu"
+ },
+ {
+ "value": 32,
+ "name": "Eject.menu",
+ "path": "CoreServices/MenuExtras/Eject.menu"
+ },
+ {
+ "value": 24,
+ "name": "ExpressCard.menu",
+ "path": "CoreServices/MenuExtras/ExpressCard.menu"
+ },
+ {
+ "value": 76,
+ "name": "Fax.menu",
+ "path": "CoreServices/MenuExtras/Fax.menu"
+ },
+ {
+ "value": 112,
+ "name": "HomeSync.menu",
+ "path": "CoreServices/MenuExtras/HomeSync.menu"
+ },
+ {
+ "value": 84,
+ "name": "iChat.menu",
+ "path": "CoreServices/MenuExtras/iChat.menu"
+ },
+ {
+ "value": 28,
+ "name": "Ink.menu",
+ "path": "CoreServices/MenuExtras/Ink.menu"
+ },
+ {
+ "value": 104,
+ "name": "IrDA.menu",
+ "path": "CoreServices/MenuExtras/IrDA.menu"
+ },
+ {
+ "value": 68,
+ "name": "PPP.menu",
+ "path": "CoreServices/MenuExtras/PPP.menu"
+ },
+ {
+ "value": 24,
+ "name": "PPPoE.menu",
+ "path": "CoreServices/MenuExtras/PPPoE.menu"
+ },
+ {
+ "value": 60,
+ "name": "RemoteDesktop.menu",
+ "path": "CoreServices/MenuExtras/RemoteDesktop.menu"
+ },
+ {
+ "value": 48,
+ "name": "Script Menu.menu",
+ "path": "CoreServices/MenuExtras/Script Menu.menu"
+ },
+ {
+ "value": 832,
+ "name": "TextInput.menu",
+ "path": "CoreServices/MenuExtras/TextInput.menu"
+ },
+ {
+ "value": 144,
+ "name": "TimeMachine.menu",
+ "path": "CoreServices/MenuExtras/TimeMachine.menu"
+ },
+ {
+ "value": 40,
+ "name": "UniversalAccess.menu",
+ "path": "CoreServices/MenuExtras/UniversalAccess.menu"
+ },
+ {
+ "value": 108,
+ "name": "User.menu",
+ "path": "CoreServices/MenuExtras/User.menu"
+ },
+ {
+ "value": 316,
+ "name": "Volume.menu",
+ "path": "CoreServices/MenuExtras/Volume.menu"
+ },
+ {
+ "value": 48,
+ "name": "VPN.menu",
+ "path": "CoreServices/MenuExtras/VPN.menu"
+ },
+ {
+ "value": 712,
+ "name": "WWAN.menu",
+ "path": "CoreServices/MenuExtras/WWAN.menu"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "MLTEFile.bundle",
+ "path": "CoreServices/MLTEFile.bundle",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "CoreServices/MLTEFile.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 616,
+ "name": "MRTAgent.app",
+ "path": "CoreServices/MRTAgent.app",
+ "children": [
+ {
+ "value": 616,
+ "name": "Contents",
+ "path": "CoreServices/MRTAgent.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1540,
+ "name": "NetAuthAgent.app",
+ "path": "CoreServices/NetAuthAgent.app",
+ "children": [
+ {
+ "value": 1540,
+ "name": "Contents",
+ "path": "CoreServices/NetAuthAgent.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 3388,
+ "name": "NetworkDiagnostics.app",
+ "path": "CoreServices/NetworkDiagnostics.app",
+ "children": [
+ {
+ "value": 3388,
+ "name": "Contents",
+ "path": "CoreServices/NetworkDiagnostics.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 9384,
+ "name": "NetworkSetup Assistant.app",
+ "path": "CoreServices/NetworkSetup Assistant.app",
+ "children": [
+ {
+ "value": 9384,
+ "name": "Contents",
+ "path": "CoreServices/NetworkSetup Assistant.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 716,
+ "name": "NotificationCenter.app",
+ "path": "CoreServices/NotificationCenter.app",
+ "children": [
+ {
+ "value": 716,
+ "name": "Contents",
+ "path": "CoreServices/NotificationCenter.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 948,
+ "name": "OBEXAgent.app",
+ "path": "CoreServices/OBEXAgent.app",
+ "children": [
+ {
+ "value": 948,
+ "name": "Contents",
+ "path": "CoreServices/OBEXAgent.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1596,
+ "name": "ODSAgent.app",
+ "path": "CoreServices/ODSAgent.app",
+ "children": [
+ {
+ "value": 1596,
+ "name": "Contents",
+ "path": "CoreServices/ODSAgent.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 492,
+ "name": "PassViewer.app",
+ "path": "CoreServices/PassViewer.app",
+ "children": [
+ {
+ "value": 492,
+ "name": "Contents",
+ "path": "CoreServices/PassViewer.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "PerformanceMetricLocalizations.bundle",
+ "path": "CoreServices/PerformanceMetricLocalizations.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "CoreServices/PerformanceMetricLocalizations.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "powerd.bundle",
+ "path": "CoreServices/powerd.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "_CodeSignature",
+ "path": "CoreServices/powerd.bundle/_CodeSignature"
+ },
+ {
+ "value": 0,
+ "name": "ar.lproj",
+ "path": "CoreServices/powerd.bundle/ar.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ca.lproj",
+ "path": "CoreServices/powerd.bundle/ca.lproj"
+ },
+ {
+ "value": 0,
+ "name": "cs.lproj",
+ "path": "CoreServices/powerd.bundle/cs.lproj"
+ },
+ {
+ "value": 0,
+ "name": "da.lproj",
+ "path": "CoreServices/powerd.bundle/da.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Dutch.lproj",
+ "path": "CoreServices/powerd.bundle/Dutch.lproj"
+ },
+ {
+ "value": 0,
+ "name": "el.lproj",
+ "path": "CoreServices/powerd.bundle/el.lproj"
+ },
+ {
+ "value": 0,
+ "name": "English.lproj",
+ "path": "CoreServices/powerd.bundle/English.lproj"
+ },
+ {
+ "value": 0,
+ "name": "fi.lproj",
+ "path": "CoreServices/powerd.bundle/fi.lproj"
+ },
+ {
+ "value": 0,
+ "name": "French.lproj",
+ "path": "CoreServices/powerd.bundle/French.lproj"
+ },
+ {
+ "value": 0,
+ "name": "German.lproj",
+ "path": "CoreServices/powerd.bundle/German.lproj"
+ },
+ {
+ "value": 0,
+ "name": "he.lproj",
+ "path": "CoreServices/powerd.bundle/he.lproj"
+ },
+ {
+ "value": 0,
+ "name": "hr.lproj",
+ "path": "CoreServices/powerd.bundle/hr.lproj"
+ },
+ {
+ "value": 0,
+ "name": "hu.lproj",
+ "path": "CoreServices/powerd.bundle/hu.lproj"
+ },
+ {
+ "value": 0,
+ "name": "id.lproj",
+ "path": "CoreServices/powerd.bundle/id.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Italian.lproj",
+ "path": "CoreServices/powerd.bundle/Italian.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Japanese.lproj",
+ "path": "CoreServices/powerd.bundle/Japanese.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ko.lproj",
+ "path": "CoreServices/powerd.bundle/ko.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ms.lproj",
+ "path": "CoreServices/powerd.bundle/ms.lproj"
+ },
+ {
+ "value": 0,
+ "name": "no.lproj",
+ "path": "CoreServices/powerd.bundle/no.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pl.lproj",
+ "path": "CoreServices/powerd.bundle/pl.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pt.lproj",
+ "path": "CoreServices/powerd.bundle/pt.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pt_PT.lproj",
+ "path": "CoreServices/powerd.bundle/pt_PT.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ro.lproj",
+ "path": "CoreServices/powerd.bundle/ro.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ru.lproj",
+ "path": "CoreServices/powerd.bundle/ru.lproj"
+ },
+ {
+ "value": 0,
+ "name": "sk.lproj",
+ "path": "CoreServices/powerd.bundle/sk.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Spanish.lproj",
+ "path": "CoreServices/powerd.bundle/Spanish.lproj"
+ },
+ {
+ "value": 0,
+ "name": "sv.lproj",
+ "path": "CoreServices/powerd.bundle/sv.lproj"
+ },
+ {
+ "value": 0,
+ "name": "th.lproj",
+ "path": "CoreServices/powerd.bundle/th.lproj"
+ },
+ {
+ "value": 0,
+ "name": "tr.lproj",
+ "path": "CoreServices/powerd.bundle/tr.lproj"
+ },
+ {
+ "value": 0,
+ "name": "uk.lproj",
+ "path": "CoreServices/powerd.bundle/uk.lproj"
+ },
+ {
+ "value": 0,
+ "name": "vi.lproj",
+ "path": "CoreServices/powerd.bundle/vi.lproj"
+ },
+ {
+ "value": 0,
+ "name": "zh_CN.lproj",
+ "path": "CoreServices/powerd.bundle/zh_CN.lproj"
+ },
+ {
+ "value": 0,
+ "name": "zh_TW.lproj",
+ "path": "CoreServices/powerd.bundle/zh_TW.lproj"
+ }
+ ]
+ },
+ {
+ "value": 776,
+ "name": "ProblemReporter.app",
+ "path": "CoreServices/ProblemReporter.app",
+ "children": [
+ {
+ "value": 776,
+ "name": "Contents",
+ "path": "CoreServices/ProblemReporter.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 4748,
+ "name": "RawCamera.bundle",
+ "path": "CoreServices/RawCamera.bundle",
+ "children": [
+ {
+ "value": 4748,
+ "name": "Contents",
+ "path": "CoreServices/RawCamera.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2112,
+ "name": "RawCameraSupport.bundle",
+ "path": "CoreServices/RawCameraSupport.bundle",
+ "children": [
+ {
+ "value": 2112,
+ "name": "Contents",
+ "path": "CoreServices/RawCameraSupport.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "rcd.app",
+ "path": "CoreServices/rcd.app",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "CoreServices/rcd.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 156,
+ "name": "RegisterPluginIMApp.app",
+ "path": "CoreServices/RegisterPluginIMApp.app",
+ "children": [
+ {
+ "value": 156,
+ "name": "Contents",
+ "path": "CoreServices/RegisterPluginIMApp.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 3504,
+ "name": "RemoteManagement",
+ "path": "CoreServices/RemoteManagement",
+ "children": [
+ {
+ "value": 872,
+ "name": "AppleVNCServer.bundle",
+ "path": "CoreServices/RemoteManagement/AppleVNCServer.bundle"
+ },
+ {
+ "value": 2260,
+ "name": "ARDAgent.app",
+ "path": "CoreServices/RemoteManagement/ARDAgent.app"
+ },
+ {
+ "value": 144,
+ "name": "ScreensharingAgent.bundle",
+ "path": "CoreServices/RemoteManagement/ScreensharingAgent.bundle"
+ },
+ {
+ "value": 228,
+ "name": "screensharingd.bundle",
+ "path": "CoreServices/RemoteManagement/screensharingd.bundle"
+ }
+ ]
+ },
+ {
+ "value": 672,
+ "name": "ReportPanic.app",
+ "path": "CoreServices/ReportPanic.app",
+ "children": [
+ {
+ "value": 672,
+ "name": "Contents",
+ "path": "CoreServices/ReportPanic.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "Resources",
+ "path": "CoreServices/Resources",
+ "children": [
+ {
+ "value": 0,
+ "name": "ar.lproj",
+ "path": "CoreServices/Resources/ar.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ca.lproj",
+ "path": "CoreServices/Resources/ca.lproj"
+ },
+ {
+ "value": 0,
+ "name": "cs.lproj",
+ "path": "CoreServices/Resources/cs.lproj"
+ },
+ {
+ "value": 0,
+ "name": "da.lproj",
+ "path": "CoreServices/Resources/da.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Dutch.lproj",
+ "path": "CoreServices/Resources/Dutch.lproj"
+ },
+ {
+ "value": 0,
+ "name": "el.lproj",
+ "path": "CoreServices/Resources/el.lproj"
+ },
+ {
+ "value": 0,
+ "name": "English.lproj",
+ "path": "CoreServices/Resources/English.lproj"
+ },
+ {
+ "value": 0,
+ "name": "fi.lproj",
+ "path": "CoreServices/Resources/fi.lproj"
+ },
+ {
+ "value": 0,
+ "name": "French.lproj",
+ "path": "CoreServices/Resources/French.lproj"
+ },
+ {
+ "value": 0,
+ "name": "German.lproj",
+ "path": "CoreServices/Resources/German.lproj"
+ },
+ {
+ "value": 0,
+ "name": "he.lproj",
+ "path": "CoreServices/Resources/he.lproj"
+ },
+ {
+ "value": 0,
+ "name": "hr.lproj",
+ "path": "CoreServices/Resources/hr.lproj"
+ },
+ {
+ "value": 0,
+ "name": "hu.lproj",
+ "path": "CoreServices/Resources/hu.lproj"
+ },
+ {
+ "value": 0,
+ "name": "id.lproj",
+ "path": "CoreServices/Resources/id.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Italian.lproj",
+ "path": "CoreServices/Resources/Italian.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Japanese.lproj",
+ "path": "CoreServices/Resources/Japanese.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ko.lproj",
+ "path": "CoreServices/Resources/ko.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ms.lproj",
+ "path": "CoreServices/Resources/ms.lproj"
+ },
+ {
+ "value": 0,
+ "name": "no.lproj",
+ "path": "CoreServices/Resources/no.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pl.lproj",
+ "path": "CoreServices/Resources/pl.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Profiles",
+ "path": "CoreServices/Resources/Profiles"
+ },
+ {
+ "value": 0,
+ "name": "pt.lproj",
+ "path": "CoreServices/Resources/pt.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pt_PT.lproj",
+ "path": "CoreServices/Resources/pt_PT.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ro.lproj",
+ "path": "CoreServices/Resources/ro.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ru.lproj",
+ "path": "CoreServices/Resources/ru.lproj"
+ },
+ {
+ "value": 0,
+ "name": "sk.lproj",
+ "path": "CoreServices/Resources/sk.lproj"
+ },
+ {
+ "value": 0,
+ "name": "Spanish.lproj",
+ "path": "CoreServices/Resources/Spanish.lproj"
+ },
+ {
+ "value": 0,
+ "name": "sv.lproj",
+ "path": "CoreServices/Resources/sv.lproj"
+ },
+ {
+ "value": 0,
+ "name": "th.lproj",
+ "path": "CoreServices/Resources/th.lproj"
+ },
+ {
+ "value": 0,
+ "name": "tr.lproj",
+ "path": "CoreServices/Resources/tr.lproj"
+ },
+ {
+ "value": 0,
+ "name": "uk.lproj",
+ "path": "CoreServices/Resources/uk.lproj"
+ },
+ {
+ "value": 0,
+ "name": "vi.lproj",
+ "path": "CoreServices/Resources/vi.lproj"
+ },
+ {
+ "value": 0,
+ "name": "zh_CN.lproj",
+ "path": "CoreServices/Resources/zh_CN.lproj"
+ },
+ {
+ "value": 0,
+ "name": "zh_TW.lproj",
+ "path": "CoreServices/Resources/zh_TW.lproj"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "RFBEventHelper.bundle",
+ "path": "CoreServices/RFBEventHelper.bundle",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "CoreServices/RFBEventHelper.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 3304,
+ "name": "ScreenSharing.app",
+ "path": "CoreServices/ScreenSharing.app",
+ "children": [
+ {
+ "value": 3304,
+ "name": "Contents",
+ "path": "CoreServices/ScreenSharing.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 244,
+ "name": "Search.bundle",
+ "path": "CoreServices/Search.bundle",
+ "children": [
+ {
+ "value": 244,
+ "name": "Contents",
+ "path": "CoreServices/Search.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 4128,
+ "name": "SecurityAgentPlugins",
+ "path": "CoreServices/SecurityAgentPlugins",
+ "children": [
+ {
+ "value": 304,
+ "name": "DiskUnlock.bundle",
+ "path": "CoreServices/SecurityAgentPlugins/DiskUnlock.bundle"
+ },
+ {
+ "value": 1192,
+ "name": "FamilyControls.bundle",
+ "path": "CoreServices/SecurityAgentPlugins/FamilyControls.bundle"
+ },
+ {
+ "value": 340,
+ "name": "HomeDirMechanism.bundle",
+ "path": "CoreServices/SecurityAgentPlugins/HomeDirMechanism.bundle"
+ },
+ {
+ "value": 1156,
+ "name": "KerberosAgent.bundle",
+ "path": "CoreServices/SecurityAgentPlugins/KerberosAgent.bundle"
+ },
+ {
+ "value": 276,
+ "name": "loginKC.bundle",
+ "path": "CoreServices/SecurityAgentPlugins/loginKC.bundle"
+ },
+ {
+ "value": 104,
+ "name": "loginwindow.bundle",
+ "path": "CoreServices/SecurityAgentPlugins/loginwindow.bundle"
+ },
+ {
+ "value": 384,
+ "name": "MCXMechanism.bundle",
+ "path": "CoreServices/SecurityAgentPlugins/MCXMechanism.bundle"
+ },
+ {
+ "value": 12,
+ "name": "PKINITMechanism.bundle",
+ "path": "CoreServices/SecurityAgentPlugins/PKINITMechanism.bundle"
+ },
+ {
+ "value": 360,
+ "name": "RestartAuthorization.bundle",
+ "path": "CoreServices/SecurityAgentPlugins/RestartAuthorization.bundle"
+ }
+ ]
+ },
+ {
+ "value": 328,
+ "name": "SecurityFixer.app",
+ "path": "CoreServices/SecurityFixer.app",
+ "children": [
+ {
+ "value": 328,
+ "name": "Contents",
+ "path": "CoreServices/SecurityFixer.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28200,
+ "name": "SetupAssistant.app",
+ "path": "CoreServices/SetupAssistant.app",
+ "children": [
+ {
+ "value": 28200,
+ "name": "Contents",
+ "path": "CoreServices/SetupAssistant.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 164,
+ "name": "SetupAssistantPlugins",
+ "path": "CoreServices/SetupAssistantPlugins",
+ "children": [
+ {
+ "value": 8,
+ "name": "AppStore.icdplugin",
+ "path": "CoreServices/SetupAssistantPlugins/AppStore.icdplugin"
+ },
+ {
+ "value": 8,
+ "name": "Calendar.flplugin",
+ "path": "CoreServices/SetupAssistantPlugins/Calendar.flplugin"
+ },
+ {
+ "value": 8,
+ "name": "FaceTime.icdplugin",
+ "path": "CoreServices/SetupAssistantPlugins/FaceTime.icdplugin"
+ },
+ {
+ "value": 8,
+ "name": "Fonts.flplugin",
+ "path": "CoreServices/SetupAssistantPlugins/Fonts.flplugin"
+ },
+ {
+ "value": 16,
+ "name": "GameCenter.icdplugin",
+ "path": "CoreServices/SetupAssistantPlugins/GameCenter.icdplugin"
+ },
+ {
+ "value": 8,
+ "name": "Helpd.flplugin",
+ "path": "CoreServices/SetupAssistantPlugins/Helpd.flplugin"
+ },
+ {
+ "value": 8,
+ "name": "iBooks.icdplugin",
+ "path": "CoreServices/SetupAssistantPlugins/iBooks.icdplugin"
+ },
+ {
+ "value": 16,
+ "name": "IdentityServices.icdplugin",
+ "path": "CoreServices/SetupAssistantPlugins/IdentityServices.icdplugin"
+ },
+ {
+ "value": 8,
+ "name": "iMessage.icdplugin",
+ "path": "CoreServices/SetupAssistantPlugins/iMessage.icdplugin"
+ },
+ {
+ "value": 8,
+ "name": "LaunchServices.flplugin",
+ "path": "CoreServices/SetupAssistantPlugins/LaunchServices.flplugin"
+ },
+ {
+ "value": 12,
+ "name": "Mail.flplugin",
+ "path": "CoreServices/SetupAssistantPlugins/Mail.flplugin"
+ },
+ {
+ "value": 8,
+ "name": "QuickLook.flplugin",
+ "path": "CoreServices/SetupAssistantPlugins/QuickLook.flplugin"
+ },
+ {
+ "value": 8,
+ "name": "Safari.flplugin",
+ "path": "CoreServices/SetupAssistantPlugins/Safari.flplugin"
+ },
+ {
+ "value": 8,
+ "name": "ServicesMenu.flplugin",
+ "path": "CoreServices/SetupAssistantPlugins/ServicesMenu.flplugin"
+ },
+ {
+ "value": 8,
+ "name": "SoftwareUpdateActions.flplugin",
+ "path": "CoreServices/SetupAssistantPlugins/SoftwareUpdateActions.flplugin"
+ },
+ {
+ "value": 8,
+ "name": "Spotlight.flplugin",
+ "path": "CoreServices/SetupAssistantPlugins/Spotlight.flplugin"
+ },
+ {
+ "value": 16,
+ "name": "UAU.flplugin",
+ "path": "CoreServices/SetupAssistantPlugins/UAU.flplugin"
+ }
+ ]
+ },
+ {
+ "value": 48,
+ "name": "SocialPushAgent.app",
+ "path": "CoreServices/SocialPushAgent.app",
+ "children": [
+ {
+ "value": 48,
+ "name": "Contents",
+ "path": "CoreServices/SocialPushAgent.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2196,
+ "name": "SoftwareUpdate.app",
+ "path": "CoreServices/SoftwareUpdate.app",
+ "children": [
+ {
+ "value": 2196,
+ "name": "Contents",
+ "path": "CoreServices/SoftwareUpdate.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 856,
+ "name": "Spotlight.app",
+ "path": "CoreServices/Spotlight.app",
+ "children": [
+ {
+ "value": 856,
+ "name": "Contents",
+ "path": "CoreServices/Spotlight.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 384,
+ "name": "SystemEvents.app",
+ "path": "CoreServices/SystemEvents.app",
+ "children": [
+ {
+ "value": 384,
+ "name": "Contents",
+ "path": "CoreServices/SystemEvents.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2152,
+ "name": "SystemImage Utility.app",
+ "path": "CoreServices/SystemImage Utility.app",
+ "children": [
+ {
+ "value": 2152,
+ "name": "Contents",
+ "path": "CoreServices/SystemImage Utility.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "SystemFolderLocalizations",
+ "path": "CoreServices/SystemFolderLocalizations",
+ "children": [
+ {
+ "value": 0,
+ "name": "ar.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/ar.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ca.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/ca.lproj"
+ },
+ {
+ "value": 0,
+ "name": "cs.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/cs.lproj"
+ },
+ {
+ "value": 0,
+ "name": "da.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/da.lproj"
+ },
+ {
+ "value": 0,
+ "name": "de.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/de.lproj"
+ },
+ {
+ "value": 0,
+ "name": "el.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/el.lproj"
+ },
+ {
+ "value": 0,
+ "name": "en.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/en.lproj"
+ },
+ {
+ "value": 0,
+ "name": "es.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/es.lproj"
+ },
+ {
+ "value": 0,
+ "name": "fi.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/fi.lproj"
+ },
+ {
+ "value": 0,
+ "name": "fr.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/fr.lproj"
+ },
+ {
+ "value": 0,
+ "name": "he.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/he.lproj"
+ },
+ {
+ "value": 0,
+ "name": "hr.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/hr.lproj"
+ },
+ {
+ "value": 0,
+ "name": "hu.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/hu.lproj"
+ },
+ {
+ "value": 0,
+ "name": "id.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/id.lproj"
+ },
+ {
+ "value": 0,
+ "name": "it.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/it.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ja.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/ja.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ko.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/ko.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ms.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/ms.lproj"
+ },
+ {
+ "value": 0,
+ "name": "nl.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/nl.lproj"
+ },
+ {
+ "value": 0,
+ "name": "no.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/no.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pl.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/pl.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pt.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/pt.lproj"
+ },
+ {
+ "value": 0,
+ "name": "pt_PT.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/pt_PT.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ro.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/ro.lproj"
+ },
+ {
+ "value": 0,
+ "name": "ru.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/ru.lproj"
+ },
+ {
+ "value": 0,
+ "name": "sk.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/sk.lproj"
+ },
+ {
+ "value": 0,
+ "name": "sv.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/sv.lproj"
+ },
+ {
+ "value": 0,
+ "name": "th.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/th.lproj"
+ },
+ {
+ "value": 0,
+ "name": "tr.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/tr.lproj"
+ },
+ {
+ "value": 0,
+ "name": "uk.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/uk.lproj"
+ },
+ {
+ "value": 0,
+ "name": "vi.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/vi.lproj"
+ },
+ {
+ "value": 0,
+ "name": "zh_CN.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/zh_CN.lproj"
+ },
+ {
+ "value": 0,
+ "name": "zh_TW.lproj",
+ "path": "CoreServices/SystemFolderLocalizations/zh_TW.lproj"
+ }
+ ]
+ },
+ {
+ "value": 852,
+ "name": "SystemUIServer.app",
+ "path": "CoreServices/SystemUIServer.app",
+ "children": [
+ {
+ "value": 852,
+ "name": "Contents",
+ "path": "CoreServices/SystemUIServer.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 132,
+ "name": "SystemVersion.bundle",
+ "path": "CoreServices/SystemVersion.bundle",
+ "children": [
+ {
+ "value": 4,
+ "name": "ar.lproj",
+ "path": "CoreServices/SystemVersion.bundle/ar.lproj"
+ },
+ {
+ "value": 4,
+ "name": "ca.lproj",
+ "path": "CoreServices/SystemVersion.bundle/ca.lproj"
+ },
+ {
+ "value": 4,
+ "name": "cs.lproj",
+ "path": "CoreServices/SystemVersion.bundle/cs.lproj"
+ },
+ {
+ "value": 4,
+ "name": "da.lproj",
+ "path": "CoreServices/SystemVersion.bundle/da.lproj"
+ },
+ {
+ "value": 4,
+ "name": "Dutch.lproj",
+ "path": "CoreServices/SystemVersion.bundle/Dutch.lproj"
+ },
+ {
+ "value": 4,
+ "name": "el.lproj",
+ "path": "CoreServices/SystemVersion.bundle/el.lproj"
+ },
+ {
+ "value": 4,
+ "name": "English.lproj",
+ "path": "CoreServices/SystemVersion.bundle/English.lproj"
+ },
+ {
+ "value": 4,
+ "name": "fi.lproj",
+ "path": "CoreServices/SystemVersion.bundle/fi.lproj"
+ },
+ {
+ "value": 4,
+ "name": "French.lproj",
+ "path": "CoreServices/SystemVersion.bundle/French.lproj"
+ },
+ {
+ "value": 4,
+ "name": "German.lproj",
+ "path": "CoreServices/SystemVersion.bundle/German.lproj"
+ },
+ {
+ "value": 4,
+ "name": "he.lproj",
+ "path": "CoreServices/SystemVersion.bundle/he.lproj"
+ },
+ {
+ "value": 4,
+ "name": "hr.lproj",
+ "path": "CoreServices/SystemVersion.bundle/hr.lproj"
+ },
+ {
+ "value": 4,
+ "name": "hu.lproj",
+ "path": "CoreServices/SystemVersion.bundle/hu.lproj"
+ },
+ {
+ "value": 4,
+ "name": "id.lproj",
+ "path": "CoreServices/SystemVersion.bundle/id.lproj"
+ },
+ {
+ "value": 4,
+ "name": "Italian.lproj",
+ "path": "CoreServices/SystemVersion.bundle/Italian.lproj"
+ },
+ {
+ "value": 4,
+ "name": "Japanese.lproj",
+ "path": "CoreServices/SystemVersion.bundle/Japanese.lproj"
+ },
+ {
+ "value": 4,
+ "name": "ko.lproj",
+ "path": "CoreServices/SystemVersion.bundle/ko.lproj"
+ },
+ {
+ "value": 4,
+ "name": "ms.lproj",
+ "path": "CoreServices/SystemVersion.bundle/ms.lproj"
+ },
+ {
+ "value": 4,
+ "name": "no.lproj",
+ "path": "CoreServices/SystemVersion.bundle/no.lproj"
+ },
+ {
+ "value": 4,
+ "name": "pl.lproj",
+ "path": "CoreServices/SystemVersion.bundle/pl.lproj"
+ },
+ {
+ "value": 4,
+ "name": "pt.lproj",
+ "path": "CoreServices/SystemVersion.bundle/pt.lproj"
+ },
+ {
+ "value": 4,
+ "name": "pt_PT.lproj",
+ "path": "CoreServices/SystemVersion.bundle/pt_PT.lproj"
+ },
+ {
+ "value": 4,
+ "name": "ro.lproj",
+ "path": "CoreServices/SystemVersion.bundle/ro.lproj"
+ },
+ {
+ "value": 4,
+ "name": "ru.lproj",
+ "path": "CoreServices/SystemVersion.bundle/ru.lproj"
+ },
+ {
+ "value": 4,
+ "name": "sk.lproj",
+ "path": "CoreServices/SystemVersion.bundle/sk.lproj"
+ },
+ {
+ "value": 4,
+ "name": "Spanish.lproj",
+ "path": "CoreServices/SystemVersion.bundle/Spanish.lproj"
+ },
+ {
+ "value": 4,
+ "name": "sv.lproj",
+ "path": "CoreServices/SystemVersion.bundle/sv.lproj"
+ },
+ {
+ "value": 4,
+ "name": "th.lproj",
+ "path": "CoreServices/SystemVersion.bundle/th.lproj"
+ },
+ {
+ "value": 4,
+ "name": "tr.lproj",
+ "path": "CoreServices/SystemVersion.bundle/tr.lproj"
+ },
+ {
+ "value": 4,
+ "name": "uk.lproj",
+ "path": "CoreServices/SystemVersion.bundle/uk.lproj"
+ },
+ {
+ "value": 4,
+ "name": "vi.lproj",
+ "path": "CoreServices/SystemVersion.bundle/vi.lproj"
+ },
+ {
+ "value": 4,
+ "name": "zh_CN.lproj",
+ "path": "CoreServices/SystemVersion.bundle/zh_CN.lproj"
+ },
+ {
+ "value": 4,
+ "name": "zh_TW.lproj",
+ "path": "CoreServices/SystemVersion.bundle/zh_TW.lproj"
+ }
+ ]
+ },
+ {
+ "value": 3148,
+ "name": "TicketViewer.app",
+ "path": "CoreServices/TicketViewer.app",
+ "children": [
+ {
+ "value": 3148,
+ "name": "Contents",
+ "path": "CoreServices/TicketViewer.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 532,
+ "name": "TypographyPanel.bundle",
+ "path": "CoreServices/TypographyPanel.bundle",
+ "children": [
+ {
+ "value": 532,
+ "name": "Contents",
+ "path": "CoreServices/TypographyPanel.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 676,
+ "name": "UniversalAccessControl.app",
+ "path": "CoreServices/UniversalAccessControl.app",
+ "children": [
+ {
+ "value": 676,
+ "name": "Contents",
+ "path": "CoreServices/UniversalAccessControl.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "UnmountAssistantAgent.app",
+ "path": "CoreServices/UnmountAssistantAgent.app",
+ "children": [
+ {
+ "value": 52,
+ "name": "Contents",
+ "path": "CoreServices/UnmountAssistantAgent.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "UserNotificationCenter.app",
+ "path": "CoreServices/UserNotificationCenter.app",
+ "children": [
+ {
+ "value": 60,
+ "name": "Contents",
+ "path": "CoreServices/UserNotificationCenter.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 456,
+ "name": "VoiceOver.app",
+ "path": "CoreServices/VoiceOver.app",
+ "children": [
+ {
+ "value": 456,
+ "name": "Contents",
+ "path": "CoreServices/VoiceOver.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "XsanManagerDaemon.bundle",
+ "path": "CoreServices/XsanManagerDaemon.bundle",
+ "children": [
+ {
+ "value": 44,
+ "name": "Contents",
+ "path": "CoreServices/XsanManagerDaemon.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 844,
+ "name": "ZoomWindow.app",
+ "path": "CoreServices/ZoomWindow.app",
+ "children": [
+ {
+ "value": 844,
+ "name": "Contents",
+ "path": "CoreServices/ZoomWindow.app/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "DirectoryServices",
+ "path": "DirectoryServices",
+ "children": [
+ {
+ "value": 0,
+ "name": "DefaultLocalDB",
+ "path": "DirectoryServices/DefaultLocalDB"
+ },
+ {
+ "value": 72,
+ "name": "dscl",
+ "path": "DirectoryServices/dscl",
+ "children": [
+ {
+ "value": 44,
+ "name": "mcxcl.dsclext",
+ "path": "DirectoryServices/dscl/mcxcl.dsclext"
+ },
+ {
+ "value": 28,
+ "name": "mcxProfiles.dsclext",
+ "path": "DirectoryServices/dscl/mcxProfiles.dsclext"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "Templates",
+ "path": "DirectoryServices/Templates",
+ "children": [
+ {
+ "value": 0,
+ "name": "LDAPv3",
+ "path": "DirectoryServices/Templates/LDAPv3"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "Displays",
+ "path": "Displays",
+ "children": [
+ {
+ "value": 0,
+ "name": "_CodeSignature",
+ "path": "Displays/_CodeSignature"
+ },
+ {
+ "value": 0,
+ "name": "Overrides",
+ "path": "Displays/Overrides",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Displays/Overrides/Contents"
+ },
+ {
+ "value": 0,
+ "name": "DisplayVendorID-11a9",
+ "path": "Displays/Overrides/DisplayVendorID-11a9"
+ },
+ {
+ "value": 0,
+ "name": "DisplayVendorID-2283",
+ "path": "Displays/Overrides/DisplayVendorID-2283"
+ },
+ {
+ "value": 0,
+ "name": "DisplayVendorID-34a9",
+ "path": "Displays/Overrides/DisplayVendorID-34a9"
+ },
+ {
+ "value": 0,
+ "name": "DisplayVendorID-38a3",
+ "path": "Displays/Overrides/DisplayVendorID-38a3"
+ },
+ {
+ "value": 0,
+ "name": "DisplayVendorID-4c2d",
+ "path": "Displays/Overrides/DisplayVendorID-4c2d"
+ },
+ {
+ "value": 0,
+ "name": "DisplayVendorID-4dd9",
+ "path": "Displays/Overrides/DisplayVendorID-4dd9"
+ },
+ {
+ "value": 0,
+ "name": "DisplayVendorID-5a63",
+ "path": "Displays/Overrides/DisplayVendorID-5a63"
+ },
+ {
+ "value": 0,
+ "name": "DisplayVendorID-5b4",
+ "path": "Displays/Overrides/DisplayVendorID-5b4"
+ },
+ {
+ "value": 0,
+ "name": "DisplayVendorID-610",
+ "path": "Displays/Overrides/DisplayVendorID-610"
+ },
+ {
+ "value": 0,
+ "name": "DisplayVendorID-756e6b6e",
+ "path": "Displays/Overrides/DisplayVendorID-756e6b6e"
+ },
+ {
+ "value": 0,
+ "name": "DisplayVendorID-daf",
+ "path": "Displays/Overrides/DisplayVendorID-daf"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "DTDs",
+ "path": "DTDs"
+ },
+ {
+ "value": 400116,
+ "name": "Extensions",
+ "path": "Extensions",
+ "children": [
+ {
+ "value": 0,
+ "name": "10.5",
+ "path": "Extensions/10.5"
+ },
+ {
+ "value": 0,
+ "name": "10.6",
+ "path": "Extensions/10.6"
+ },
+ {
+ "value": 116,
+ "name": "Accusys6xxxx.kext",
+ "path": "Extensions/Accusys6xxxx.kext",
+ "children": [
+ {
+ "value": 116,
+ "name": "Contents",
+ "path": "Extensions/Accusys6xxxx.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1236,
+ "name": "acfs.kext",
+ "path": "Extensions/acfs.kext",
+ "children": [
+ {
+ "value": 1236,
+ "name": "Contents",
+ "path": "Extensions/acfs.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "acfsctl.kext",
+ "path": "Extensions/acfsctl.kext",
+ "children": [
+ {
+ "value": 32,
+ "name": "Contents",
+ "path": "Extensions/acfsctl.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 196,
+ "name": "ALF.kext",
+ "path": "Extensions/ALF.kext",
+ "children": [
+ {
+ "value": 196,
+ "name": "Contents",
+ "path": "Extensions/ALF.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1836,
+ "name": "AMD2400Controller.kext",
+ "path": "Extensions/AMD2400Controller.kext",
+ "children": [
+ {
+ "value": 1836,
+ "name": "Contents",
+ "path": "Extensions/AMD2400Controller.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1840,
+ "name": "AMD2600Controller.kext",
+ "path": "Extensions/AMD2600Controller.kext",
+ "children": [
+ {
+ "value": 1840,
+ "name": "Contents",
+ "path": "Extensions/AMD2600Controller.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1848,
+ "name": "AMD3800Controller.kext",
+ "path": "Extensions/AMD3800Controller.kext",
+ "children": [
+ {
+ "value": 1848,
+ "name": "Contents",
+ "path": "Extensions/AMD3800Controller.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1828,
+ "name": "AMD4600Controller.kext",
+ "path": "Extensions/AMD4600Controller.kext",
+ "children": [
+ {
+ "value": 1828,
+ "name": "Contents",
+ "path": "Extensions/AMD4600Controller.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1820,
+ "name": "AMD4800Controller.kext",
+ "path": "Extensions/AMD4800Controller.kext",
+ "children": [
+ {
+ "value": 1820,
+ "name": "Contents",
+ "path": "Extensions/AMD4800Controller.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2268,
+ "name": "AMD5000Controller.kext",
+ "path": "Extensions/AMD5000Controller.kext",
+ "children": [
+ {
+ "value": 2268,
+ "name": "Contents",
+ "path": "Extensions/AMD5000Controller.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2292,
+ "name": "AMD6000Controller.kext",
+ "path": "Extensions/AMD6000Controller.kext",
+ "children": [
+ {
+ "value": 2292,
+ "name": "Contents",
+ "path": "Extensions/AMD6000Controller.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2316,
+ "name": "AMD7000Controller.kext",
+ "path": "Extensions/AMD7000Controller.kext",
+ "children": [
+ {
+ "value": 2316,
+ "name": "Contents",
+ "path": "Extensions/AMD7000Controller.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 164,
+ "name": "AMDFramebuffer.kext",
+ "path": "Extensions/AMDFramebuffer.kext",
+ "children": [
+ {
+ "value": 164,
+ "name": "Contents",
+ "path": "Extensions/AMDFramebuffer.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1572,
+ "name": "AMDRadeonVADriver.bundle",
+ "path": "Extensions/AMDRadeonVADriver.bundle",
+ "children": [
+ {
+ "value": 1572,
+ "name": "Contents",
+ "path": "Extensions/AMDRadeonVADriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 4756,
+ "name": "AMDRadeonX3000.kext",
+ "path": "Extensions/AMDRadeonX3000.kext",
+ "children": [
+ {
+ "value": 4756,
+ "name": "Contents",
+ "path": "Extensions/AMDRadeonX3000.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 11224,
+ "name": "AMDRadeonX3000GLDriver.bundle",
+ "path": "Extensions/AMDRadeonX3000GLDriver.bundle",
+ "children": [
+ {
+ "value": 11224,
+ "name": "Contents",
+ "path": "Extensions/AMDRadeonX3000GLDriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 4532,
+ "name": "AMDRadeonX4000.kext",
+ "path": "Extensions/AMDRadeonX4000.kext",
+ "children": [
+ {
+ "value": 4532,
+ "name": "Contents",
+ "path": "Extensions/AMDRadeonX4000.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 17144,
+ "name": "AMDRadeonX4000GLDriver.bundle",
+ "path": "Extensions/AMDRadeonX4000GLDriver.bundle",
+ "children": [
+ {
+ "value": 17144,
+ "name": "Contents",
+ "path": "Extensions/AMDRadeonX4000GLDriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 544,
+ "name": "AMDSupport.kext",
+ "path": "Extensions/AMDSupport.kext",
+ "children": [
+ {
+ "value": 544,
+ "name": "Contents",
+ "path": "Extensions/AMDSupport.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 148,
+ "name": "Apple16X50Serial.kext",
+ "path": "Extensions/Apple16X50Serial.kext",
+ "children": [
+ {
+ "value": 148,
+ "name": "Contents",
+ "path": "Extensions/Apple16X50Serial.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "Apple_iSight.kext",
+ "path": "Extensions/Apple_iSight.kext",
+ "children": [
+ {
+ "value": 60,
+ "name": "Contents",
+ "path": "Extensions/Apple_iSight.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 596,
+ "name": "AppleACPIPlatform.kext",
+ "path": "Extensions/AppleACPIPlatform.kext",
+ "children": [
+ {
+ "value": 596,
+ "name": "Contents",
+ "path": "Extensions/AppleACPIPlatform.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 208,
+ "name": "AppleAHCIPort.kext",
+ "path": "Extensions/AppleAHCIPort.kext",
+ "children": [
+ {
+ "value": 208,
+ "name": "Contents",
+ "path": "Extensions/AppleAHCIPort.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "AppleAPIC.kext",
+ "path": "Extensions/AppleAPIC.kext",
+ "children": [
+ {
+ "value": 56,
+ "name": "Contents",
+ "path": "Extensions/AppleAPIC.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 84,
+ "name": "AppleBacklight.kext",
+ "path": "Extensions/AppleBacklight.kext",
+ "children": [
+ {
+ "value": 84,
+ "name": "Contents",
+ "path": "Extensions/AppleBacklight.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "AppleBacklightExpert.kext",
+ "path": "Extensions/AppleBacklightExpert.kext",
+ "children": [
+ {
+ "value": 4,
+ "name": "_CodeSignature",
+ "path": "Extensions/AppleBacklightExpert.kext/_CodeSignature"
+ }
+ ]
+ },
+ {
+ "value": 180,
+ "name": "AppleBluetoothMultitouch.kext",
+ "path": "Extensions/AppleBluetoothMultitouch.kext",
+ "children": [
+ {
+ "value": 180,
+ "name": "Contents",
+ "path": "Extensions/AppleBluetoothMultitouch.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 80,
+ "name": "AppleBMC.kext",
+ "path": "Extensions/AppleBMC.kext",
+ "children": [
+ {
+ "value": 80,
+ "name": "Contents",
+ "path": "Extensions/AppleBMC.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 152,
+ "name": "AppleCameraInterface.kext",
+ "path": "Extensions/AppleCameraInterface.kext",
+ "children": [
+ {
+ "value": 152,
+ "name": "Contents",
+ "path": "Extensions/AppleCameraInterface.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 152,
+ "name": "AppleEFIRuntime.kext",
+ "path": "Extensions/AppleEFIRuntime.kext",
+ "children": [
+ {
+ "value": 152,
+ "name": "Contents",
+ "path": "Extensions/AppleEFIRuntime.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "AppleFDEKeyStore.kext",
+ "path": "Extensions/AppleFDEKeyStore.kext",
+ "children": [
+ {
+ "value": 88,
+ "name": "Contents",
+ "path": "Extensions/AppleFDEKeyStore.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 48,
+ "name": "AppleFileSystemDriver.kext",
+ "path": "Extensions/AppleFileSystemDriver.kext",
+ "children": [
+ {
+ "value": 48,
+ "name": "Contents",
+ "path": "Extensions/AppleFileSystemDriver.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "AppleFSCompressionTypeDataless.kext",
+ "path": "Extensions/AppleFSCompressionTypeDataless.kext",
+ "children": [
+ {
+ "value": 56,
+ "name": "Contents",
+ "path": "Extensions/AppleFSCompressionTypeDataless.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "AppleFSCompressionTypeZlib.kext",
+ "path": "Extensions/AppleFSCompressionTypeZlib.kext",
+ "children": [
+ {
+ "value": 60,
+ "name": "Contents",
+ "path": "Extensions/AppleFSCompressionTypeZlib.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 628,
+ "name": "AppleFWAudio.kext",
+ "path": "Extensions/AppleFWAudio.kext",
+ "children": [
+ {
+ "value": 628,
+ "name": "Contents",
+ "path": "Extensions/AppleFWAudio.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 396,
+ "name": "AppleGraphicsControl.kext",
+ "path": "Extensions/AppleGraphicsControl.kext",
+ "children": [
+ {
+ "value": 396,
+ "name": "Contents",
+ "path": "Extensions/AppleGraphicsControl.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "AppleGraphicsPowerManagement.kext",
+ "path": "Extensions/AppleGraphicsPowerManagement.kext",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Extensions/AppleGraphicsPowerManagement.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 3112,
+ "name": "AppleHDA.kext",
+ "path": "Extensions/AppleHDA.kext",
+ "children": [
+ {
+ "value": 3112,
+ "name": "Contents",
+ "path": "Extensions/AppleHDA.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 488,
+ "name": "AppleHIDKeyboard.kext",
+ "path": "Extensions/AppleHIDKeyboard.kext",
+ "children": [
+ {
+ "value": 488,
+ "name": "Contents",
+ "path": "Extensions/AppleHIDKeyboard.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 184,
+ "name": "AppleHIDMouse.kext",
+ "path": "Extensions/AppleHIDMouse.kext",
+ "children": [
+ {
+ "value": 184,
+ "name": "Contents",
+ "path": "Extensions/AppleHIDMouse.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "AppleHPET.kext",
+ "path": "Extensions/AppleHPET.kext",
+ "children": [
+ {
+ "value": 52,
+ "name": "Contents",
+ "path": "Extensions/AppleHPET.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "AppleHSSPIHIDDriver.kext",
+ "path": "Extensions/AppleHSSPIHIDDriver.kext",
+ "children": [
+ {
+ "value": 64,
+ "name": "Contents",
+ "path": "Extensions/AppleHSSPIHIDDriver.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 144,
+ "name": "AppleHSSPISupport.kext",
+ "path": "Extensions/AppleHSSPISupport.kext",
+ "children": [
+ {
+ "value": 144,
+ "name": "Contents",
+ "path": "Extensions/AppleHSSPISupport.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "AppleHWAccess.kext",
+ "path": "Extensions/AppleHWAccess.kext",
+ "children": [
+ {
+ "value": 64,
+ "name": "Contents",
+ "path": "Extensions/AppleHWAccess.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "AppleHWSensor.kext",
+ "path": "Extensions/AppleHWSensor.kext",
+ "children": [
+ {
+ "value": 72,
+ "name": "Contents",
+ "path": "Extensions/AppleHWSensor.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 244,
+ "name": "AppleIntelCPUPowerManagement.kext",
+ "path": "Extensions/AppleIntelCPUPowerManagement.kext",
+ "children": [
+ {
+ "value": 244,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelCPUPowerManagement.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "AppleIntelCPUPowerManagementClient.kext",
+ "path": "Extensions/AppleIntelCPUPowerManagementClient.kext",
+ "children": [
+ {
+ "value": 52,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelCPUPowerManagementClient.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 480,
+ "name": "AppleIntelFramebufferAzul.kext",
+ "path": "Extensions/AppleIntelFramebufferAzul.kext",
+ "children": [
+ {
+ "value": 480,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelFramebufferAzul.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 492,
+ "name": "AppleIntelFramebufferCapri.kext",
+ "path": "Extensions/AppleIntelFramebufferCapri.kext",
+ "children": [
+ {
+ "value": 492,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelFramebufferCapri.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 604,
+ "name": "AppleIntelHD3000Graphics.kext",
+ "path": "Extensions/AppleIntelHD3000Graphics.kext",
+ "children": [
+ {
+ "value": 604,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHD3000Graphics.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "AppleIntelHD3000GraphicsGA.plugin",
+ "path": "Extensions/AppleIntelHD3000GraphicsGA.plugin",
+ "children": [
+ {
+ "value": 64,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHD3000GraphicsGA.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 9164,
+ "name": "AppleIntelHD3000GraphicsGLDriver.bundle",
+ "path": "Extensions/AppleIntelHD3000GraphicsGLDriver.bundle",
+ "children": [
+ {
+ "value": 9164,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2520,
+ "name": "AppleIntelHD3000GraphicsVADriver.bundle",
+ "path": "Extensions/AppleIntelHD3000GraphicsVADriver.bundle",
+ "children": [
+ {
+ "value": 2520,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHD3000GraphicsVADriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 536,
+ "name": "AppleIntelHD4000Graphics.kext",
+ "path": "Extensions/AppleIntelHD4000Graphics.kext",
+ "children": [
+ {
+ "value": 536,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHD4000Graphics.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 22996,
+ "name": "AppleIntelHD4000GraphicsGLDriver.bundle",
+ "path": "Extensions/AppleIntelHD4000GraphicsGLDriver.bundle",
+ "children": [
+ {
+ "value": 22996,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 3608,
+ "name": "AppleIntelHD4000GraphicsVADriver.bundle",
+ "path": "Extensions/AppleIntelHD4000GraphicsVADriver.bundle",
+ "children": [
+ {
+ "value": 3608,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHD4000GraphicsVADriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 564,
+ "name": "AppleIntelHD5000Graphics.kext",
+ "path": "Extensions/AppleIntelHD5000Graphics.kext",
+ "children": [
+ {
+ "value": 564,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHD5000Graphics.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20692,
+ "name": "AppleIntelHD5000GraphicsGLDriver.bundle",
+ "path": "Extensions/AppleIntelHD5000GraphicsGLDriver.bundle",
+ "children": [
+ {
+ "value": 20692,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 6120,
+ "name": "AppleIntelHD5000GraphicsVADriver.bundle",
+ "path": "Extensions/AppleIntelHD5000GraphicsVADriver.bundle",
+ "children": [
+ {
+ "value": 6120,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHD5000GraphicsVADriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 976,
+ "name": "AppleIntelHDGraphics.kext",
+ "path": "Extensions/AppleIntelHDGraphics.kext",
+ "children": [
+ {
+ "value": 976,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHDGraphics.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 148,
+ "name": "AppleIntelHDGraphicsFB.kext",
+ "path": "Extensions/AppleIntelHDGraphicsFB.kext",
+ "children": [
+ {
+ "value": 148,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHDGraphicsFB.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "AppleIntelHDGraphicsGA.plugin",
+ "path": "Extensions/AppleIntelHDGraphicsGA.plugin",
+ "children": [
+ {
+ "value": 64,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHDGraphicsGA.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 9108,
+ "name": "AppleIntelHDGraphicsGLDriver.bundle",
+ "path": "Extensions/AppleIntelHDGraphicsGLDriver.bundle",
+ "children": [
+ {
+ "value": 9108,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 104,
+ "name": "AppleIntelHDGraphicsVADriver.bundle",
+ "path": "Extensions/AppleIntelHDGraphicsVADriver.bundle",
+ "children": [
+ {
+ "value": 104,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHDGraphicsVADriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 96,
+ "name": "AppleIntelHSWVA.bundle",
+ "path": "Extensions/AppleIntelHSWVA.bundle",
+ "children": [
+ {
+ "value": 96,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelHSWVA.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 96,
+ "name": "AppleIntelIVBVA.bundle",
+ "path": "Extensions/AppleIntelIVBVA.bundle",
+ "children": [
+ {
+ "value": 96,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelIVBVA.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "AppleIntelLpssDmac.kext",
+ "path": "Extensions/AppleIntelLpssDmac.kext",
+ "children": [
+ {
+ "value": 72,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelLpssDmac.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 76,
+ "name": "AppleIntelLpssGspi.kext",
+ "path": "Extensions/AppleIntelLpssGspi.kext",
+ "children": [
+ {
+ "value": 76,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelLpssGspi.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 132,
+ "name": "AppleIntelLpssSpiController.kext",
+ "path": "Extensions/AppleIntelLpssSpiController.kext",
+ "children": [
+ {
+ "value": 132,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelLpssSpiController.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 308,
+ "name": "AppleIntelSNBGraphicsFB.kext",
+ "path": "Extensions/AppleIntelSNBGraphicsFB.kext",
+ "children": [
+ {
+ "value": 308,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelSNBGraphicsFB.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 144,
+ "name": "AppleIntelSNBVA.bundle",
+ "path": "Extensions/AppleIntelSNBVA.bundle",
+ "children": [
+ {
+ "value": 144,
+ "name": "Contents",
+ "path": "Extensions/AppleIntelSNBVA.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "AppleIRController.kext",
+ "path": "Extensions/AppleIRController.kext",
+ "children": [
+ {
+ "value": 72,
+ "name": "Contents",
+ "path": "Extensions/AppleIRController.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 208,
+ "name": "AppleKextExcludeList.kext",
+ "path": "Extensions/AppleKextExcludeList.kext",
+ "children": [
+ {
+ "value": 208,
+ "name": "Contents",
+ "path": "Extensions/AppleKextExcludeList.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 120,
+ "name": "AppleKeyStore.kext",
+ "path": "Extensions/AppleKeyStore.kext",
+ "children": [
+ {
+ "value": 120,
+ "name": "Contents",
+ "path": "Extensions/AppleKeyStore.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 48,
+ "name": "AppleKeyswitch.kext",
+ "path": "Extensions/AppleKeyswitch.kext",
+ "children": [
+ {
+ "value": 48,
+ "name": "Contents",
+ "path": "Extensions/AppleKeyswitch.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "AppleLPC.kext",
+ "path": "Extensions/AppleLPC.kext",
+ "children": [
+ {
+ "value": 56,
+ "name": "Contents",
+ "path": "Extensions/AppleLPC.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 188,
+ "name": "AppleLSIFusionMPT.kext",
+ "path": "Extensions/AppleLSIFusionMPT.kext",
+ "children": [
+ {
+ "value": 188,
+ "name": "Contents",
+ "path": "Extensions/AppleLSIFusionMPT.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 36,
+ "name": "AppleMatch.kext",
+ "path": "Extensions/AppleMatch.kext",
+ "children": [
+ {
+ "value": 36,
+ "name": "Contents",
+ "path": "Extensions/AppleMatch.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 140,
+ "name": "AppleMCCSControl.kext",
+ "path": "Extensions/AppleMCCSControl.kext",
+ "children": [
+ {
+ "value": 140,
+ "name": "Contents",
+ "path": "Extensions/AppleMCCSControl.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "AppleMCEDriver.kext",
+ "path": "Extensions/AppleMCEDriver.kext",
+ "children": [
+ {
+ "value": 64,
+ "name": "Contents",
+ "path": "Extensions/AppleMCEDriver.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 76,
+ "name": "AppleMCP89RootPortPM.kext",
+ "path": "Extensions/AppleMCP89RootPortPM.kext",
+ "children": [
+ {
+ "value": 76,
+ "name": "Contents",
+ "path": "Extensions/AppleMCP89RootPortPM.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 156,
+ "name": "AppleMIDIFWDriver.plugin",
+ "path": "Extensions/AppleMIDIFWDriver.plugin",
+ "children": [
+ {
+ "value": 156,
+ "name": "Contents",
+ "path": "Extensions/AppleMIDIFWDriver.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 236,
+ "name": "AppleMIDIIACDriver.plugin",
+ "path": "Extensions/AppleMIDIIACDriver.plugin",
+ "children": [
+ {
+ "value": 236,
+ "name": "Contents",
+ "path": "Extensions/AppleMIDIIACDriver.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 416,
+ "name": "AppleMIDIRTPDriver.plugin",
+ "path": "Extensions/AppleMIDIRTPDriver.plugin",
+ "children": [
+ {
+ "value": 416,
+ "name": "Contents",
+ "path": "Extensions/AppleMIDIRTPDriver.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 248,
+ "name": "AppleMIDIUSBDriver.plugin",
+ "path": "Extensions/AppleMIDIUSBDriver.plugin",
+ "children": [
+ {
+ "value": 248,
+ "name": "Contents",
+ "path": "Extensions/AppleMIDIUSBDriver.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 68,
+ "name": "AppleMikeyHIDDriver.kext",
+ "path": "Extensions/AppleMikeyHIDDriver.kext",
+ "children": [
+ {
+ "value": 68,
+ "name": "Contents",
+ "path": "Extensions/AppleMikeyHIDDriver.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "AppleMobileDevice.kext",
+ "path": "Extensions/AppleMobileDevice.kext",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "Extensions/AppleMobileDevice.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 860,
+ "name": "AppleMultitouchDriver.kext",
+ "path": "Extensions/AppleMultitouchDriver.kext",
+ "children": [
+ {
+ "value": 860,
+ "name": "Contents",
+ "path": "Extensions/AppleMultitouchDriver.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 136,
+ "name": "ApplePlatformEnabler.kext",
+ "path": "Extensions/ApplePlatformEnabler.kext",
+ "children": [
+ {
+ "value": 136,
+ "name": "Contents",
+ "path": "Extensions/ApplePlatformEnabler.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 240,
+ "name": "AppleRAID.kext",
+ "path": "Extensions/AppleRAID.kext",
+ "children": [
+ {
+ "value": 240,
+ "name": "Contents",
+ "path": "Extensions/AppleRAID.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 372,
+ "name": "AppleRAIDCard.kext",
+ "path": "Extensions/AppleRAIDCard.kext",
+ "children": [
+ {
+ "value": 372,
+ "name": "Contents",
+ "path": "Extensions/AppleRAIDCard.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 80,
+ "name": "AppleRTC.kext",
+ "path": "Extensions/AppleRTC.kext",
+ "children": [
+ {
+ "value": 80,
+ "name": "Contents",
+ "path": "Extensions/AppleRTC.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 148,
+ "name": "AppleSDXC.kext",
+ "path": "Extensions/AppleSDXC.kext",
+ "children": [
+ {
+ "value": 148,
+ "name": "Contents",
+ "path": "Extensions/AppleSDXC.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 76,
+ "name": "AppleSEP.kext",
+ "path": "Extensions/AppleSEP.kext",
+ "children": [
+ {
+ "value": 76,
+ "name": "Contents",
+ "path": "Extensions/AppleSEP.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "AppleSmartBatteryManager.kext",
+ "path": "Extensions/AppleSmartBatteryManager.kext",
+ "children": [
+ {
+ "value": 88,
+ "name": "Contents",
+ "path": "Extensions/AppleSmartBatteryManager.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "AppleSMBIOS.kext",
+ "path": "Extensions/AppleSMBIOS.kext",
+ "children": [
+ {
+ "value": 60,
+ "name": "Contents",
+ "path": "Extensions/AppleSMBIOS.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 116,
+ "name": "AppleSMBusController.kext",
+ "path": "Extensions/AppleSMBusController.kext",
+ "children": [
+ {
+ "value": 116,
+ "name": "Contents",
+ "path": "Extensions/AppleSMBusController.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "AppleSMBusPCI.kext",
+ "path": "Extensions/AppleSMBusPCI.kext",
+ "children": [
+ {
+ "value": 56,
+ "name": "Contents",
+ "path": "Extensions/AppleSMBusPCI.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 120,
+ "name": "AppleSMC.kext",
+ "path": "Extensions/AppleSMC.kext",
+ "children": [
+ {
+ "value": 120,
+ "name": "Contents",
+ "path": "Extensions/AppleSMC.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 172,
+ "name": "AppleSMCLMU.kext",
+ "path": "Extensions/AppleSMCLMU.kext",
+ "children": [
+ {
+ "value": 172,
+ "name": "Contents",
+ "path": "Extensions/AppleSMCLMU.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "AppleSRP.kext",
+ "path": "Extensions/AppleSRP.kext",
+ "children": [
+ {
+ "value": 88,
+ "name": "Contents",
+ "path": "Extensions/AppleSRP.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1936,
+ "name": "AppleStorageDrivers.kext",
+ "path": "Extensions/AppleStorageDrivers.kext",
+ "children": [
+ {
+ "value": 1936,
+ "name": "Contents",
+ "path": "Extensions/AppleStorageDrivers.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 264,
+ "name": "AppleThunderboltDPAdapters.kext",
+ "path": "Extensions/AppleThunderboltDPAdapters.kext",
+ "children": [
+ {
+ "value": 264,
+ "name": "Contents",
+ "path": "Extensions/AppleThunderboltDPAdapters.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 204,
+ "name": "AppleThunderboltEDMService.kext",
+ "path": "Extensions/AppleThunderboltEDMService.kext",
+ "children": [
+ {
+ "value": 204,
+ "name": "Contents",
+ "path": "Extensions/AppleThunderboltEDMService.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 216,
+ "name": "AppleThunderboltIP.kext",
+ "path": "Extensions/AppleThunderboltIP.kext",
+ "children": [
+ {
+ "value": 216,
+ "name": "Contents",
+ "path": "Extensions/AppleThunderboltIP.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 168,
+ "name": "AppleThunderboltNHI.kext",
+ "path": "Extensions/AppleThunderboltNHI.kext",
+ "children": [
+ {
+ "value": 168,
+ "name": "Contents",
+ "path": "Extensions/AppleThunderboltNHI.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 172,
+ "name": "AppleThunderboltPCIAdapters.kext",
+ "path": "Extensions/AppleThunderboltPCIAdapters.kext",
+ "children": [
+ {
+ "value": 172,
+ "name": "Contents",
+ "path": "Extensions/AppleThunderboltPCIAdapters.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 164,
+ "name": "AppleThunderboltUTDM.kext",
+ "path": "Extensions/AppleThunderboltUTDM.kext",
+ "children": [
+ {
+ "value": 164,
+ "name": "Contents",
+ "path": "Extensions/AppleThunderboltUTDM.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 188,
+ "name": "AppleTopCase.kext",
+ "path": "Extensions/AppleTopCase.kext",
+ "children": [
+ {
+ "value": 188,
+ "name": "Contents",
+ "path": "Extensions/AppleTopCase.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 92,
+ "name": "AppleTyMCEDriver.kext",
+ "path": "Extensions/AppleTyMCEDriver.kext",
+ "children": [
+ {
+ "value": 92,
+ "name": "Contents",
+ "path": "Extensions/AppleTyMCEDriver.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "AppleUpstreamUserClient.kext",
+ "path": "Extensions/AppleUpstreamUserClient.kext",
+ "children": [
+ {
+ "value": 72,
+ "name": "Contents",
+ "path": "Extensions/AppleUpstreamUserClient.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 408,
+ "name": "AppleUSBAudio.kext",
+ "path": "Extensions/AppleUSBAudio.kext",
+ "children": [
+ {
+ "value": 408,
+ "name": "Contents",
+ "path": "Extensions/AppleUSBAudio.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 76,
+ "name": "AppleUSBDisplays.kext",
+ "path": "Extensions/AppleUSBDisplays.kext",
+ "children": [
+ {
+ "value": 76,
+ "name": "Contents",
+ "path": "Extensions/AppleUSBDisplays.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 144,
+ "name": "AppleUSBEthernetHost.kext",
+ "path": "Extensions/AppleUSBEthernetHost.kext",
+ "children": [
+ {
+ "value": 144,
+ "name": "Contents",
+ "path": "Extensions/AppleUSBEthernetHost.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 160,
+ "name": "AppleUSBMultitouch.kext",
+ "path": "Extensions/AppleUSBMultitouch.kext",
+ "children": [
+ {
+ "value": 160,
+ "name": "Contents",
+ "path": "Extensions/AppleUSBMultitouch.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 728,
+ "name": "AppleUSBTopCase.kext",
+ "path": "Extensions/AppleUSBTopCase.kext",
+ "children": [
+ {
+ "value": 728,
+ "name": "Contents",
+ "path": "Extensions/AppleUSBTopCase.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 3576,
+ "name": "AppleVADriver.bundle",
+ "path": "Extensions/AppleVADriver.bundle",
+ "children": [
+ {
+ "value": 3576,
+ "name": "Contents",
+ "path": "Extensions/AppleVADriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "AppleWWANAutoEject.kext",
+ "path": "Extensions/AppleWWANAutoEject.kext",
+ "children": [
+ {
+ "value": 60,
+ "name": "Contents",
+ "path": "Extensions/AppleWWANAutoEject.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "AppleXsanFilter.kext",
+ "path": "Extensions/AppleXsanFilter.kext",
+ "children": [
+ {
+ "value": 56,
+ "name": "Contents",
+ "path": "Extensions/AppleXsanFilter.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2976,
+ "name": "ATIRadeonX2000.kext",
+ "path": "Extensions/ATIRadeonX2000.kext",
+ "children": [
+ {
+ "value": 2976,
+ "name": "Contents",
+ "path": "Extensions/ATIRadeonX2000.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "ATIRadeonX2000GA.plugin",
+ "path": "Extensions/ATIRadeonX2000GA.plugin",
+ "children": [
+ {
+ "value": 88,
+ "name": "Contents",
+ "path": "Extensions/ATIRadeonX2000GA.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 5808,
+ "name": "ATIRadeonX2000GLDriver.bundle",
+ "path": "Extensions/ATIRadeonX2000GLDriver.bundle",
+ "children": [
+ {
+ "value": 5808,
+ "name": "Contents",
+ "path": "Extensions/ATIRadeonX2000GLDriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 396,
+ "name": "ATIRadeonX2000VADriver.bundle",
+ "path": "Extensions/ATIRadeonX2000VADriver.bundle",
+ "children": [
+ {
+ "value": 396,
+ "name": "Contents",
+ "path": "Extensions/ATIRadeonX2000VADriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 496,
+ "name": "ATTOCelerityFC.kext",
+ "path": "Extensions/ATTOCelerityFC.kext",
+ "children": [
+ {
+ "value": 496,
+ "name": "Contents",
+ "path": "Extensions/ATTOCelerityFC.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 268,
+ "name": "ATTOExpressPCI4.kext",
+ "path": "Extensions/ATTOExpressPCI4.kext",
+ "children": [
+ {
+ "value": 268,
+ "name": "Contents",
+ "path": "Extensions/ATTOExpressPCI4.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 252,
+ "name": "ATTOExpressSASHBA.kext",
+ "path": "Extensions/ATTOExpressSASHBA.kext",
+ "children": [
+ {
+ "value": 252,
+ "name": "Contents",
+ "path": "Extensions/ATTOExpressSASHBA.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 388,
+ "name": "ATTOExpressSASHBA3.kext",
+ "path": "Extensions/ATTOExpressSASHBA3.kext",
+ "children": [
+ {
+ "value": 388,
+ "name": "Contents",
+ "path": "Extensions/ATTOExpressSASHBA3.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 212,
+ "name": "ATTOExpressSASRAID.kext",
+ "path": "Extensions/ATTOExpressSASRAID.kext",
+ "children": [
+ {
+ "value": 212,
+ "name": "Contents",
+ "path": "Extensions/ATTOExpressSASRAID.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "AudioAUUC.kext",
+ "path": "Extensions/AudioAUUC.kext",
+ "children": [
+ {
+ "value": 4,
+ "name": "_CodeSignature",
+ "path": "Extensions/AudioAUUC.kext/_CodeSignature"
+ }
+ ]
+ },
+ {
+ "value": 144,
+ "name": "autofs.kext",
+ "path": "Extensions/autofs.kext",
+ "children": [
+ {
+ "value": 144,
+ "name": "Contents",
+ "path": "Extensions/autofs.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 80,
+ "name": "BootCache.kext",
+ "path": "Extensions/BootCache.kext",
+ "children": [
+ {
+ "value": 80,
+ "name": "Contents",
+ "path": "Extensions/BootCache.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "cd9660.kext",
+ "path": "Extensions/cd9660.kext",
+ "children": [
+ {
+ "value": 64,
+ "name": "Contents",
+ "path": "Extensions/cd9660.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 48,
+ "name": "cddafs.kext",
+ "path": "Extensions/cddafs.kext",
+ "children": [
+ {
+ "value": 48,
+ "name": "Contents",
+ "path": "Extensions/cddafs.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 432,
+ "name": "CellPhoneHelper.kext",
+ "path": "Extensions/CellPhoneHelper.kext",
+ "children": [
+ {
+ "value": 432,
+ "name": "Contents",
+ "path": "Extensions/CellPhoneHelper.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "ch34xsigned.kext",
+ "path": "Extensions/ch34xsigned.kext"
+ },
+ {
+ "value": 308,
+ "name": "corecrypto.kext",
+ "path": "Extensions/corecrypto.kext",
+ "children": [
+ {
+ "value": 308,
+ "name": "Contents",
+ "path": "Extensions/corecrypto.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1324,
+ "name": "CoreStorage.kext",
+ "path": "Extensions/CoreStorage.kext",
+ "children": [
+ {
+ "value": 1324,
+ "name": "Contents",
+ "path": "Extensions/CoreStorage.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "DontSteal Mac OS X.kext",
+ "path": "Extensions/DontSteal Mac OS X.kext",
+ "children": [
+ {
+ "value": 68,
+ "name": "Contents",
+ "path": "Extensions/DontSteal Mac OS X.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 36,
+ "name": "DSACL.ppp",
+ "path": "Extensions/DSACL.ppp",
+ "children": [
+ {
+ "value": 36,
+ "name": "Contents",
+ "path": "Extensions/DSACL.ppp/Contents"
+ }
+ ]
+ },
+ {
+ "value": 40,
+ "name": "DSAuth.ppp",
+ "path": "Extensions/DSAuth.ppp",
+ "children": [
+ {
+ "value": 40,
+ "name": "Contents",
+ "path": "Extensions/DSAuth.ppp/Contents"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "DVFamily.bundle",
+ "path": "Extensions/DVFamily.bundle",
+ "children": [
+ {
+ "value": 56,
+ "name": "Contents",
+ "path": "Extensions/DVFamily.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 312,
+ "name": "EAP-KRB.ppp",
+ "path": "Extensions/EAP-KRB.ppp",
+ "children": [
+ {
+ "value": 312,
+ "name": "Contents",
+ "path": "Extensions/EAP-KRB.ppp/Contents"
+ }
+ ]
+ },
+ {
+ "value": 792,
+ "name": "EAP-RSA.ppp",
+ "path": "Extensions/EAP-RSA.ppp",
+ "children": [
+ {
+ "value": 792,
+ "name": "Contents",
+ "path": "Extensions/EAP-RSA.ppp/Contents"
+ }
+ ]
+ },
+ {
+ "value": 308,
+ "name": "EAP-TLS.ppp",
+ "path": "Extensions/EAP-TLS.ppp",
+ "children": [
+ {
+ "value": 308,
+ "name": "Contents",
+ "path": "Extensions/EAP-TLS.ppp/Contents"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "exfat.kext",
+ "path": "Extensions/exfat.kext",
+ "children": [
+ {
+ "value": 88,
+ "name": "Contents",
+ "path": "Extensions/exfat.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 776,
+ "name": "GeForce.kext",
+ "path": "Extensions/GeForce.kext",
+ "children": [
+ {
+ "value": 776,
+ "name": "Contents",
+ "path": "Extensions/GeForce.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 160,
+ "name": "GeForceGA.plugin",
+ "path": "Extensions/GeForceGA.plugin",
+ "children": [
+ {
+ "value": 160,
+ "name": "Contents",
+ "path": "Extensions/GeForceGA.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 67212,
+ "name": "GeForceGLDriver.bundle",
+ "path": "Extensions/GeForceGLDriver.bundle",
+ "children": [
+ {
+ "value": 67212,
+ "name": "Contents",
+ "path": "Extensions/GeForceGLDriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1100,
+ "name": "GeForceTesla.kext",
+ "path": "Extensions/GeForceTesla.kext",
+ "children": [
+ {
+ "value": 1100,
+ "name": "Contents",
+ "path": "Extensions/GeForceTesla.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 67012,
+ "name": "GeForceTeslaGLDriver.bundle",
+ "path": "Extensions/GeForceTeslaGLDriver.bundle",
+ "children": [
+ {
+ "value": 67012,
+ "name": "Contents",
+ "path": "Extensions/GeForceTeslaGLDriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1584,
+ "name": "GeForceTeslaVADriver.bundle",
+ "path": "Extensions/GeForceTeslaVADriver.bundle",
+ "children": [
+ {
+ "value": 1584,
+ "name": "Contents",
+ "path": "Extensions/GeForceTeslaVADriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1476,
+ "name": "GeForceVADriver.bundle",
+ "path": "Extensions/GeForceVADriver.bundle",
+ "children": [
+ {
+ "value": 1476,
+ "name": "Contents",
+ "path": "Extensions/GeForceVADriver.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 212,
+ "name": "intelhaxm.kext",
+ "path": "Extensions/intelhaxm.kext",
+ "children": [
+ {
+ "value": 212,
+ "name": "Contents",
+ "path": "Extensions/intelhaxm.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 10488,
+ "name": "IO80211Family.kext",
+ "path": "Extensions/IO80211Family.kext",
+ "children": [
+ {
+ "value": 10488,
+ "name": "Contents",
+ "path": "Extensions/IO80211Family.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "IOAccelerator2D.plugin",
+ "path": "Extensions/IOAccelerator2D.plugin",
+ "children": [
+ {
+ "value": 56,
+ "name": "Contents",
+ "path": "Extensions/IOAccelerator2D.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 448,
+ "name": "IOAcceleratorFamily.kext",
+ "path": "Extensions/IOAcceleratorFamily.kext",
+ "children": [
+ {
+ "value": 448,
+ "name": "Contents",
+ "path": "Extensions/IOAcceleratorFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 508,
+ "name": "IOAcceleratorFamily2.kext",
+ "path": "Extensions/IOAcceleratorFamily2.kext",
+ "children": [
+ {
+ "value": 508,
+ "name": "Contents",
+ "path": "Extensions/IOAcceleratorFamily2.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 76,
+ "name": "IOACPIFamily.kext",
+ "path": "Extensions/IOACPIFamily.kext",
+ "children": [
+ {
+ "value": 76,
+ "name": "Contents",
+ "path": "Extensions/IOACPIFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 448,
+ "name": "IOAHCIFamily.kext",
+ "path": "Extensions/IOAHCIFamily.kext",
+ "children": [
+ {
+ "value": 448,
+ "name": "Contents",
+ "path": "Extensions/IOAHCIFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 872,
+ "name": "IOATAFamily.kext",
+ "path": "Extensions/IOATAFamily.kext",
+ "children": [
+ {
+ "value": 872,
+ "name": "Contents",
+ "path": "Extensions/IOATAFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "IOAudioFamily.kext",
+ "path": "Extensions/IOAudioFamily.kext",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "Extensions/IOAudioFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 692,
+ "name": "IOAVBFamily.kext",
+ "path": "Extensions/IOAVBFamily.kext",
+ "children": [
+ {
+ "value": 692,
+ "name": "Contents",
+ "path": "Extensions/IOAVBFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 4808,
+ "name": "IOBDStorageFamily.kext",
+ "path": "Extensions/IOBDStorageFamily.kext",
+ "children": [
+ {
+ "value": 4808,
+ "name": "Contents",
+ "path": "Extensions/IOBDStorageFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 4460,
+ "name": "IOBluetoothFamily.kext",
+ "path": "Extensions/IOBluetoothFamily.kext",
+ "children": [
+ {
+ "value": 4460,
+ "name": "Contents",
+ "path": "Extensions/IOBluetoothFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 260,
+ "name": "IOBluetoothHIDDriver.kext",
+ "path": "Extensions/IOBluetoothHIDDriver.kext",
+ "children": [
+ {
+ "value": 260,
+ "name": "Contents",
+ "path": "Extensions/IOBluetoothHIDDriver.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 4816,
+ "name": "IOCDStorageFamily.kext",
+ "path": "Extensions/IOCDStorageFamily.kext",
+ "children": [
+ {
+ "value": 4816,
+ "name": "Contents",
+ "path": "Extensions/IOCDStorageFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 9656,
+ "name": "IODVDStorageFamily.kext",
+ "path": "Extensions/IODVDStorageFamily.kext",
+ "children": [
+ {
+ "value": 9656,
+ "name": "Contents",
+ "path": "Extensions/IODVDStorageFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 288,
+ "name": "IOFireWireAVC.kext",
+ "path": "Extensions/IOFireWireAVC.kext",
+ "children": [
+ {
+ "value": 288,
+ "name": "Contents",
+ "path": "Extensions/IOFireWireAVC.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1424,
+ "name": "IOFireWireFamily.kext",
+ "path": "Extensions/IOFireWireFamily.kext",
+ "children": [
+ {
+ "value": 1424,
+ "name": "Contents",
+ "path": "Extensions/IOFireWireFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 236,
+ "name": "IOFireWireIP.kext",
+ "path": "Extensions/IOFireWireIP.kext",
+ "children": [
+ {
+ "value": 236,
+ "name": "Contents",
+ "path": "Extensions/IOFireWireIP.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 288,
+ "name": "IOFireWireSBP2.kext",
+ "path": "Extensions/IOFireWireSBP2.kext",
+ "children": [
+ {
+ "value": 288,
+ "name": "Contents",
+ "path": "Extensions/IOFireWireSBP2.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 68,
+ "name": "IOFireWireSerialBusProtocolTransport.kext",
+ "path": "Extensions/IOFireWireSerialBusProtocolTransport.kext",
+ "children": [
+ {
+ "value": 68,
+ "name": "Contents",
+ "path": "Extensions/IOFireWireSerialBusProtocolTransport.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 320,
+ "name": "IOGraphicsFamily.kext",
+ "path": "Extensions/IOGraphicsFamily.kext",
+ "children": [
+ {
+ "value": 4,
+ "name": "_CodeSignature",
+ "path": "Extensions/IOGraphicsFamily.kext/_CodeSignature"
+ }
+ ]
+ },
+ {
+ "value": 804,
+ "name": "IOHDIXController.kext",
+ "path": "Extensions/IOHDIXController.kext",
+ "children": [
+ {
+ "value": 804,
+ "name": "Contents",
+ "path": "Extensions/IOHDIXController.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 940,
+ "name": "IOHIDFamily.kext",
+ "path": "Extensions/IOHIDFamily.kext",
+ "children": [
+ {
+ "value": 940,
+ "name": "Contents",
+ "path": "Extensions/IOHIDFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 108,
+ "name": "IONDRVSupport.kext",
+ "path": "Extensions/IONDRVSupport.kext",
+ "children": [
+ {
+ "value": 4,
+ "name": "_CodeSignature",
+ "path": "Extensions/IONDRVSupport.kext/_CodeSignature"
+ }
+ ]
+ },
+ {
+ "value": 2396,
+ "name": "IONetworkingFamily.kext",
+ "path": "Extensions/IONetworkingFamily.kext",
+ "children": [
+ {
+ "value": 2396,
+ "name": "Contents",
+ "path": "Extensions/IONetworkingFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 228,
+ "name": "IOPCIFamily.kext",
+ "path": "Extensions/IOPCIFamily.kext",
+ "children": [
+ {
+ "value": 4,
+ "name": "_CodeSignature",
+ "path": "Extensions/IOPCIFamily.kext/_CodeSignature"
+ }
+ ]
+ },
+ {
+ "value": 1400,
+ "name": "IOPlatformPluginFamily.kext",
+ "path": "Extensions/IOPlatformPluginFamily.kext",
+ "children": [
+ {
+ "value": 1400,
+ "name": "Contents",
+ "path": "Extensions/IOPlatformPluginFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 108,
+ "name": "IOReportFamily.kext",
+ "path": "Extensions/IOReportFamily.kext",
+ "children": [
+ {
+ "value": 108,
+ "name": "Contents",
+ "path": "Extensions/IOReportFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 13020,
+ "name": "IOSCSIArchitectureModelFamily.kext",
+ "path": "Extensions/IOSCSIArchitectureModelFamily.kext",
+ "children": [
+ {
+ "value": 13020,
+ "name": "Contents",
+ "path": "Extensions/IOSCSIArchitectureModelFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 120,
+ "name": "IOSCSIParallelFamily.kext",
+ "path": "Extensions/IOSCSIParallelFamily.kext",
+ "children": [
+ {
+ "value": 120,
+ "name": "Contents",
+ "path": "Extensions/IOSCSIParallelFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1292,
+ "name": "IOSerialFamily.kext",
+ "path": "Extensions/IOSerialFamily.kext",
+ "children": [
+ {
+ "value": 1292,
+ "name": "Contents",
+ "path": "Extensions/IOSerialFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "IOSMBusFamily.kext",
+ "path": "Extensions/IOSMBusFamily.kext",
+ "children": [
+ {
+ "value": 52,
+ "name": "Contents",
+ "path": "Extensions/IOSMBusFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2064,
+ "name": "IOStorageFamily.kext",
+ "path": "Extensions/IOStorageFamily.kext",
+ "children": [
+ {
+ "value": 2064,
+ "name": "Contents",
+ "path": "Extensions/IOStorageFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 164,
+ "name": "IOStreamFamily.kext",
+ "path": "Extensions/IOStreamFamily.kext",
+ "children": [
+ {
+ "value": 164,
+ "name": "Contents",
+ "path": "Extensions/IOStreamFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 124,
+ "name": "IOSurface.kext",
+ "path": "Extensions/IOSurface.kext",
+ "children": [
+ {
+ "value": 124,
+ "name": "Contents",
+ "path": "Extensions/IOSurface.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1040,
+ "name": "IOThunderboltFamily.kext",
+ "path": "Extensions/IOThunderboltFamily.kext",
+ "children": [
+ {
+ "value": 1040,
+ "name": "Contents",
+ "path": "Extensions/IOThunderboltFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 248,
+ "name": "IOTimeSyncFamily.kext",
+ "path": "Extensions/IOTimeSyncFamily.kext",
+ "children": [
+ {
+ "value": 248,
+ "name": "Contents",
+ "path": "Extensions/IOTimeSyncFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 96,
+ "name": "IOUSBAttachedSCSI.kext",
+ "path": "Extensions/IOUSBAttachedSCSI.kext",
+ "children": [
+ {
+ "value": 96,
+ "name": "Contents",
+ "path": "Extensions/IOUSBAttachedSCSI.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 4628,
+ "name": "IOUSBFamily.kext",
+ "path": "Extensions/IOUSBFamily.kext",
+ "children": [
+ {
+ "value": 4628,
+ "name": "Contents",
+ "path": "Extensions/IOUSBFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 140,
+ "name": "IOUSBMassStorageClass.kext",
+ "path": "Extensions/IOUSBMassStorageClass.kext",
+ "children": [
+ {
+ "value": 140,
+ "name": "Contents",
+ "path": "Extensions/IOUSBMassStorageClass.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 100,
+ "name": "IOUserEthernet.kext",
+ "path": "Extensions/IOUserEthernet.kext",
+ "children": [
+ {
+ "value": 100,
+ "name": "Contents",
+ "path": "Extensions/IOUserEthernet.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 172,
+ "name": "IOVideoFamily.kext",
+ "path": "Extensions/IOVideoFamily.kext",
+ "children": [
+ {
+ "value": 172,
+ "name": "Contents",
+ "path": "Extensions/IOVideoFamily.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 168,
+ "name": "iPodDriver.kext",
+ "path": "Extensions/iPodDriver.kext",
+ "children": [
+ {
+ "value": 168,
+ "name": "Contents",
+ "path": "Extensions/iPodDriver.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 108,
+ "name": "JMicronATA.kext",
+ "path": "Extensions/JMicronATA.kext",
+ "children": [
+ {
+ "value": 108,
+ "name": "Contents",
+ "path": "Extensions/JMicronATA.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 208,
+ "name": "L2TP.ppp",
+ "path": "Extensions/L2TP.ppp",
+ "children": [
+ {
+ "value": 208,
+ "name": "Contents",
+ "path": "Extensions/L2TP.ppp/Contents"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "mcxalr.kext",
+ "path": "Extensions/mcxalr.kext",
+ "children": [
+ {
+ "value": 64,
+ "name": "Contents",
+ "path": "Extensions/mcxalr.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 92,
+ "name": "msdosfs.kext",
+ "path": "Extensions/msdosfs.kext",
+ "children": [
+ {
+ "value": 92,
+ "name": "Contents",
+ "path": "Extensions/msdosfs.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 408,
+ "name": "ntfs.kext",
+ "path": "Extensions/ntfs.kext",
+ "children": [
+ {
+ "value": 408,
+ "name": "Contents",
+ "path": "Extensions/ntfs.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2128,
+ "name": "NVDAGF100Hal.kext",
+ "path": "Extensions/NVDAGF100Hal.kext",
+ "children": [
+ {
+ "value": 2128,
+ "name": "Contents",
+ "path": "Extensions/NVDAGF100Hal.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1952,
+ "name": "NVDAGK100Hal.kext",
+ "path": "Extensions/NVDAGK100Hal.kext",
+ "children": [
+ {
+ "value": 1952,
+ "name": "Contents",
+ "path": "Extensions/NVDAGK100Hal.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 3104,
+ "name": "NVDANV50HalTesla.kext",
+ "path": "Extensions/NVDANV50HalTesla.kext",
+ "children": [
+ {
+ "value": 3104,
+ "name": "Contents",
+ "path": "Extensions/NVDANV50HalTesla.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2524,
+ "name": "NVDAResman.kext",
+ "path": "Extensions/NVDAResman.kext",
+ "children": [
+ {
+ "value": 2524,
+ "name": "Contents",
+ "path": "Extensions/NVDAResman.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2540,
+ "name": "NVDAResmanTesla.kext",
+ "path": "Extensions/NVDAResmanTesla.kext",
+ "children": [
+ {
+ "value": 2540,
+ "name": "Contents",
+ "path": "Extensions/NVDAResmanTesla.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "NVDAStartup.kext",
+ "path": "Extensions/NVDAStartup.kext",
+ "children": [
+ {
+ "value": 56,
+ "name": "Contents",
+ "path": "Extensions/NVDAStartup.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 104,
+ "name": "NVSMU.kext",
+ "path": "Extensions/NVSMU.kext",
+ "children": [
+ {
+ "value": 104,
+ "name": "Contents",
+ "path": "Extensions/NVSMU.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 92,
+ "name": "OSvKernDSPLib.kext",
+ "path": "Extensions/OSvKernDSPLib.kext",
+ "children": [
+ {
+ "value": 92,
+ "name": "Contents",
+ "path": "Extensions/OSvKernDSPLib.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "PPP.kext",
+ "path": "Extensions/PPP.kext",
+ "children": [
+ {
+ "value": 72,
+ "name": "Contents",
+ "path": "Extensions/PPP.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 120,
+ "name": "PPPoE.ppp",
+ "path": "Extensions/PPPoE.ppp",
+ "children": [
+ {
+ "value": 120,
+ "name": "Contents",
+ "path": "Extensions/PPPoE.ppp/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1572,
+ "name": "PPPSerial.ppp",
+ "path": "Extensions/PPPSerial.ppp",
+ "children": [
+ {
+ "value": 1572,
+ "name": "Contents",
+ "path": "Extensions/PPPSerial.ppp/Contents"
+ }
+ ]
+ },
+ {
+ "value": 120,
+ "name": "PPTP.ppp",
+ "path": "Extensions/PPTP.ppp",
+ "children": [
+ {
+ "value": 120,
+ "name": "Contents",
+ "path": "Extensions/PPTP.ppp/Contents"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "pthread.kext",
+ "path": "Extensions/pthread.kext",
+ "children": [
+ {
+ "value": 64,
+ "name": "Contents",
+ "path": "Extensions/pthread.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "Quarantine.kext",
+ "path": "Extensions/Quarantine.kext",
+ "children": [
+ {
+ "value": 56,
+ "name": "Contents",
+ "path": "Extensions/Quarantine.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "Radius.ppp",
+ "path": "Extensions/Radius.ppp",
+ "children": [
+ {
+ "value": 56,
+ "name": "Contents",
+ "path": "Extensions/Radius.ppp/Contents"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "RemoteVirtualInterface.kext",
+ "path": "Extensions/RemoteVirtualInterface.kext",
+ "children": [
+ {
+ "value": 52,
+ "name": "Contents",
+ "path": "Extensions/RemoteVirtualInterface.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 108,
+ "name": "Sandbox.kext",
+ "path": "Extensions/Sandbox.kext",
+ "children": [
+ {
+ "value": 108,
+ "name": "Contents",
+ "path": "Extensions/Sandbox.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 68,
+ "name": "SMARTLib.plugin",
+ "path": "Extensions/SMARTLib.plugin",
+ "children": [
+ {
+ "value": 68,
+ "name": "Contents",
+ "path": "Extensions/SMARTLib.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 376,
+ "name": "smbfs.kext",
+ "path": "Extensions/smbfs.kext",
+ "children": [
+ {
+ "value": 376,
+ "name": "Contents",
+ "path": "Extensions/smbfs.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 80,
+ "name": "SMCMotionSensor.kext",
+ "path": "Extensions/SMCMotionSensor.kext",
+ "children": [
+ {
+ "value": 80,
+ "name": "Contents",
+ "path": "Extensions/SMCMotionSensor.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 504,
+ "name": "System.kext",
+ "path": "Extensions/System.kext",
+ "children": [
+ {
+ "value": 20,
+ "name": "_CodeSignature",
+ "path": "Extensions/System.kext/_CodeSignature"
+ },
+ {
+ "value": 476,
+ "name": "PlugIns",
+ "path": "Extensions/System.kext/PlugIns"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "TMSafetyNet.kext",
+ "path": "Extensions/TMSafetyNet.kext",
+ "children": [
+ {
+ "value": 40,
+ "name": "Contents",
+ "path": "Extensions/TMSafetyNet.kext/Contents"
+ },
+ {
+ "value": 16,
+ "name": "Helpers",
+ "path": "Extensions/TMSafetyNet.kext/Helpers"
+ }
+ ]
+ },
+ {
+ "value": 40,
+ "name": "triggers.kext",
+ "path": "Extensions/triggers.kext",
+ "children": [
+ {
+ "value": 40,
+ "name": "Contents",
+ "path": "Extensions/triggers.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 296,
+ "name": "udf.kext",
+ "path": "Extensions/udf.kext",
+ "children": [
+ {
+ "value": 296,
+ "name": "Contents",
+ "path": "Extensions/udf.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 212,
+ "name": "vecLib.kext",
+ "path": "Extensions/vecLib.kext",
+ "children": [
+ {
+ "value": 212,
+ "name": "Contents",
+ "path": "Extensions/vecLib.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 176,
+ "name": "webcontentfilter.kext",
+ "path": "Extensions/webcontentfilter.kext",
+ "children": [
+ {
+ "value": 176,
+ "name": "Contents",
+ "path": "Extensions/webcontentfilter.kext/Contents"
+ }
+ ]
+ },
+ {
+ "value": 232,
+ "name": "webdav_fs.kext",
+ "path": "Extensions/webdav_fs.kext",
+ "children": [
+ {
+ "value": 232,
+ "name": "Contents",
+ "path": "Extensions/webdav_fs.kext/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 11992,
+ "name": "Filesystems",
+ "path": "Filesystems",
+ "children": [
+ {
+ "value": 5740,
+ "name": "acfs.fs",
+ "path": "Filesystems/acfs.fs",
+ "children": [
+ {
+ "value": 5644,
+ "name": "Contents",
+ "path": "Filesystems/acfs.fs/Contents"
+ }
+ ]
+ },
+ {
+ "value": 636,
+ "name": "AppleShare",
+ "path": "Filesystems/AppleShare",
+ "children": [
+ {
+ "value": 524,
+ "name": "afpfs.kext",
+ "path": "Filesystems/AppleShare/afpfs.kext"
+ },
+ {
+ "value": 88,
+ "name": "asp_tcp.kext",
+ "path": "Filesystems/AppleShare/asp_tcp.kext"
+ },
+ {
+ "value": 16,
+ "name": "check_afp.app",
+ "path": "Filesystems/AppleShare/check_afp.app"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "cd9660.fs",
+ "path": "Filesystems/cd9660.fs",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "Filesystems/cd9660.fs/Contents"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "cddafs.fs",
+ "path": "Filesystems/cddafs.fs",
+ "children": [
+ {
+ "value": 32,
+ "name": "Contents",
+ "path": "Filesystems/cddafs.fs/Contents"
+ }
+ ]
+ },
+ {
+ "value": 76,
+ "name": "exfat.fs",
+ "path": "Filesystems/exfat.fs",
+ "children": [
+ {
+ "value": 72,
+ "name": "Contents",
+ "path": "Filesystems/exfat.fs/Contents"
+ }
+ ]
+ },
+ {
+ "value": 36,
+ "name": "ftp.fs",
+ "path": "Filesystems/ftp.fs",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Filesystems/ftp.fs/Contents"
+ }
+ ]
+ },
+ {
+ "value": 3180,
+ "name": "hfs.fs",
+ "path": "Filesystems/hfs.fs",
+ "children": [
+ {
+ "value": 452,
+ "name": "Contents",
+ "path": "Filesystems/hfs.fs/Contents"
+ },
+ {
+ "value": 2724,
+ "name": "Encodings",
+ "path": "Filesystems/hfs.fs/Encodings"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "msdos.fs",
+ "path": "Filesystems/msdos.fs",
+ "children": [
+ {
+ "value": 60,
+ "name": "Contents",
+ "path": "Filesystems/msdos.fs/Contents"
+ }
+ ]
+ },
+ {
+ "value": 172,
+ "name": "NetFSPlugins",
+ "path": "Filesystems/NetFSPlugins",
+ "children": [
+ {
+ "value": 44,
+ "name": "afp.bundle",
+ "path": "Filesystems/NetFSPlugins/afp.bundle"
+ },
+ {
+ "value": 20,
+ "name": "ftp.bundle",
+ "path": "Filesystems/NetFSPlugins/ftp.bundle"
+ },
+ {
+ "value": 36,
+ "name": "http.bundle",
+ "path": "Filesystems/NetFSPlugins/http.bundle"
+ },
+ {
+ "value": 16,
+ "name": "nfs.bundle",
+ "path": "Filesystems/NetFSPlugins/nfs.bundle"
+ },
+ {
+ "value": 56,
+ "name": "smb.bundle",
+ "path": "Filesystems/NetFSPlugins/smb.bundle"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "nfs.fs",
+ "path": "Filesystems/nfs.fs",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Filesystems/nfs.fs/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "ntfs.fs",
+ "path": "Filesystems/ntfs.fs",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Filesystems/ntfs.fs/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1800,
+ "name": "prlufs.fs",
+ "path": "Filesystems/prlufs.fs",
+ "children": [
+ {
+ "value": 1800,
+ "name": "Support",
+ "path": "Filesystems/prlufs.fs/Support"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "smbfs.fs",
+ "path": "Filesystems/smbfs.fs",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Filesystems/smbfs.fs/Contents"
+ }
+ ]
+ },
+ {
+ "value": 204,
+ "name": "udf.fs",
+ "path": "Filesystems/udf.fs",
+ "children": [
+ {
+ "value": 200,
+ "name": "Contents",
+ "path": "Filesystems/udf.fs/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "webdav.fs",
+ "path": "Filesystems/webdav.fs",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Filesystems/webdav.fs/Contents"
+ },
+ {
+ "value": 8,
+ "name": "Support",
+ "path": "Filesystems/webdav.fs/Support"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 112,
+ "name": "Filters",
+ "path": "Filters"
+ },
+ {
+ "value": 201212,
+ "name": "Fonts",
+ "path": "Fonts"
+ },
+ {
+ "value": 647772,
+ "name": "Frameworks",
+ "path": "Frameworks",
+ "children": [
+ {
+ "value": 9800,
+ "name": "Accelerate.framework",
+ "path": "Frameworks/Accelerate.framework",
+ "children": [
+ {
+ "value": 9788,
+ "name": "Versions",
+ "path": "Frameworks/Accelerate.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 100,
+ "name": "Accounts.framework",
+ "path": "Frameworks/Accounts.framework",
+ "children": [
+ {
+ "value": 92,
+ "name": "Versions",
+ "path": "Frameworks/Accounts.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 10144,
+ "name": "AddressBook.framework",
+ "path": "Frameworks/AddressBook.framework",
+ "children": [
+ {
+ "value": 10136,
+ "name": "Versions",
+ "path": "Frameworks/AddressBook.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "AGL.framework",
+ "path": "Frameworks/AGL.framework",
+ "children": [
+ {
+ "value": 56,
+ "name": "Versions",
+ "path": "Frameworks/AGL.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 30320,
+ "name": "AppKit.framework",
+ "path": "Frameworks/AppKit.framework",
+ "children": [
+ {
+ "value": 30308,
+ "name": "Versions",
+ "path": "Frameworks/AppKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "AppKitScripting.framework",
+ "path": "Frameworks/AppKitScripting.framework",
+ "children": [
+ {
+ "value": 4,
+ "name": "Versions",
+ "path": "Frameworks/AppKitScripting.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 632,
+ "name": "AppleScriptKit.framework",
+ "path": "Frameworks/AppleScriptKit.framework",
+ "children": [
+ {
+ "value": 624,
+ "name": "Versions",
+ "path": "Frameworks/AppleScriptKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 104,
+ "name": "AppleScriptObjC.framework",
+ "path": "Frameworks/AppleScriptObjC.framework",
+ "children": [
+ {
+ "value": 96,
+ "name": "Versions",
+ "path": "Frameworks/AppleScriptObjC.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 324,
+ "name": "AppleShareClientCore.framework",
+ "path": "Frameworks/AppleShareClientCore.framework",
+ "children": [
+ {
+ "value": 316,
+ "name": "Versions",
+ "path": "Frameworks/AppleShareClientCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 77200,
+ "name": "ApplicationServices.framework",
+ "path": "Frameworks/ApplicationServices.framework",
+ "children": [
+ {
+ "value": 77188,
+ "name": "Versions",
+ "path": "Frameworks/ApplicationServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1792,
+ "name": "AudioToolbox.framework",
+ "path": "Frameworks/AudioToolbox.framework",
+ "children": [
+ {
+ "value": 1716,
+ "name": "Versions",
+ "path": "Frameworks/AudioToolbox.framework/Versions"
+ },
+ {
+ "value": 68,
+ "name": "XPCServices",
+ "path": "Frameworks/AudioToolbox.framework/XPCServices"
+ }
+ ]
+ },
+ {
+ "value": 40,
+ "name": "AudioUnit.framework",
+ "path": "Frameworks/AudioUnit.framework",
+ "children": [
+ {
+ "value": 32,
+ "name": "Versions",
+ "path": "Frameworks/AudioUnit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 736,
+ "name": "AudioVideoBridging.framework",
+ "path": "Frameworks/AudioVideoBridging.framework",
+ "children": [
+ {
+ "value": 728,
+ "name": "Versions",
+ "path": "Frameworks/AudioVideoBridging.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 11496,
+ "name": "Automator.framework",
+ "path": "Frameworks/Automator.framework",
+ "children": [
+ {
+ "value": 4,
+ "name": "Frameworks",
+ "path": "Frameworks/Automator.framework/Frameworks"
+ },
+ {
+ "value": 11484,
+ "name": "Versions",
+ "path": "Frameworks/Automator.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1648,
+ "name": "AVFoundation.framework",
+ "path": "Frameworks/AVFoundation.framework",
+ "children": [
+ {
+ "value": 1640,
+ "name": "Versions",
+ "path": "Frameworks/AVFoundation.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 408,
+ "name": "AVKit.framework",
+ "path": "Frameworks/AVKit.framework",
+ "children": [
+ {
+ "value": 400,
+ "name": "Versions",
+ "path": "Frameworks/AVKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1132,
+ "name": "CalendarStore.framework",
+ "path": "Frameworks/CalendarStore.framework",
+ "children": [
+ {
+ "value": 1124,
+ "name": "Versions",
+ "path": "Frameworks/CalendarStore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 25920,
+ "name": "Carbon.framework",
+ "path": "Frameworks/Carbon.framework",
+ "children": [
+ {
+ "value": 25908,
+ "name": "Versions",
+ "path": "Frameworks/Carbon.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2000,
+ "name": "CFNetwork.framework",
+ "path": "Frameworks/CFNetwork.framework",
+ "children": [
+ {
+ "value": 1992,
+ "name": "Versions",
+ "path": "Frameworks/CFNetwork.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "Cocoa.framework",
+ "path": "Frameworks/Cocoa.framework",
+ "children": [
+ {
+ "value": 12,
+ "name": "Versions",
+ "path": "Frameworks/Cocoa.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 900,
+ "name": "Collaboration.framework",
+ "path": "Frameworks/Collaboration.framework",
+ "children": [
+ {
+ "value": 892,
+ "name": "Versions",
+ "path": "Frameworks/Collaboration.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 432,
+ "name": "CoreAudio.framework",
+ "path": "Frameworks/CoreAudio.framework",
+ "children": [
+ {
+ "value": 420,
+ "name": "Versions",
+ "path": "Frameworks/CoreAudio.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 716,
+ "name": "CoreAudioKit.framework",
+ "path": "Frameworks/CoreAudioKit.framework",
+ "children": [
+ {
+ "value": 708,
+ "name": "Versions",
+ "path": "Frameworks/CoreAudioKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2632,
+ "name": "CoreData.framework",
+ "path": "Frameworks/CoreData.framework",
+ "children": [
+ {
+ "value": 2624,
+ "name": "Versions",
+ "path": "Frameworks/CoreData.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2608,
+ "name": "CoreFoundation.framework",
+ "path": "Frameworks/CoreFoundation.framework",
+ "children": [
+ {
+ "value": 2600,
+ "name": "Versions",
+ "path": "Frameworks/CoreFoundation.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 9152,
+ "name": "CoreGraphics.framework",
+ "path": "Frameworks/CoreGraphics.framework",
+ "children": [
+ {
+ "value": 9144,
+ "name": "Versions",
+ "path": "Frameworks/CoreGraphics.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 14552,
+ "name": "CoreLocation.framework",
+ "path": "Frameworks/CoreLocation.framework",
+ "children": [
+ {
+ "value": 14540,
+ "name": "Versions",
+ "path": "Frameworks/CoreLocation.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 452,
+ "name": "CoreMedia.framework",
+ "path": "Frameworks/CoreMedia.framework",
+ "children": [
+ {
+ "value": 440,
+ "name": "Versions",
+ "path": "Frameworks/CoreMedia.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2876,
+ "name": "CoreMediaIO.framework",
+ "path": "Frameworks/CoreMediaIO.framework",
+ "children": [
+ {
+ "value": 2864,
+ "name": "Versions",
+ "path": "Frameworks/CoreMediaIO.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 320,
+ "name": "CoreMIDI.framework",
+ "path": "Frameworks/CoreMIDI.framework",
+ "children": [
+ {
+ "value": 308,
+ "name": "Versions",
+ "path": "Frameworks/CoreMIDI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "CoreMIDIServer.framework",
+ "path": "Frameworks/CoreMIDIServer.framework",
+ "children": [
+ {
+ "value": 12,
+ "name": "Versions",
+ "path": "Frameworks/CoreMIDIServer.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 12024,
+ "name": "CoreServices.framework",
+ "path": "Frameworks/CoreServices.framework",
+ "children": [
+ {
+ "value": 12012,
+ "name": "Versions",
+ "path": "Frameworks/CoreServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1472,
+ "name": "CoreText.framework",
+ "path": "Frameworks/CoreText.framework",
+ "children": [
+ {
+ "value": 1464,
+ "name": "Versions",
+ "path": "Frameworks/CoreText.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 204,
+ "name": "CoreVideo.framework",
+ "path": "Frameworks/CoreVideo.framework",
+ "children": [
+ {
+ "value": 196,
+ "name": "Versions",
+ "path": "Frameworks/CoreVideo.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 520,
+ "name": "CoreWiFi.framework",
+ "path": "Frameworks/CoreWiFi.framework",
+ "children": [
+ {
+ "value": 512,
+ "name": "Versions",
+ "path": "Frameworks/CoreWiFi.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 536,
+ "name": "CoreWLAN.framework",
+ "path": "Frameworks/CoreWLAN.framework",
+ "children": [
+ {
+ "value": 528,
+ "name": "Versions",
+ "path": "Frameworks/CoreWLAN.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "DirectoryService.framework",
+ "path": "Frameworks/DirectoryService.framework",
+ "children": [
+ {
+ "value": 80,
+ "name": "Versions",
+ "path": "Frameworks/DirectoryService.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1352,
+ "name": "DiscRecording.framework",
+ "path": "Frameworks/DiscRecording.framework",
+ "children": [
+ {
+ "value": 1344,
+ "name": "Versions",
+ "path": "Frameworks/DiscRecording.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1384,
+ "name": "DiscRecordingUI.framework",
+ "path": "Frameworks/DiscRecordingUI.framework",
+ "children": [
+ {
+ "value": 1376,
+ "name": "Versions",
+ "path": "Frameworks/DiscRecordingUI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 76,
+ "name": "DiskArbitration.framework",
+ "path": "Frameworks/DiskArbitration.framework",
+ "children": [
+ {
+ "value": 68,
+ "name": "Versions",
+ "path": "Frameworks/DiskArbitration.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "DrawSprocket.framework",
+ "path": "Frameworks/DrawSprocket.framework",
+ "children": [
+ {
+ "value": 24,
+ "name": "Versions",
+ "path": "Frameworks/DrawSprocket.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "DVComponentGlue.framework",
+ "path": "Frameworks/DVComponentGlue.framework",
+ "children": [
+ {
+ "value": 12,
+ "name": "Versions",
+ "path": "Frameworks/DVComponentGlue.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1420,
+ "name": "DVDPlayback.framework",
+ "path": "Frameworks/DVDPlayback.framework",
+ "children": [
+ {
+ "value": 1412,
+ "name": "Versions",
+ "path": "Frameworks/DVDPlayback.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 232,
+ "name": "EventKit.framework",
+ "path": "Frameworks/EventKit.framework",
+ "children": [
+ {
+ "value": 224,
+ "name": "Versions",
+ "path": "Frameworks/EventKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "ExceptionHandling.framework",
+ "path": "Frameworks/ExceptionHandling.framework",
+ "children": [
+ {
+ "value": 24,
+ "name": "Versions",
+ "path": "Frameworks/ExceptionHandling.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "ForceFeedback.framework",
+ "path": "Frameworks/ForceFeedback.framework",
+ "children": [
+ {
+ "value": 24,
+ "name": "Versions",
+ "path": "Frameworks/ForceFeedback.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 4228,
+ "name": "Foundation.framework",
+ "path": "Frameworks/Foundation.framework",
+ "children": [
+ {
+ "value": 4216,
+ "name": "Versions",
+ "path": "Frameworks/Foundation.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "FWAUserLib.framework",
+ "path": "Frameworks/FWAUserLib.framework",
+ "children": [
+ {
+ "value": 44,
+ "name": "Versions",
+ "path": "Frameworks/FWAUserLib.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "GameController.framework",
+ "path": "Frameworks/GameController.framework",
+ "children": [
+ {
+ "value": 52,
+ "name": "Versions",
+ "path": "Frameworks/GameController.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 44244,
+ "name": "GameKit.framework",
+ "path": "Frameworks/GameKit.framework",
+ "children": [
+ {
+ "value": 44236,
+ "name": "Versions",
+ "path": "Frameworks/GameKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 132,
+ "name": "GLKit.framework",
+ "path": "Frameworks/GLKit.framework",
+ "children": [
+ {
+ "value": 124,
+ "name": "Versions",
+ "path": "Frameworks/GLKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1740,
+ "name": "GLUT.framework",
+ "path": "Frameworks/GLUT.framework",
+ "children": [
+ {
+ "value": 1732,
+ "name": "Versions",
+ "path": "Frameworks/GLUT.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 280,
+ "name": "GSS.framework",
+ "path": "Frameworks/GSS.framework",
+ "children": [
+ {
+ "value": 272,
+ "name": "Versions",
+ "path": "Frameworks/GSS.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 236,
+ "name": "ICADevices.framework",
+ "path": "Frameworks/ICADevices.framework",
+ "children": [
+ {
+ "value": 228,
+ "name": "Versions",
+ "path": "Frameworks/ICADevices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 392,
+ "name": "ImageCaptureCore.framework",
+ "path": "Frameworks/ImageCaptureCore.framework",
+ "children": [
+ {
+ "value": 384,
+ "name": "Versions",
+ "path": "Frameworks/ImageCaptureCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 4008,
+ "name": "ImageIO.framework",
+ "path": "Frameworks/ImageIO.framework",
+ "children": [
+ {
+ "value": 4000,
+ "name": "Versions",
+ "path": "Frameworks/ImageIO.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 104,
+ "name": "IMServicePlugIn.framework",
+ "path": "Frameworks/IMServicePlugIn.framework",
+ "children": [
+ {
+ "value": 28,
+ "name": "IMServicePlugInAgent.app",
+ "path": "Frameworks/IMServicePlugIn.framework/IMServicePlugInAgent.app"
+ },
+ {
+ "value": 64,
+ "name": "Versions",
+ "path": "Frameworks/IMServicePlugIn.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 368,
+ "name": "InputMethodKit.framework",
+ "path": "Frameworks/InputMethodKit.framework",
+ "children": [
+ {
+ "value": 356,
+ "name": "Versions",
+ "path": "Frameworks/InputMethodKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 360,
+ "name": "InstallerPlugins.framework",
+ "path": "Frameworks/InstallerPlugins.framework",
+ "children": [
+ {
+ "value": 352,
+ "name": "Versions",
+ "path": "Frameworks/InstallerPlugins.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 76,
+ "name": "InstantMessage.framework",
+ "path": "Frameworks/InstantMessage.framework",
+ "children": [
+ {
+ "value": 68,
+ "name": "Versions",
+ "path": "Frameworks/InstantMessage.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 904,
+ "name": "IOBluetooth.framework",
+ "path": "Frameworks/IOBluetooth.framework",
+ "children": [
+ {
+ "value": 892,
+ "name": "Versions",
+ "path": "Frameworks/IOBluetooth.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 4592,
+ "name": "IOBluetoothUI.framework",
+ "path": "Frameworks/IOBluetoothUI.framework",
+ "children": [
+ {
+ "value": 4584,
+ "name": "Versions",
+ "path": "Frameworks/IOBluetoothUI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 688,
+ "name": "IOKit.framework",
+ "path": "Frameworks/IOKit.framework",
+ "children": [
+ {
+ "value": 680,
+ "name": "Versions",
+ "path": "Frameworks/IOKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 48,
+ "name": "IOSurface.framework",
+ "path": "Frameworks/IOSurface.framework",
+ "children": [
+ {
+ "value": 40,
+ "name": "Versions",
+ "path": "Frameworks/IOSurface.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "JavaFrameEmbedding.framework",
+ "path": "Frameworks/JavaFrameEmbedding.framework",
+ "children": [
+ {
+ "value": 20,
+ "name": "Versions",
+ "path": "Frameworks/JavaFrameEmbedding.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 3336,
+ "name": "JavaScriptCore.framework",
+ "path": "Frameworks/JavaScriptCore.framework",
+ "children": [
+ {
+ "value": 3328,
+ "name": "Versions",
+ "path": "Frameworks/JavaScriptCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2756,
+ "name": "JavaVM.framework",
+ "path": "Frameworks/JavaVM.framework",
+ "children": [
+ {
+ "value": 2728,
+ "name": "Versions",
+ "path": "Frameworks/JavaVM.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 168,
+ "name": "Kerberos.framework",
+ "path": "Frameworks/Kerberos.framework",
+ "children": [
+ {
+ "value": 160,
+ "name": "Versions",
+ "path": "Frameworks/Kerberos.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 36,
+ "name": "Kernel.framework",
+ "path": "Frameworks/Kernel.framework",
+ "children": [
+ {
+ "value": 32,
+ "name": "Versions",
+ "path": "Frameworks/Kernel.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 200,
+ "name": "LatentSemanticMapping.framework",
+ "path": "Frameworks/LatentSemanticMapping.framework",
+ "children": [
+ {
+ "value": 192,
+ "name": "Versions",
+ "path": "Frameworks/LatentSemanticMapping.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 284,
+ "name": "LDAP.framework",
+ "path": "Frameworks/LDAP.framework",
+ "children": [
+ {
+ "value": 276,
+ "name": "Versions",
+ "path": "Frameworks/LDAP.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1872,
+ "name": "MapKit.framework",
+ "path": "Frameworks/MapKit.framework",
+ "children": [
+ {
+ "value": 1864,
+ "name": "Versions",
+ "path": "Frameworks/MapKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "MediaAccessibility.framework",
+ "path": "Frameworks/MediaAccessibility.framework",
+ "children": [
+ {
+ "value": 48,
+ "name": "Versions",
+ "path": "Frameworks/MediaAccessibility.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 100,
+ "name": "MediaLibrary.framework",
+ "path": "Frameworks/MediaLibrary.framework",
+ "children": [
+ {
+ "value": 88,
+ "name": "Versions",
+ "path": "Frameworks/MediaLibrary.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 3708,
+ "name": "MediaToolbox.framework",
+ "path": "Frameworks/MediaToolbox.framework",
+ "children": [
+ {
+ "value": 3700,
+ "name": "Versions",
+ "path": "Frameworks/MediaToolbox.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "Message.framework",
+ "path": "Frameworks/Message.framework",
+ "children": [
+ {
+ "value": 12,
+ "name": "Versions",
+ "path": "Frameworks/Message.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "NetFS.framework",
+ "path": "Frameworks/NetFS.framework",
+ "children": [
+ {
+ "value": 56,
+ "name": "Versions",
+ "path": "Frameworks/NetFS.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 192,
+ "name": "OpenAL.framework",
+ "path": "Frameworks/OpenAL.framework",
+ "children": [
+ {
+ "value": 184,
+ "name": "Versions",
+ "path": "Frameworks/OpenAL.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 78380,
+ "name": "OpenCL.framework",
+ "path": "Frameworks/OpenCL.framework",
+ "children": [
+ {
+ "value": 78368,
+ "name": "Versions",
+ "path": "Frameworks/OpenCL.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 288,
+ "name": "OpenDirectory.framework",
+ "path": "Frameworks/OpenDirectory.framework",
+ "children": [
+ {
+ "value": 252,
+ "name": "Versions",
+ "path": "Frameworks/OpenDirectory.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 25628,
+ "name": "OpenGL.framework",
+ "path": "Frameworks/OpenGL.framework",
+ "children": [
+ {
+ "value": 25616,
+ "name": "Versions",
+ "path": "Frameworks/OpenGL.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1136,
+ "name": "OSAKit.framework",
+ "path": "Frameworks/OSAKit.framework",
+ "children": [
+ {
+ "value": 1128,
+ "name": "Versions",
+ "path": "Frameworks/OSAKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "PCSC.framework",
+ "path": "Frameworks/PCSC.framework",
+ "children": [
+ {
+ "value": 80,
+ "name": "Versions",
+ "path": "Frameworks/PCSC.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 192,
+ "name": "PreferencePanes.framework",
+ "path": "Frameworks/PreferencePanes.framework",
+ "children": [
+ {
+ "value": 180,
+ "name": "Versions",
+ "path": "Frameworks/PreferencePanes.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1012,
+ "name": "PubSub.framework",
+ "path": "Frameworks/PubSub.framework",
+ "children": [
+ {
+ "value": 1004,
+ "name": "Versions",
+ "path": "Frameworks/PubSub.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 129696,
+ "name": "Python.framework",
+ "path": "Frameworks/Python.framework",
+ "children": [
+ {
+ "value": 129684,
+ "name": "Versions",
+ "path": "Frameworks/Python.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2516,
+ "name": "QTKit.framework",
+ "path": "Frameworks/QTKit.framework",
+ "children": [
+ {
+ "value": 2504,
+ "name": "Versions",
+ "path": "Frameworks/QTKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 23712,
+ "name": "Quartz.framework",
+ "path": "Frameworks/Quartz.framework",
+ "children": [
+ {
+ "value": 23700,
+ "name": "Versions",
+ "path": "Frameworks/Quartz.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 6644,
+ "name": "QuartzCore.framework",
+ "path": "Frameworks/QuartzCore.framework",
+ "children": [
+ {
+ "value": 6632,
+ "name": "Versions",
+ "path": "Frameworks/QuartzCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 3960,
+ "name": "QuickLook.framework",
+ "path": "Frameworks/QuickLook.framework",
+ "children": [
+ {
+ "value": 3948,
+ "name": "Versions",
+ "path": "Frameworks/QuickLook.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 3460,
+ "name": "QuickTime.framework",
+ "path": "Frameworks/QuickTime.framework",
+ "children": [
+ {
+ "value": 3452,
+ "name": "Versions",
+ "path": "Frameworks/QuickTime.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 13168,
+ "name": "Ruby.framework",
+ "path": "Frameworks/Ruby.framework",
+ "children": [
+ {
+ "value": 13160,
+ "name": "Versions",
+ "path": "Frameworks/Ruby.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 204,
+ "name": "RubyCocoa.framework",
+ "path": "Frameworks/RubyCocoa.framework",
+ "children": [
+ {
+ "value": 196,
+ "name": "Versions",
+ "path": "Frameworks/RubyCocoa.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 3628,
+ "name": "SceneKit.framework",
+ "path": "Frameworks/SceneKit.framework",
+ "children": [
+ {
+ "value": 3616,
+ "name": "Versions",
+ "path": "Frameworks/SceneKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1812,
+ "name": "ScreenSaver.framework",
+ "path": "Frameworks/ScreenSaver.framework",
+ "children": [
+ {
+ "value": 1804,
+ "name": "Versions",
+ "path": "Frameworks/ScreenSaver.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "Scripting.framework",
+ "path": "Frameworks/Scripting.framework",
+ "children": [
+ {
+ "value": 4,
+ "name": "Versions",
+ "path": "Frameworks/Scripting.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 144,
+ "name": "ScriptingBridge.framework",
+ "path": "Frameworks/ScriptingBridge.framework",
+ "children": [
+ {
+ "value": 136,
+ "name": "Versions",
+ "path": "Frameworks/ScriptingBridge.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 6224,
+ "name": "Security.framework",
+ "path": "Frameworks/Security.framework",
+ "children": [
+ {
+ "value": 124,
+ "name": "PlugIns",
+ "path": "Frameworks/Security.framework/PlugIns"
+ },
+ {
+ "value": 6088,
+ "name": "Versions",
+ "path": "Frameworks/Security.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2076,
+ "name": "SecurityFoundation.framework",
+ "path": "Frameworks/SecurityFoundation.framework",
+ "children": [
+ {
+ "value": 2068,
+ "name": "Versions",
+ "path": "Frameworks/SecurityFoundation.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 8660,
+ "name": "SecurityInterface.framework",
+ "path": "Frameworks/SecurityInterface.framework",
+ "children": [
+ {
+ "value": 8652,
+ "name": "Versions",
+ "path": "Frameworks/SecurityInterface.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "ServiceManagement.framework",
+ "path": "Frameworks/ServiceManagement.framework",
+ "children": [
+ {
+ "value": 68,
+ "name": "Versions",
+ "path": "Frameworks/ServiceManagement.framework/Versions"
+ },
+ {
+ "value": 12,
+ "name": "XPCServices",
+ "path": "Frameworks/ServiceManagement.framework/XPCServices"
+ }
+ ]
+ },
+ {
+ "value": 1112,
+ "name": "Social.framework",
+ "path": "Frameworks/Social.framework",
+ "children": [
+ {
+ "value": 516,
+ "name": "Versions",
+ "path": "Frameworks/Social.framework/Versions"
+ },
+ {
+ "value": 588,
+ "name": "XPCServices",
+ "path": "Frameworks/Social.framework/XPCServices"
+ }
+ ]
+ },
+ {
+ "value": 500,
+ "name": "SpriteKit.framework",
+ "path": "Frameworks/SpriteKit.framework",
+ "children": [
+ {
+ "value": 492,
+ "name": "Versions",
+ "path": "Frameworks/SpriteKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 96,
+ "name": "StoreKit.framework",
+ "path": "Frameworks/StoreKit.framework",
+ "children": [
+ {
+ "value": 88,
+ "name": "Versions",
+ "path": "Frameworks/StoreKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1608,
+ "name": "SyncServices.framework",
+ "path": "Frameworks/SyncServices.framework",
+ "children": [
+ {
+ "value": 1600,
+ "name": "Versions",
+ "path": "Frameworks/SyncServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "System.framework",
+ "path": "Frameworks/System.framework",
+ "children": [
+ {
+ "value": 36,
+ "name": "Versions",
+ "path": "Frameworks/System.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 576,
+ "name": "SystemConfiguration.framework",
+ "path": "Frameworks/SystemConfiguration.framework",
+ "children": [
+ {
+ "value": 568,
+ "name": "Versions",
+ "path": "Frameworks/SystemConfiguration.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 3208,
+ "name": "Tcl.framework",
+ "path": "Frameworks/Tcl.framework",
+ "children": [
+ {
+ "value": 3200,
+ "name": "Versions",
+ "path": "Frameworks/Tcl.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 3172,
+ "name": "Tk.framework",
+ "path": "Frameworks/Tk.framework",
+ "children": [
+ {
+ "value": 3160,
+ "name": "Versions",
+ "path": "Frameworks/Tk.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 76,
+ "name": "TWAIN.framework",
+ "path": "Frameworks/TWAIN.framework",
+ "children": [
+ {
+ "value": 68,
+ "name": "Versions",
+ "path": "Frameworks/TWAIN.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "VideoDecodeAcceleration.framework",
+ "path": "Frameworks/VideoDecodeAcceleration.framework",
+ "children": [
+ {
+ "value": 16,
+ "name": "Versions",
+ "path": "Frameworks/VideoDecodeAcceleration.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 3648,
+ "name": "VideoToolbox.framework",
+ "path": "Frameworks/VideoToolbox.framework",
+ "children": [
+ {
+ "value": 3636,
+ "name": "Versions",
+ "path": "Frameworks/VideoToolbox.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 17668,
+ "name": "WebKit.framework",
+ "path": "Frameworks/WebKit.framework",
+ "children": [
+ {
+ "value": 17512,
+ "name": "Versions",
+ "path": "Frameworks/WebKit.framework/Versions"
+ },
+ {
+ "value": 116,
+ "name": "WebKitPluginHost.app",
+ "path": "Frameworks/WebKit.framework/WebKitPluginHost.app"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 1076,
+ "name": "Graphics",
+ "path": "Graphics",
+ "children": [
+ {
+ "value": 876,
+ "name": "QuartzComposer Patches",
+ "path": "Graphics/QuartzComposer Patches",
+ "children": [
+ {
+ "value": 148,
+ "name": "Backdrops.plugin",
+ "path": "Graphics/QuartzComposer Patches/Backdrops.plugin"
+ },
+ {
+ "value": 36,
+ "name": "FaceEffects.plugin",
+ "path": "Graphics/QuartzComposer Patches/FaceEffects.plugin"
+ }
+ ]
+ },
+ {
+ "value": 200,
+ "name": "QuartzComposer Plug-Ins",
+ "path": "Graphics/QuartzComposer Plug-Ins",
+ "children": [
+ {
+ "value": 200,
+ "name": "WOTD.plugin",
+ "path": "Graphics/QuartzComposer Plug-Ins/WOTD.plugin"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "IdentityServices",
+ "path": "IdentityServices",
+ "children": [
+ {
+ "value": 0,
+ "name": "ServiceDefinitions",
+ "path": "IdentityServices/ServiceDefinitions"
+ }
+ ]
+ },
+ {
+ "value": 2900,
+ "name": "ImageCapture",
+ "path": "ImageCapture",
+ "children": [
+ {
+ "value": 200,
+ "name": "Automatic Tasks",
+ "path": "ImageCapture/Automatic Tasks",
+ "children": [
+ {
+ "value": 52,
+ "name": "Build Web Page.app",
+ "path": "ImageCapture/Automatic Tasks/Build Web Page.app"
+ },
+ {
+ "value": 148,
+ "name": "MakePDF.app",
+ "path": "ImageCapture/Automatic Tasks/MakePDF.app"
+ }
+ ]
+ },
+ {
+ "value": 480,
+ "name": "Devices",
+ "path": "ImageCapture/Devices",
+ "children": [
+ {
+ "value": 84,
+ "name": "AirScanScanner.app",
+ "path": "ImageCapture/Devices/AirScanScanner.app"
+ },
+ {
+ "value": 44,
+ "name": "MassStorageCamera.app",
+ "path": "ImageCapture/Devices/MassStorageCamera.app"
+ },
+ {
+ "value": 124,
+ "name": "PTPCamera.app",
+ "path": "ImageCapture/Devices/PTPCamera.app"
+ },
+ {
+ "value": 36,
+ "name": "Type4Camera.app",
+ "path": "ImageCapture/Devices/Type4Camera.app"
+ },
+ {
+ "value": 32,
+ "name": "Type5Camera.app",
+ "path": "ImageCapture/Devices/Type5Camera.app"
+ },
+ {
+ "value": 36,
+ "name": "Type8Camera.app",
+ "path": "ImageCapture/Devices/Type8Camera.app"
+ },
+ {
+ "value": 124,
+ "name": "VirtualScanner.app",
+ "path": "ImageCapture/Devices/VirtualScanner.app"
+ }
+ ]
+ },
+ {
+ "value": 2212,
+ "name": "Support",
+ "path": "ImageCapture/Support",
+ "children": [
+ {
+ "value": 432,
+ "name": "Application",
+ "path": "ImageCapture/Support/Application"
+ },
+ {
+ "value": 1608,
+ "name": "Icons",
+ "path": "ImageCapture/Support/Icons"
+ },
+ {
+ "value": 172,
+ "name": "Image Capture Extension.app",
+ "path": "ImageCapture/Support/Image Capture Extension.app"
+ },
+ {
+ "value": 3184,
+ "name": "CoreDeploy.bundle",
+ "path": "Java/Support/CoreDeploy.bundle"
+ },
+ {
+ "value": 2732,
+ "name": "Deploy.bundle",
+ "path": "Java/Support/Deploy.bundle"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "Tools",
+ "path": "ImageCapture/Tools"
+ },
+ {
+ "value": 0,
+ "name": "TWAIN Data Sources",
+ "path": "ImageCapture/TWAIN Data Sources"
+ }
+ ]
+ },
+ {
+ "value": 23668,
+ "name": "InputMethods",
+ "path": "InputMethods",
+ "children": [
+ {
+ "value": 1400,
+ "name": "50onPaletteServer.app",
+ "path": "InputMethods/50onPaletteServer.app",
+ "children": [
+ {
+ "value": 1400,
+ "name": "Contents",
+ "path": "InputMethods/50onPaletteServer.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 5728,
+ "name": "CharacterPalette.app",
+ "path": "InputMethods/CharacterPalette.app",
+ "children": [
+ {
+ "value": 5728,
+ "name": "Contents",
+ "path": "InputMethods/CharacterPalette.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2476,
+ "name": "DictationIM.app",
+ "path": "InputMethods/DictationIM.app",
+ "children": [
+ {
+ "value": 2476,
+ "name": "Contents",
+ "path": "InputMethods/DictationIM.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "InkServer.app",
+ "path": "InputMethods/InkServer.app",
+ "children": [
+ {
+ "value": 88,
+ "name": "Contents",
+ "path": "InputMethods/InkServer.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 736,
+ "name": "KeyboardViewer.app",
+ "path": "InputMethods/KeyboardViewer.app",
+ "children": [
+ {
+ "value": 736,
+ "name": "Contents",
+ "path": "InputMethods/KeyboardViewer.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1144,
+ "name": "KoreanIM.app",
+ "path": "InputMethods/KoreanIM.app",
+ "children": [
+ {
+ "value": 1144,
+ "name": "Contents",
+ "path": "InputMethods/KoreanIM.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2484,
+ "name": "Kotoeri.app",
+ "path": "InputMethods/Kotoeri.app",
+ "children": [
+ {
+ "value": 2484,
+ "name": "Contents",
+ "path": "InputMethods/Kotoeri.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 40,
+ "name": "PluginIM.app",
+ "path": "InputMethods/PluginIM.app",
+ "children": [
+ {
+ "value": 40,
+ "name": "Contents",
+ "path": "InputMethods/PluginIM.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "PressAndHold.app",
+ "path": "InputMethods/PressAndHold.app",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "InputMethods/PressAndHold.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "SCIM.app",
+ "path": "InputMethods/SCIM.app",
+ "children": [
+ {
+ "value": 64,
+ "name": "Contents",
+ "path": "InputMethods/SCIM.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 6916,
+ "name": "Switch Control.app",
+ "path": "InputMethods/Switch Control.app",
+ "children": [
+ {
+ "value": 6916,
+ "name": "Contents",
+ "path": "InputMethods/Switch Control.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 104,
+ "name": "TamilIM.app",
+ "path": "InputMethods/TamilIM.app",
+ "children": [
+ {
+ "value": 104,
+ "name": "Contents",
+ "path": "InputMethods/TamilIM.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 92,
+ "name": "TCIM.app",
+ "path": "InputMethods/TCIM.app",
+ "children": [
+ {
+ "value": 92,
+ "name": "Contents",
+ "path": "InputMethods/TCIM.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1820,
+ "name": "TrackpadIM.app",
+ "path": "InputMethods/TrackpadIM.app",
+ "children": [
+ {
+ "value": 1820,
+ "name": "Contents",
+ "path": "InputMethods/TrackpadIM.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 552,
+ "name": "VietnameseIM.app",
+ "path": "InputMethods/VietnameseIM.app",
+ "children": [
+ {
+ "value": 552,
+ "name": "Contents",
+ "path": "InputMethods/VietnameseIM.app/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 17668,
+ "name": "InternetAccounts",
+ "path": "InternetAccounts",
+ "children": [
+ {
+ "value": 336,
+ "name": "126.iaplugin",
+ "path": "InternetAccounts/126.iaplugin",
+ "children": [
+ {
+ "value": 336,
+ "name": "Contents",
+ "path": "InternetAccounts/126.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 332,
+ "name": "163.iaplugin",
+ "path": "InternetAccounts/163.iaplugin",
+ "children": [
+ {
+ "value": 332,
+ "name": "Contents",
+ "path": "InternetAccounts/163.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 48,
+ "name": "AddressBook.iaplugin",
+ "path": "InternetAccounts/AddressBook.iaplugin",
+ "children": [
+ {
+ "value": 48,
+ "name": "Contents",
+ "path": "InternetAccounts/AddressBook.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 304,
+ "name": "AOL.iaplugin",
+ "path": "InternetAccounts/AOL.iaplugin",
+ "children": [
+ {
+ "value": 304,
+ "name": "Contents",
+ "path": "InternetAccounts/AOL.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "Calendar.iaplugin",
+ "path": "InternetAccounts/Calendar.iaplugin",
+ "children": [
+ {
+ "value": 44,
+ "name": "Contents",
+ "path": "InternetAccounts/Calendar.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 784,
+ "name": "Exchange.iaplugin",
+ "path": "InternetAccounts/Exchange.iaplugin",
+ "children": [
+ {
+ "value": 784,
+ "name": "Contents",
+ "path": "InternetAccounts/Exchange.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 996,
+ "name": "Facebook.iaplugin",
+ "path": "InternetAccounts/Facebook.iaplugin",
+ "children": [
+ {
+ "value": 996,
+ "name": "Contents",
+ "path": "InternetAccounts/Facebook.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 596,
+ "name": "Flickr.iaplugin",
+ "path": "InternetAccounts/Flickr.iaplugin",
+ "children": [
+ {
+ "value": 596,
+ "name": "Contents",
+ "path": "InternetAccounts/Flickr.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 384,
+ "name": "Google.iaplugin",
+ "path": "InternetAccounts/Google.iaplugin",
+ "children": [
+ {
+ "value": 384,
+ "name": "Contents",
+ "path": "InternetAccounts/Google.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "iChat.iaplugin",
+ "path": "InternetAccounts/iChat.iaplugin",
+ "children": [
+ {
+ "value": 32,
+ "name": "Contents",
+ "path": "InternetAccounts/iChat.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 7436,
+ "name": "iCloud.iaplugin",
+ "path": "InternetAccounts/iCloud.iaplugin",
+ "children": [
+ {
+ "value": 7436,
+ "name": "Contents",
+ "path": "InternetAccounts/iCloud.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 840,
+ "name": "LinkedIn.iaplugin",
+ "path": "InternetAccounts/LinkedIn.iaplugin",
+ "children": [
+ {
+ "value": 840,
+ "name": "Contents",
+ "path": "InternetAccounts/LinkedIn.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "Mail.iaplugin",
+ "path": "InternetAccounts/Mail.iaplugin",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "InternetAccounts/Mail.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "Notes.iaplugin",
+ "path": "InternetAccounts/Notes.iaplugin",
+ "children": [
+ {
+ "value": 32,
+ "name": "Contents",
+ "path": "InternetAccounts/Notes.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 416,
+ "name": "OSXServer.iaplugin",
+ "path": "InternetAccounts/OSXServer.iaplugin",
+ "children": [
+ {
+ "value": 416,
+ "name": "Contents",
+ "path": "InternetAccounts/OSXServer.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 376,
+ "name": "QQ.iaplugin",
+ "path": "InternetAccounts/QQ.iaplugin",
+ "children": [
+ {
+ "value": 376,
+ "name": "Contents",
+ "path": "InternetAccounts/QQ.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "Reminders.iaplugin",
+ "path": "InternetAccounts/Reminders.iaplugin",
+ "children": [
+ {
+ "value": 32,
+ "name": "Contents",
+ "path": "InternetAccounts/Reminders.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1024,
+ "name": "SetupPlugins",
+ "path": "InternetAccounts/SetupPlugins",
+ "children": [
+ {
+ "value": 412,
+ "name": "CalUIAccountSetup.iaplugin",
+ "path": "InternetAccounts/SetupPlugins/CalUIAccountSetup.iaplugin"
+ },
+ {
+ "value": 580,
+ "name": "Contacts.iaplugin",
+ "path": "InternetAccounts/SetupPlugins/Contacts.iaplugin"
+ },
+ {
+ "value": 8,
+ "name": "MailAccountSetup.iaplugin",
+ "path": "InternetAccounts/SetupPlugins/MailAccountSetup.iaplugin"
+ },
+ {
+ "value": 16,
+ "name": "Messages.iaplugin",
+ "path": "InternetAccounts/SetupPlugins/Messages.iaplugin"
+ },
+ {
+ "value": 8,
+ "name": "NotesAccountSetup.iaplugin",
+ "path": "InternetAccounts/SetupPlugins/NotesAccountSetup.iaplugin"
+ }
+ ]
+ },
+ {
+ "value": 392,
+ "name": "TencentWeibo.iaplugin",
+ "path": "InternetAccounts/TencentWeibo.iaplugin",
+ "children": [
+ {
+ "value": 392,
+ "name": "Contents",
+ "path": "InternetAccounts/TencentWeibo.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 612,
+ "name": "Tudou.iaplugin",
+ "path": "InternetAccounts/Tudou.iaplugin",
+ "children": [
+ {
+ "value": 612,
+ "name": "Contents",
+ "path": "InternetAccounts/Tudou.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 608,
+ "name": "TwitterPlugin.iaplugin",
+ "path": "InternetAccounts/TwitterPlugin.iaplugin",
+ "children": [
+ {
+ "value": 608,
+ "name": "Contents",
+ "path": "InternetAccounts/TwitterPlugin.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 584,
+ "name": "Vimeo.iaplugin",
+ "path": "InternetAccounts/Vimeo.iaplugin",
+ "children": [
+ {
+ "value": 584,
+ "name": "Contents",
+ "path": "InternetAccounts/Vimeo.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 468,
+ "name": "Weibo.iaplugin",
+ "path": "InternetAccounts/Weibo.iaplugin",
+ "children": [
+ {
+ "value": 468,
+ "name": "Contents",
+ "path": "InternetAccounts/Weibo.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 316,
+ "name": "Yahoo.iaplugin",
+ "path": "InternetAccounts/Yahoo.iaplugin",
+ "children": [
+ {
+ "value": 316,
+ "name": "Contents",
+ "path": "InternetAccounts/Yahoo.iaplugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 648,
+ "name": "Youku.iaplugin",
+ "path": "InternetAccounts/Youku.iaplugin",
+ "children": [
+ {
+ "value": 648,
+ "name": "Contents",
+ "path": "InternetAccounts/Youku.iaplugin/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 68776,
+ "name": "Java",
+ "path": "Java",
+ "children": [
+ {
+ "value": 8848,
+ "name": "Extensions",
+ "path": "Java/Extensions"
+ },
+ {
+ "value": 54012,
+ "name": "JavaVirtualMachines",
+ "path": "Java/JavaVirtualMachines",
+ "children": [
+ {
+ "value": 54012,
+ "name": "1.6.0.jdk",
+ "path": "Java/JavaVirtualMachines/1.6.0.jdk"
+ }
+ ]
+ },
+ {
+ "value": 5916,
+ "name": "Support",
+ "path": "Java/Support",
+ "children": [
+ {
+ "value": 432,
+ "name": "Application",
+ "path": "ImageCapture/Support/Application"
+ },
+ {
+ "value": 1608,
+ "name": "Icons",
+ "path": "ImageCapture/Support/Icons"
+ },
+ {
+ "value": 172,
+ "name": "Image Capture Extension.app",
+ "path": "ImageCapture/Support/Image Capture Extension.app"
+ },
+ {
+ "value": 3184,
+ "name": "CoreDeploy.bundle",
+ "path": "Java/Support/CoreDeploy.bundle"
+ },
+ {
+ "value": 2732,
+ "name": "Deploy.bundle",
+ "path": "Java/Support/Deploy.bundle"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 48,
+ "name": "KerberosPlugins",
+ "path": "KerberosPlugins",
+ "children": [
+ {
+ "value": 48,
+ "name": "KerberosFrameworkPlugins",
+ "path": "KerberosPlugins/KerberosFrameworkPlugins",
+ "children": [
+ {
+ "value": 8,
+ "name": "heimdalodpac.bundle",
+ "path": "KerberosPlugins/KerberosFrameworkPlugins/heimdalodpac.bundle"
+ },
+ {
+ "value": 16,
+ "name": "LKDCLocate.bundle",
+ "path": "KerberosPlugins/KerberosFrameworkPlugins/LKDCLocate.bundle"
+ },
+ {
+ "value": 12,
+ "name": "Reachability.bundle",
+ "path": "KerberosPlugins/KerberosFrameworkPlugins/Reachability.bundle"
+ },
+ {
+ "value": 12,
+ "name": "SCKerberosConfig.bundle",
+ "path": "KerberosPlugins/KerberosFrameworkPlugins/SCKerberosConfig.bundle"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 276,
+ "name": "KeyboardLayouts",
+ "path": "KeyboardLayouts",
+ "children": [
+ {
+ "value": 276,
+ "name": "AppleKeyboardLayouts.bundle",
+ "path": "KeyboardLayouts/AppleKeyboardLayouts.bundle",
+ "children": [
+ {
+ "value": 276,
+ "name": "Contents",
+ "path": "KeyboardLayouts/AppleKeyboardLayouts.bundle/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 408,
+ "name": "Keychains",
+ "path": "Keychains"
+ },
+ {
+ "value": 4,
+ "name": "LaunchAgents",
+ "path": "LaunchAgents"
+ },
+ {
+ "value": 20,
+ "name": "LaunchDaemons",
+ "path": "LaunchDaemons"
+ },
+ {
+ "value": 96532,
+ "name": "LinguisticData",
+ "path": "LinguisticData",
+ "children": [
+ {
+ "value": 8,
+ "name": "da",
+ "path": "LinguisticData/da"
+ },
+ {
+ "value": 16476,
+ "name": "de",
+ "path": "LinguisticData/de"
+ },
+ {
+ "value": 9788,
+ "name": "en",
+ "path": "LinguisticData/en",
+ "children": [
+ {
+ "value": 36,
+ "name": "GB",
+ "path": "LinguisticData/en/GB"
+ },
+ {
+ "value": 28,
+ "name": "US",
+ "path": "LinguisticData/en/US"
+ }
+ ]
+ },
+ {
+ "value": 10276,
+ "name": "es",
+ "path": "LinguisticData/es"
+ },
+ {
+ "value": 0,
+ "name": "fi",
+ "path": "LinguisticData/fi"
+ },
+ {
+ "value": 12468,
+ "name": "fr",
+ "path": "LinguisticData/fr"
+ },
+ {
+ "value": 7336,
+ "name": "it",
+ "path": "LinguisticData/it"
+ },
+ {
+ "value": 192,
+ "name": "ko",
+ "path": "LinguisticData/ko"
+ },
+ {
+ "value": 48,
+ "name": "nl",
+ "path": "LinguisticData/nl"
+ },
+ {
+ "value": 112,
+ "name": "no",
+ "path": "LinguisticData/no"
+ },
+ {
+ "value": 4496,
+ "name": "pt",
+ "path": "LinguisticData/pt"
+ },
+ {
+ "value": 24,
+ "name": "ru",
+ "path": "LinguisticData/ru"
+ },
+ {
+ "value": 20,
+ "name": "sv",
+ "path": "LinguisticData/sv"
+ },
+ {
+ "value": 0,
+ "name": "tr",
+ "path": "LinguisticData/tr"
+ },
+ {
+ "value": 35288,
+ "name": "zh",
+ "path": "LinguisticData/zh",
+ "children": [
+ {
+ "value": 2604,
+ "name": "Hans",
+ "path": "LinguisticData/zh/Hans"
+ },
+ {
+ "value": 2868,
+ "name": "Hant",
+ "path": "LinguisticData/zh/Hant"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 4,
+ "name": "LocationBundles",
+ "path": "LocationBundles"
+ },
+ {
+ "value": 800,
+ "name": "LoginPlugins",
+ "path": "LoginPlugins",
+ "children": [
+ {
+ "value": 348,
+ "name": "BezelServices.loginPlugin",
+ "path": "LoginPlugins/BezelServices.loginPlugin",
+ "children": [
+ {
+ "value": 348,
+ "name": "Contents",
+ "path": "LoginPlugins/BezelServices.loginPlugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 108,
+ "name": "DisplayServices.loginPlugin",
+ "path": "LoginPlugins/DisplayServices.loginPlugin",
+ "children": [
+ {
+ "value": 108,
+ "name": "Contents",
+ "path": "LoginPlugins/DisplayServices.loginPlugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 344,
+ "name": "FSDisconnect.loginPlugin",
+ "path": "LoginPlugins/FSDisconnect.loginPlugin",
+ "children": [
+ {
+ "value": 344,
+ "name": "Contents",
+ "path": "LoginPlugins/FSDisconnect.loginPlugin/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 188,
+ "name": "Messages",
+ "path": "Messages",
+ "children": [
+ {
+ "value": 188,
+ "name": "PlugIns",
+ "path": "Messages/PlugIns",
+ "children": [
+ {
+ "value": 12,
+ "name": "Balloons.transcriptstyle",
+ "path": "Messages/PlugIns/Balloons.transcriptstyle"
+ },
+ {
+ "value": 8,
+ "name": "Boxes.transcriptstyle",
+ "path": "Messages/PlugIns/Boxes.transcriptstyle"
+ },
+ {
+ "value": 8,
+ "name": "Compact.transcriptstyle",
+ "path": "Messages/PlugIns/Compact.transcriptstyle"
+ },
+ {
+ "value": 76,
+ "name": "FaceTime.imservice",
+ "path": "Messages/PlugIns/FaceTime.imservice"
+ },
+ {
+ "value": 84,
+ "name": "iMessage.imservice",
+ "path": "Messages/PlugIns/iMessage.imservice"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "Metadata",
+ "path": "Metadata",
+ "children": [
+ {
+ "value": 0,
+ "name": "com.apple.finder.legacy.mdlabels",
+ "path": "Metadata/com.apple.finder.legacy.mdlabels",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Metadata/com.apple.finder.legacy.mdlabels/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 3276,
+ "name": "MonitorPanels",
+ "path": "MonitorPanels",
+ "children": [
+ {
+ "value": 860,
+ "name": "AppleDisplay.monitorPanels",
+ "path": "MonitorPanels/AppleDisplay.monitorPanels",
+ "children": [
+ {
+ "value": 860,
+ "name": "Contents",
+ "path": "MonitorPanels/AppleDisplay.monitorPanels/Contents"
+ }
+ ]
+ },
+ {
+ "value": 36,
+ "name": "Arrange.monitorPanel",
+ "path": "MonitorPanels/Arrange.monitorPanel",
+ "children": [
+ {
+ "value": 36,
+ "name": "Contents",
+ "path": "MonitorPanels/Arrange.monitorPanel/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2080,
+ "name": "Display.monitorPanel",
+ "path": "MonitorPanels/Display.monitorPanel",
+ "children": [
+ {
+ "value": 2080,
+ "name": "Contents",
+ "path": "MonitorPanels/Display.monitorPanel/Contents"
+ }
+ ]
+ },
+ {
+ "value": 300,
+ "name": "Profile.monitorPanel",
+ "path": "MonitorPanels/Profile.monitorPanel",
+ "children": [
+ {
+ "value": 300,
+ "name": "Contents",
+ "path": "MonitorPanels/Profile.monitorPanel/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 652,
+ "name": "OpenDirectory",
+ "path": "OpenDirectory",
+ "children": [
+ {
+ "value": 8,
+ "name": "Configurations",
+ "path": "OpenDirectory/Configurations"
+ },
+ {
+ "value": 0,
+ "name": "DynamicNodeTemplates",
+ "path": "OpenDirectory/DynamicNodeTemplates"
+ },
+ {
+ "value": 0,
+ "name": "ManagedClient",
+ "path": "OpenDirectory/ManagedClient"
+ },
+ {
+ "value": 12,
+ "name": "Mappings",
+ "path": "OpenDirectory/Mappings"
+ },
+ {
+ "value": 612,
+ "name": "Modules",
+ "path": "OpenDirectory/Modules",
+ "children": [
+ {
+ "value": 68,
+ "name": "ActiveDirectory.bundle",
+ "path": "OpenDirectory/Modules/ActiveDirectory.bundle"
+ },
+ {
+ "value": 12,
+ "name": "AppleID.bundle",
+ "path": "OpenDirectory/Modules/AppleID.bundle"
+ },
+ {
+ "value": 76,
+ "name": "AppleODClientLDAP.bundle",
+ "path": "OpenDirectory/Modules/AppleODClientLDAP.bundle"
+ },
+ {
+ "value": 68,
+ "name": "AppleODClientPWS.bundle",
+ "path": "OpenDirectory/Modules/AppleODClientPWS.bundle"
+ },
+ {
+ "value": 12,
+ "name": "ConfigurationProfiles.bundle",
+ "path": "OpenDirectory/Modules/ConfigurationProfiles.bundle"
+ },
+ {
+ "value": 20,
+ "name": "configure.bundle",
+ "path": "OpenDirectory/Modules/configure.bundle"
+ },
+ {
+ "value": 8,
+ "name": "FDESupport.bundle",
+ "path": "OpenDirectory/Modules/FDESupport.bundle"
+ },
+ {
+ "value": 12,
+ "name": "Kerberosv5.bundle",
+ "path": "OpenDirectory/Modules/Kerberosv5.bundle"
+ },
+ {
+ "value": 8,
+ "name": "keychain.bundle",
+ "path": "OpenDirectory/Modules/keychain.bundle"
+ },
+ {
+ "value": 44,
+ "name": "ldap.bundle",
+ "path": "OpenDirectory/Modules/ldap.bundle"
+ },
+ {
+ "value": 12,
+ "name": "legacy.bundle",
+ "path": "OpenDirectory/Modules/legacy.bundle"
+ },
+ {
+ "value": 12,
+ "name": "NetLogon.bundle",
+ "path": "OpenDirectory/Modules/NetLogon.bundle"
+ },
+ {
+ "value": 24,
+ "name": "nis.bundle",
+ "path": "OpenDirectory/Modules/nis.bundle"
+ },
+ {
+ "value": 68,
+ "name": "PlistFile.bundle",
+ "path": "OpenDirectory/Modules/PlistFile.bundle"
+ },
+ {
+ "value": 16,
+ "name": "proxy.bundle",
+ "path": "OpenDirectory/Modules/proxy.bundle"
+ },
+ {
+ "value": 20,
+ "name": "search.bundle",
+ "path": "OpenDirectory/Modules/search.bundle"
+ },
+ {
+ "value": 8,
+ "name": "statistics.bundle",
+ "path": "OpenDirectory/Modules/statistics.bundle"
+ },
+ {
+ "value": 124,
+ "name": "SystemCache.bundle",
+ "path": "OpenDirectory/Modules/SystemCache.bundle"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "Templates",
+ "path": "OpenDirectory/Templates",
+ "children": [
+ {
+ "value": 0,
+ "name": "LDAPv3",
+ "path": "DirectoryServices/Templates/LDAPv3"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "OpenSSL",
+ "path": "OpenSSL",
+ "children": [
+ {
+ "value": 0,
+ "name": "certs",
+ "path": "OpenSSL/certs"
+ },
+ {
+ "value": 0,
+ "name": "misc",
+ "path": "OpenSSL/misc"
+ },
+ {
+ "value": 0,
+ "name": "private",
+ "path": "OpenSSL/private"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "PasswordServer Filters",
+ "path": "PasswordServer Filters"
+ },
+ {
+ "value": 0,
+ "name": "PerformanceMetrics",
+ "path": "PerformanceMetrics"
+ },
+ {
+ "value": 57236,
+ "name": "Perl",
+ "path": "Perl",
+ "children": [
+ {
+ "value": 14848,
+ "name": "5.12",
+ "path": "Perl/5.12",
+ "children": [
+ {
+ "value": 20,
+ "name": "App",
+ "path": "Perl/5.12/App"
+ },
+ {
+ "value": 48,
+ "name": "Archive",
+ "path": "Perl/5.12/Archive"
+ },
+ {
+ "value": 12,
+ "name": "Attribute",
+ "path": "Perl/5.12/Attribute"
+ },
+ {
+ "value": 16,
+ "name": "autodie",
+ "path": "Perl/5.12/autodie"
+ },
+ {
+ "value": 56,
+ "name": "B",
+ "path": "Perl/5.12/B"
+ },
+ {
+ "value": 0,
+ "name": "Carp",
+ "path": "Perl/5.12/Carp"
+ },
+ {
+ "value": 32,
+ "name": "CGI",
+ "path": "Perl/5.12/CGI"
+ },
+ {
+ "value": 8,
+ "name": "Class",
+ "path": "Perl/5.12/Class"
+ },
+ {
+ "value": 12,
+ "name": "Compress",
+ "path": "Perl/5.12/Compress"
+ },
+ {
+ "value": 0,
+ "name": "Config",
+ "path": "Perl/5.12/Config"
+ },
+ {
+ "value": 120,
+ "name": "CPAN",
+ "path": "Perl/5.12/CPAN"
+ },
+ {
+ "value": 180,
+ "name": "CPANPLUS",
+ "path": "Perl/5.12/CPANPLUS"
+ },
+ {
+ "value": 7064,
+ "name": "darwin-thread-multi-2level",
+ "path": "Perl/5.12/darwin-thread-multi-2level"
+ },
+ {
+ "value": 0,
+ "name": "DBM_Filter",
+ "path": "Perl/5.12/DBM_Filter"
+ },
+ {
+ "value": 0,
+ "name": "Devel",
+ "path": "Perl/5.12/Devel"
+ },
+ {
+ "value": 0,
+ "name": "Digest",
+ "path": "Perl/5.12/Digest"
+ },
+ {
+ "value": 12,
+ "name": "Encode",
+ "path": "Perl/5.12/Encode"
+ },
+ {
+ "value": 0,
+ "name": "encoding",
+ "path": "Perl/5.12/encoding"
+ },
+ {
+ "value": 0,
+ "name": "Exporter",
+ "path": "Perl/5.12/Exporter"
+ },
+ {
+ "value": 224,
+ "name": "ExtUtils",
+ "path": "Perl/5.12/ExtUtils"
+ },
+ {
+ "value": 104,
+ "name": "File",
+ "path": "Perl/5.12/File"
+ },
+ {
+ "value": 12,
+ "name": "Filter",
+ "path": "Perl/5.12/Filter"
+ },
+ {
+ "value": 28,
+ "name": "Getopt",
+ "path": "Perl/5.12/Getopt"
+ },
+ {
+ "value": 24,
+ "name": "I18N",
+ "path": "Perl/5.12/I18N"
+ },
+ {
+ "value": 0,
+ "name": "inc",
+ "path": "Perl/5.12/inc"
+ },
+ {
+ "value": 152,
+ "name": "IO",
+ "path": "Perl/5.12/IO"
+ },
+ {
+ "value": 24,
+ "name": "IPC",
+ "path": "Perl/5.12/IPC"
+ },
+ {
+ "value": 60,
+ "name": "Locale",
+ "path": "Perl/5.12/Locale"
+ },
+ {
+ "value": 8,
+ "name": "Log",
+ "path": "Perl/5.12/Log"
+ },
+ {
+ "value": 144,
+ "name": "Math",
+ "path": "Perl/5.12/Math"
+ },
+ {
+ "value": 8,
+ "name": "Memoize",
+ "path": "Perl/5.12/Memoize"
+ },
+ {
+ "value": 284,
+ "name": "Module",
+ "path": "Perl/5.12/Module"
+ },
+ {
+ "value": 80,
+ "name": "Net",
+ "path": "Perl/5.12/Net"
+ },
+ {
+ "value": 8,
+ "name": "Object",
+ "path": "Perl/5.12/Object"
+ },
+ {
+ "value": 0,
+ "name": "overload",
+ "path": "Perl/5.12/overload"
+ },
+ {
+ "value": 0,
+ "name": "Package",
+ "path": "Perl/5.12/Package"
+ },
+ {
+ "value": 8,
+ "name": "Params",
+ "path": "Perl/5.12/Params"
+ },
+ {
+ "value": 0,
+ "name": "Parse",
+ "path": "Perl/5.12/Parse"
+ },
+ {
+ "value": 0,
+ "name": "PerlIO",
+ "path": "Perl/5.12/PerlIO"
+ },
+ {
+ "value": 312,
+ "name": "Pod",
+ "path": "Perl/5.12/Pod"
+ },
+ {
+ "value": 2452,
+ "name": "pods",
+ "path": "Perl/5.12/pods"
+ },
+ {
+ "value": 0,
+ "name": "Search",
+ "path": "Perl/5.12/Search"
+ },
+ {
+ "value": 32,
+ "name": "TAP",
+ "path": "Perl/5.12/TAP"
+ },
+ {
+ "value": 36,
+ "name": "Term",
+ "path": "Perl/5.12/Term"
+ },
+ {
+ "value": 60,
+ "name": "Test",
+ "path": "Perl/5.12/Test"
+ },
+ {
+ "value": 20,
+ "name": "Text",
+ "path": "Perl/5.12/Text"
+ },
+ {
+ "value": 8,
+ "name": "Thread",
+ "path": "Perl/5.12/Thread"
+ },
+ {
+ "value": 28,
+ "name": "Tie",
+ "path": "Perl/5.12/Tie"
+ },
+ {
+ "value": 8,
+ "name": "Time",
+ "path": "Perl/5.12/Time"
+ },
+ {
+ "value": 280,
+ "name": "Unicode",
+ "path": "Perl/5.12/Unicode"
+ },
+ {
+ "value": 2348,
+ "name": "unicore",
+ "path": "Perl/5.12/unicore"
+ },
+ {
+ "value": 8,
+ "name": "User",
+ "path": "Perl/5.12/User"
+ },
+ {
+ "value": 12,
+ "name": "version",
+ "path": "Perl/5.12/version"
+ },
+ {
+ "value": 0,
+ "name": "warnings",
+ "path": "Perl/5.12/warnings"
+ }
+ ]
+ },
+ {
+ "value": 14072,
+ "name": "5.16",
+ "path": "Perl/5.16",
+ "children": [
+ {
+ "value": 20,
+ "name": "App",
+ "path": "Perl/5.16/App"
+ },
+ {
+ "value": 48,
+ "name": "Archive",
+ "path": "Perl/5.16/Archive"
+ },
+ {
+ "value": 12,
+ "name": "Attribute",
+ "path": "Perl/5.16/Attribute"
+ },
+ {
+ "value": 16,
+ "name": "autodie",
+ "path": "Perl/5.16/autodie"
+ },
+ {
+ "value": 56,
+ "name": "B",
+ "path": "Perl/5.16/B"
+ },
+ {
+ "value": 0,
+ "name": "Carp",
+ "path": "Perl/5.16/Carp"
+ },
+ {
+ "value": 32,
+ "name": "CGI",
+ "path": "Perl/5.16/CGI"
+ },
+ {
+ "value": 8,
+ "name": "Class",
+ "path": "Perl/5.16/Class"
+ },
+ {
+ "value": 12,
+ "name": "Compress",
+ "path": "Perl/5.16/Compress"
+ },
+ {
+ "value": 0,
+ "name": "Config",
+ "path": "Perl/5.16/Config"
+ },
+ {
+ "value": 192,
+ "name": "CPAN",
+ "path": "Perl/5.16/CPAN"
+ },
+ {
+ "value": 180,
+ "name": "CPANPLUS",
+ "path": "Perl/5.16/CPANPLUS"
+ },
+ {
+ "value": 7328,
+ "name": "darwin-thread-multi-2level",
+ "path": "Perl/5.16/darwin-thread-multi-2level"
+ },
+ {
+ "value": 0,
+ "name": "DBM_Filter",
+ "path": "Perl/5.16/DBM_Filter"
+ },
+ {
+ "value": 0,
+ "name": "Devel",
+ "path": "Perl/5.16/Devel"
+ },
+ {
+ "value": 0,
+ "name": "Digest",
+ "path": "Perl/5.16/Digest"
+ },
+ {
+ "value": 12,
+ "name": "Encode",
+ "path": "Perl/5.16/Encode"
+ },
+ {
+ "value": 0,
+ "name": "encoding",
+ "path": "Perl/5.16/encoding"
+ },
+ {
+ "value": 0,
+ "name": "Exporter",
+ "path": "Perl/5.16/Exporter"
+ },
+ {
+ "value": 248,
+ "name": "ExtUtils",
+ "path": "Perl/5.16/ExtUtils"
+ },
+ {
+ "value": 96,
+ "name": "File",
+ "path": "Perl/5.16/File"
+ },
+ {
+ "value": 12,
+ "name": "Filter",
+ "path": "Perl/5.16/Filter"
+ },
+ {
+ "value": 28,
+ "name": "Getopt",
+ "path": "Perl/5.16/Getopt"
+ },
+ {
+ "value": 12,
+ "name": "HTTP",
+ "path": "Perl/5.16/HTTP"
+ },
+ {
+ "value": 24,
+ "name": "I18N",
+ "path": "Perl/5.16/I18N"
+ },
+ {
+ "value": 0,
+ "name": "inc",
+ "path": "Perl/5.16/inc"
+ },
+ {
+ "value": 168,
+ "name": "IO",
+ "path": "Perl/5.16/IO"
+ },
+ {
+ "value": 28,
+ "name": "IPC",
+ "path": "Perl/5.16/IPC"
+ },
+ {
+ "value": 28,
+ "name": "JSON",
+ "path": "Perl/5.16/JSON"
+ },
+ {
+ "value": 372,
+ "name": "Locale",
+ "path": "Perl/5.16/Locale"
+ },
+ {
+ "value": 8,
+ "name": "Log",
+ "path": "Perl/5.16/Log"
+ },
+ {
+ "value": 148,
+ "name": "Math",
+ "path": "Perl/5.16/Math"
+ },
+ {
+ "value": 8,
+ "name": "Memoize",
+ "path": "Perl/5.16/Memoize"
+ },
+ {
+ "value": 212,
+ "name": "Module",
+ "path": "Perl/5.16/Module"
+ },
+ {
+ "value": 80,
+ "name": "Net",
+ "path": "Perl/5.16/Net"
+ },
+ {
+ "value": 8,
+ "name": "Object",
+ "path": "Perl/5.16/Object"
+ },
+ {
+ "value": 0,
+ "name": "overload",
+ "path": "Perl/5.16/overload"
+ },
+ {
+ "value": 0,
+ "name": "Package",
+ "path": "Perl/5.16/Package"
+ },
+ {
+ "value": 8,
+ "name": "Params",
+ "path": "Perl/5.16/Params"
+ },
+ {
+ "value": 0,
+ "name": "Parse",
+ "path": "Perl/5.16/Parse"
+ },
+ {
+ "value": 0,
+ "name": "Perl",
+ "path": "Perl/5.16/Perl"
+ },
+ {
+ "value": 0,
+ "name": "PerlIO",
+ "path": "Perl/5.16/PerlIO"
+ },
+ {
+ "value": 324,
+ "name": "Pod",
+ "path": "Perl/5.16/Pod"
+ },
+ {
+ "value": 2452,
+ "name": "pods",
+ "path": "Perl/5.16/pods"
+ },
+ {
+ "value": 0,
+ "name": "Search",
+ "path": "Perl/5.16/Search"
+ },
+ {
+ "value": 44,
+ "name": "TAP",
+ "path": "Perl/5.16/TAP"
+ },
+ {
+ "value": 36,
+ "name": "Term",
+ "path": "Perl/5.16/Term"
+ },
+ {
+ "value": 60,
+ "name": "Test",
+ "path": "Perl/5.16/Test"
+ },
+ {
+ "value": 20,
+ "name": "Text",
+ "path": "Perl/5.16/Text"
+ },
+ {
+ "value": 8,
+ "name": "Thread",
+ "path": "Perl/5.16/Thread"
+ },
+ {
+ "value": 28,
+ "name": "Tie",
+ "path": "Perl/5.16/Tie"
+ },
+ {
+ "value": 8,
+ "name": "Time",
+ "path": "Perl/5.16/Time"
+ },
+ {
+ "value": 684,
+ "name": "Unicode",
+ "path": "Perl/5.16/Unicode"
+ },
+ {
+ "value": 468,
+ "name": "unicore",
+ "path": "Perl/5.16/unicore"
+ },
+ {
+ "value": 8,
+ "name": "User",
+ "path": "Perl/5.16/User"
+ },
+ {
+ "value": 12,
+ "name": "version",
+ "path": "Perl/5.16/version"
+ },
+ {
+ "value": 0,
+ "name": "warnings",
+ "path": "Perl/5.16/warnings"
+ }
+ ]
+ },
+ {
+ "value": 28316,
+ "name": "Extras",
+ "path": "Perl/Extras",
+ "children": [
+ {
+ "value": 14188,
+ "name": "5.12",
+ "path": "Perl/Extras/5.12"
+ },
+ {
+ "value": 14128,
+ "name": "5.16",
+ "path": "Perl/Extras/5.16"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 226552,
+ "name": "PreferencePanes",
+ "path": "PreferencePanes",
+ "children": [
+ {
+ "value": 5380,
+ "name": "Accounts.prefPane",
+ "path": "PreferencePanes/Accounts.prefPane",
+ "children": [
+ {
+ "value": 5380,
+ "name": "Contents",
+ "path": "PreferencePanes/Accounts.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1448,
+ "name": "Appearance.prefPane",
+ "path": "PreferencePanes/Appearance.prefPane",
+ "children": [
+ {
+ "value": 1448,
+ "name": "Contents",
+ "path": "PreferencePanes/Appearance.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2008,
+ "name": "AppStore.prefPane",
+ "path": "PreferencePanes/AppStore.prefPane",
+ "children": [
+ {
+ "value": 2008,
+ "name": "Contents",
+ "path": "PreferencePanes/AppStore.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1636,
+ "name": "Bluetooth.prefPane",
+ "path": "PreferencePanes/Bluetooth.prefPane",
+ "children": [
+ {
+ "value": 1636,
+ "name": "Contents",
+ "path": "PreferencePanes/Bluetooth.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2348,
+ "name": "DateAndTime.prefPane",
+ "path": "PreferencePanes/DateAndTime.prefPane",
+ "children": [
+ {
+ "value": 2348,
+ "name": "Contents",
+ "path": "PreferencePanes/DateAndTime.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 4644,
+ "name": "DesktopScreenEffectsPref.prefPane",
+ "path": "PreferencePanes/DesktopScreenEffectsPref.prefPane",
+ "children": [
+ {
+ "value": 4644,
+ "name": "Contents",
+ "path": "PreferencePanes/DesktopScreenEffectsPref.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2148,
+ "name": "DigiHubDiscs.prefPane",
+ "path": "PreferencePanes/DigiHubDiscs.prefPane",
+ "children": [
+ {
+ "value": 2148,
+ "name": "Contents",
+ "path": "PreferencePanes/DigiHubDiscs.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 624,
+ "name": "Displays.prefPane",
+ "path": "PreferencePanes/Displays.prefPane",
+ "children": [
+ {
+ "value": 624,
+ "name": "Contents",
+ "path": "PreferencePanes/Displays.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1012,
+ "name": "Dock.prefPane",
+ "path": "PreferencePanes/Dock.prefPane",
+ "children": [
+ {
+ "value": 1012,
+ "name": "Contents",
+ "path": "PreferencePanes/Dock.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2568,
+ "name": "EnergySaver.prefPane",
+ "path": "PreferencePanes/EnergySaver.prefPane",
+ "children": [
+ {
+ "value": 2568,
+ "name": "Contents",
+ "path": "PreferencePanes/EnergySaver.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 3056,
+ "name": "Expose.prefPane",
+ "path": "PreferencePanes/Expose.prefPane",
+ "children": [
+ {
+ "value": 3056,
+ "name": "Contents",
+ "path": "PreferencePanes/Expose.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 156,
+ "name": "FibreChannel.prefPane",
+ "path": "PreferencePanes/FibreChannel.prefPane",
+ "children": [
+ {
+ "value": 156,
+ "name": "Contents",
+ "path": "PreferencePanes/FibreChannel.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 252,
+ "name": "iCloudPref.prefPane",
+ "path": "PreferencePanes/iCloudPref.prefPane",
+ "children": [
+ {
+ "value": 252,
+ "name": "Contents",
+ "path": "PreferencePanes/iCloudPref.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1588,
+ "name": "Ink.prefPane",
+ "path": "PreferencePanes/Ink.prefPane",
+ "children": [
+ {
+ "value": 1588,
+ "name": "Contents",
+ "path": "PreferencePanes/Ink.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 4616,
+ "name": "InternetAccounts.prefPane",
+ "path": "PreferencePanes/InternetAccounts.prefPane",
+ "children": [
+ {
+ "value": 4616,
+ "name": "Contents",
+ "path": "PreferencePanes/InternetAccounts.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 3676,
+ "name": "Keyboard.prefPane",
+ "path": "PreferencePanes/Keyboard.prefPane",
+ "children": [
+ {
+ "value": 3676,
+ "name": "Contents",
+ "path": "PreferencePanes/Keyboard.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 3468,
+ "name": "Localization.prefPane",
+ "path": "PreferencePanes/Localization.prefPane",
+ "children": [
+ {
+ "value": 3468,
+ "name": "Contents",
+ "path": "PreferencePanes/Localization.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 23180,
+ "name": "Mouse.prefPane",
+ "path": "PreferencePanes/Mouse.prefPane",
+ "children": [
+ {
+ "value": 23180,
+ "name": "Contents",
+ "path": "PreferencePanes/Mouse.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20588,
+ "name": "Network.prefPane",
+ "path": "PreferencePanes/Network.prefPane",
+ "children": [
+ {
+ "value": 20588,
+ "name": "Contents",
+ "path": "PreferencePanes/Network.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1512,
+ "name": "Notifications.prefPane",
+ "path": "PreferencePanes/Notifications.prefPane",
+ "children": [
+ {
+ "value": 1512,
+ "name": "Contents",
+ "path": "PreferencePanes/Notifications.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 7648,
+ "name": "ParentalControls.prefPane",
+ "path": "PreferencePanes/ParentalControls.prefPane",
+ "children": [
+ {
+ "value": 7648,
+ "name": "Contents",
+ "path": "PreferencePanes/ParentalControls.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 4060,
+ "name": "PrintAndScan.prefPane",
+ "path": "PreferencePanes/PrintAndScan.prefPane",
+ "children": [
+ {
+ "value": 4060,
+ "name": "Contents",
+ "path": "PreferencePanes/PrintAndScan.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1904,
+ "name": "Profiles.prefPane",
+ "path": "PreferencePanes/Profiles.prefPane",
+ "children": [
+ {
+ "value": 1904,
+ "name": "Contents",
+ "path": "PreferencePanes/Profiles.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 6280,
+ "name": "Security.prefPane",
+ "path": "PreferencePanes/Security.prefPane",
+ "children": [
+ {
+ "value": 6280,
+ "name": "Contents",
+ "path": "PreferencePanes/Security.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 9608,
+ "name": "SharingPref.prefPane",
+ "path": "PreferencePanes/SharingPref.prefPane",
+ "children": [
+ {
+ "value": 9608,
+ "name": "Contents",
+ "path": "PreferencePanes/SharingPref.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2204,
+ "name": "Sound.prefPane",
+ "path": "PreferencePanes/Sound.prefPane",
+ "children": [
+ {
+ "value": 2204,
+ "name": "Contents",
+ "path": "PreferencePanes/Sound.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1072,
+ "name": "Speech.prefPane",
+ "path": "PreferencePanes/Speech.prefPane",
+ "children": [
+ {
+ "value": 1072,
+ "name": "Contents",
+ "path": "PreferencePanes/Speech.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1112,
+ "name": "Spotlight.prefPane",
+ "path": "PreferencePanes/Spotlight.prefPane",
+ "children": [
+ {
+ "value": 1112,
+ "name": "Contents",
+ "path": "PreferencePanes/Spotlight.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2040,
+ "name": "StartupDisk.prefPane",
+ "path": "PreferencePanes/StartupDisk.prefPane",
+ "children": [
+ {
+ "value": 2040,
+ "name": "Contents",
+ "path": "PreferencePanes/StartupDisk.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 3080,
+ "name": "TimeMachine.prefPane",
+ "path": "PreferencePanes/TimeMachine.prefPane",
+ "children": [
+ {
+ "value": 3080,
+ "name": "Contents",
+ "path": "PreferencePanes/TimeMachine.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 93312,
+ "name": "Trackpad.prefPane",
+ "path": "PreferencePanes/Trackpad.prefPane",
+ "children": [
+ {
+ "value": 93312,
+ "name": "Contents",
+ "path": "PreferencePanes/Trackpad.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 7680,
+ "name": "UniversalAccessPref.prefPane",
+ "path": "PreferencePanes/UniversalAccessPref.prefPane",
+ "children": [
+ {
+ "value": 7680,
+ "name": "Contents",
+ "path": "PreferencePanes/UniversalAccessPref.prefPane/Contents"
+ }
+ ]
+ },
+ {
+ "value": 640,
+ "name": "Xsan.prefPane",
+ "path": "PreferencePanes/Xsan.prefPane",
+ "children": [
+ {
+ "value": 640,
+ "name": "Contents",
+ "path": "PreferencePanes/Xsan.prefPane/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 224,
+ "name": "Printers",
+ "path": "Printers",
+ "children": [
+ {
+ "value": 224,
+ "name": "Libraries",
+ "path": "Printers/Libraries",
+ "children": [
+ {
+ "value": 24,
+ "name": "USBGenericPrintingClass.plugin",
+ "path": "Printers/Libraries/USBGenericPrintingClass.plugin"
+ },
+ {
+ "value": 24,
+ "name": "USBGenericTOPrintingClass.plugin",
+ "path": "Printers/Libraries/USBGenericTOPrintingClass.plugin"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 586092,
+ "name": "PrivateFrameworks",
+ "path": "PrivateFrameworks",
+ "children": [
+ {
+ "value": 52,
+ "name": "AccessibilityBundles.framework",
+ "path": "PrivateFrameworks/AccessibilityBundles.framework",
+ "children": [
+ {
+ "value": 44,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AccessibilityBundles.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 348,
+ "name": "AccountsDaemon.framework",
+ "path": "PrivateFrameworks/AccountsDaemon.framework",
+ "children": [
+ {
+ "value": 332,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AccountsDaemon.framework/Versions"
+ },
+ {
+ "value": 8,
+ "name": "XPCServices",
+ "path": "PrivateFrameworks/AccountsDaemon.framework/XPCServices"
+ }
+ ]
+ },
+ {
+ "value": 168,
+ "name": "Admin.framework",
+ "path": "PrivateFrameworks/Admin.framework",
+ "children": [
+ {
+ "value": 160,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Admin.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 408,
+ "name": "AirPortDevices.framework",
+ "path": "PrivateFrameworks/AirPortDevices.framework",
+ "children": [
+ {
+ "value": 408,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AirPortDevices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1324,
+ "name": "AirTrafficHost.framework",
+ "path": "PrivateFrameworks/AirTrafficHost.framework",
+ "children": [
+ {
+ "value": 1276,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AirTrafficHost.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2408,
+ "name": "Altitude.framework",
+ "path": "PrivateFrameworks/Altitude.framework",
+ "children": [
+ {
+ "value": 2400,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Altitude.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 224,
+ "name": "AOSAccounts.framework",
+ "path": "PrivateFrameworks/AOSAccounts.framework",
+ "children": [
+ {
+ "value": 216,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AOSAccounts.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 4672,
+ "name": "AOSKit.framework",
+ "path": "PrivateFrameworks/AOSKit.framework",
+ "children": [
+ {
+ "value": 4656,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AOSKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "AOSMigrate.framework",
+ "path": "PrivateFrameworks/AOSMigrate.framework",
+ "children": [
+ {
+ "value": 12,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AOSMigrate.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1300,
+ "name": "AOSNotification.framework",
+ "path": "PrivateFrameworks/AOSNotification.framework",
+ "children": [
+ {
+ "value": 52,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AOSNotification.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 16500,
+ "name": "AOSUI.framework",
+ "path": "PrivateFrameworks/AOSUI.framework",
+ "children": [
+ {
+ "value": 16492,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AOSUI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 124,
+ "name": "AppContainer.framework",
+ "path": "PrivateFrameworks/AppContainer.framework",
+ "children": [
+ {
+ "value": 116,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AppContainer.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 324,
+ "name": "Apple80211.framework",
+ "path": "PrivateFrameworks/Apple80211.framework",
+ "children": [
+ {
+ "value": 316,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Apple80211.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "AppleAppSupport.framework",
+ "path": "PrivateFrameworks/AppleAppSupport.framework",
+ "children": [
+ {
+ "value": 12,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AppleAppSupport.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "AppleFSCompression.framework",
+ "path": "PrivateFrameworks/AppleFSCompression.framework",
+ "children": [
+ {
+ "value": 80,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AppleFSCompression.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 712,
+ "name": "AppleGVA.framework",
+ "path": "PrivateFrameworks/AppleGVA.framework",
+ "children": [
+ {
+ "value": 704,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AppleGVA.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "AppleGVACore.framework",
+ "path": "PrivateFrameworks/AppleGVACore.framework",
+ "children": [
+ {
+ "value": 80,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AppleGVACore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "AppleLDAP.framework",
+ "path": "PrivateFrameworks/AppleLDAP.framework",
+ "children": [
+ {
+ "value": 44,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AppleLDAP.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 588,
+ "name": "AppleProfileFamily.framework",
+ "path": "PrivateFrameworks/AppleProfileFamily.framework",
+ "children": [
+ {
+ "value": 580,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AppleProfileFamily.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 508,
+ "name": "ApplePushService.framework",
+ "path": "PrivateFrameworks/ApplePushService.framework",
+ "children": [
+ {
+ "value": 128,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ApplePushService.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 672,
+ "name": "AppleScript.framework",
+ "path": "PrivateFrameworks/AppleScript.framework",
+ "children": [
+ {
+ "value": 664,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AppleScript.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 68,
+ "name": "AppleSRP.framework",
+ "path": "PrivateFrameworks/AppleSRP.framework",
+ "children": [
+ {
+ "value": 60,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AppleSRP.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "AppleSystemInfo.framework",
+ "path": "PrivateFrameworks/AppleSystemInfo.framework",
+ "children": [
+ {
+ "value": 36,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AppleSystemInfo.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 336,
+ "name": "AppleVA.framework",
+ "path": "PrivateFrameworks/AppleVA.framework",
+ "children": [
+ {
+ "value": 328,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AppleVA.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "AppSandbox.framework",
+ "path": "PrivateFrameworks/AppSandbox.framework",
+ "children": [
+ {
+ "value": 64,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AppSandbox.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 380,
+ "name": "Assistant.framework",
+ "path": "PrivateFrameworks/Assistant.framework",
+ "children": [
+ {
+ "value": 372,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Assistant.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1772,
+ "name": "AssistantServices.framework",
+ "path": "PrivateFrameworks/AssistantServices.framework",
+ "children": [
+ {
+ "value": 116,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AssistantServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 684,
+ "name": "AssistiveControlSupport.framework",
+ "path": "PrivateFrameworks/AssistiveControlSupport.framework",
+ "children": [
+ {
+ "value": 224,
+ "name": "Frameworks",
+ "path": "PrivateFrameworks/AssistiveControlSupport.framework/Frameworks"
+ },
+ {
+ "value": 452,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AssistiveControlSupport.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1880,
+ "name": "AVConference.framework",
+ "path": "PrivateFrameworks/AVConference.framework",
+ "children": [
+ {
+ "value": 388,
+ "name": "Frameworks",
+ "path": "PrivateFrameworks/AVConference.framework/Frameworks"
+ },
+ {
+ "value": 1484,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AVConference.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 168,
+ "name": "AVCore.framework",
+ "path": "PrivateFrameworks/AVCore.framework",
+ "children": [
+ {
+ "value": 160,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AVCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 296,
+ "name": "AVFoundationCF.framework",
+ "path": "PrivateFrameworks/AVFoundationCF.framework",
+ "children": [
+ {
+ "value": 288,
+ "name": "Versions",
+ "path": "PrivateFrameworks/AVFoundationCF.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 3728,
+ "name": "Backup.framework",
+ "path": "PrivateFrameworks/Backup.framework",
+ "children": [
+ {
+ "value": 3720,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Backup.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "BezelServices.framework",
+ "path": "PrivateFrameworks/BezelServices.framework",
+ "children": [
+ {
+ "value": 44,
+ "name": "Versions",
+ "path": "PrivateFrameworks/BezelServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 316,
+ "name": "Bom.framework",
+ "path": "PrivateFrameworks/Bom.framework",
+ "children": [
+ {
+ "value": 308,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Bom.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "BookKit.framework",
+ "path": "PrivateFrameworks/BookKit.framework",
+ "children": [
+ {
+ "value": 76,
+ "name": "Versions",
+ "path": "PrivateFrameworks/BookKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 124,
+ "name": "BookmarkDAV.framework",
+ "path": "PrivateFrameworks/BookmarkDAV.framework",
+ "children": [
+ {
+ "value": 108,
+ "name": "Versions",
+ "path": "PrivateFrameworks/BookmarkDAV.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1732,
+ "name": "BrowserKit.framework",
+ "path": "PrivateFrameworks/BrowserKit.framework",
+ "children": [
+ {
+ "value": 1724,
+ "name": "Versions",
+ "path": "PrivateFrameworks/BrowserKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "ByteRangeLocking.framework",
+ "path": "PrivateFrameworks/ByteRangeLocking.framework",
+ "children": [
+ {
+ "value": 44,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ByteRangeLocking.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "Calculate.framework",
+ "path": "PrivateFrameworks/Calculate.framework",
+ "children": [
+ {
+ "value": 56,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Calculate.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 356,
+ "name": "CalDAV.framework",
+ "path": "PrivateFrameworks/CalDAV.framework",
+ "children": [
+ {
+ "value": 348,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CalDAV.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 104,
+ "name": "CalendarAgent.framework",
+ "path": "PrivateFrameworks/CalendarAgent.framework",
+ "children": [
+ {
+ "value": 8,
+ "name": "Executables",
+ "path": "PrivateFrameworks/CalendarAgent.framework/Executables"
+ },
+ {
+ "value": 88,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CalendarAgent.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "CalendarAgentLink.framework",
+ "path": "PrivateFrameworks/CalendarAgentLink.framework",
+ "children": [
+ {
+ "value": 80,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CalendarAgentLink.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 220,
+ "name": "CalendarDraw.framework",
+ "path": "PrivateFrameworks/CalendarDraw.framework",
+ "children": [
+ {
+ "value": 212,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CalendarDraw.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 196,
+ "name": "CalendarFoundation.framework",
+ "path": "PrivateFrameworks/CalendarFoundation.framework",
+ "children": [
+ {
+ "value": 188,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CalendarFoundation.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 4872,
+ "name": "CalendarPersistence.framework",
+ "path": "PrivateFrameworks/CalendarPersistence.framework",
+ "children": [
+ {
+ "value": 4864,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CalendarPersistence.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 900,
+ "name": "CalendarUI.framework",
+ "path": "PrivateFrameworks/CalendarUI.framework",
+ "children": [
+ {
+ "value": 892,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CalendarUI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 76,
+ "name": "CaptiveNetwork.framework",
+ "path": "PrivateFrameworks/CaptiveNetwork.framework",
+ "children": [
+ {
+ "value": 68,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CaptiveNetwork.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1180,
+ "name": "CharacterPicker.framework",
+ "path": "PrivateFrameworks/CharacterPicker.framework",
+ "children": [
+ {
+ "value": 1168,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CharacterPicker.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 192,
+ "name": "ChunkingLibrary.framework",
+ "path": "PrivateFrameworks/ChunkingLibrary.framework",
+ "children": [
+ {
+ "value": 184,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ChunkingLibrary.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 48,
+ "name": "ClockMenuExtraPreferences.framework",
+ "path": "PrivateFrameworks/ClockMenuExtraPreferences.framework",
+ "children": [
+ {
+ "value": 40,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ClockMenuExtraPreferences.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 160,
+ "name": "CloudServices.framework",
+ "path": "PrivateFrameworks/CloudServices.framework",
+ "children": [
+ {
+ "value": 104,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CloudServices.framework/Versions"
+ },
+ {
+ "value": 48,
+ "name": "XPCServices",
+ "path": "PrivateFrameworks/CloudServices.framework/XPCServices"
+ }
+ ]
+ },
+ {
+ "value": 10768,
+ "name": "CommerceKit.framework",
+ "path": "PrivateFrameworks/CommerceKit.framework",
+ "children": [
+ {
+ "value": 10752,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CommerceKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 68,
+ "name": "CommonAuth.framework",
+ "path": "PrivateFrameworks/CommonAuth.framework",
+ "children": [
+ {
+ "value": 60,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CommonAuth.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 120,
+ "name": "CommonCandidateWindow.framework",
+ "path": "PrivateFrameworks/CommonCandidateWindow.framework",
+ "children": [
+ {
+ "value": 112,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CommonCandidateWindow.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "CommunicationsFilter.framework",
+ "path": "PrivateFrameworks/CommunicationsFilter.framework",
+ "children": [
+ {
+ "value": 28,
+ "name": "CMFSyncAgent.app",
+ "path": "PrivateFrameworks/CommunicationsFilter.framework/CMFSyncAgent.app"
+ },
+ {
+ "value": 36,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CommunicationsFilter.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "ConfigProfileHelper.framework",
+ "path": "PrivateFrameworks/ConfigProfileHelper.framework",
+ "children": [
+ {
+ "value": 16,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ConfigProfileHelper.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 156,
+ "name": "ConfigurationProfiles.framework",
+ "path": "PrivateFrameworks/ConfigurationProfiles.framework",
+ "children": [
+ {
+ "value": 148,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ConfigurationProfiles.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "ContactsAssistantServices.framework",
+ "path": "PrivateFrameworks/ContactsAssistantServices.framework",
+ "children": [
+ {
+ "value": 12,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ContactsAssistantServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "ContactsAutocomplete.framework",
+ "path": "PrivateFrameworks/ContactsAutocomplete.framework",
+ "children": [
+ {
+ "value": 64,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ContactsAutocomplete.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "ContactsData.framework",
+ "path": "PrivateFrameworks/ContactsData.framework",
+ "children": [
+ {
+ "value": 16,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ContactsData.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "ContactsFoundation.framework",
+ "path": "PrivateFrameworks/ContactsFoundation.framework",
+ "children": [
+ {
+ "value": 52,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ContactsFoundation.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 100,
+ "name": "ContactsUI.framework",
+ "path": "PrivateFrameworks/ContactsUI.framework",
+ "children": [
+ {
+ "value": 92,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ContactsUI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1668,
+ "name": "CoreADI.framework",
+ "path": "PrivateFrameworks/CoreADI.framework",
+ "children": [
+ {
+ "value": 1660,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreADI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 4092,
+ "name": "CoreAUC.framework",
+ "path": "PrivateFrameworks/CoreAUC.framework",
+ "children": [
+ {
+ "value": 4084,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreAUC.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 200,
+ "name": "CoreAVCHD.framework",
+ "path": "PrivateFrameworks/CoreAVCHD.framework",
+ "children": [
+ {
+ "value": 192,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreAVCHD.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2624,
+ "name": "CoreChineseEngine.framework",
+ "path": "PrivateFrameworks/CoreChineseEngine.framework",
+ "children": [
+ {
+ "value": 2616,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreChineseEngine.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 240,
+ "name": "CoreDaemon.framework",
+ "path": "PrivateFrameworks/CoreDaemon.framework",
+ "children": [
+ {
+ "value": 232,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreDaemon.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 488,
+ "name": "CoreDAV.framework",
+ "path": "PrivateFrameworks/CoreDAV.framework",
+ "children": [
+ {
+ "value": 480,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreDAV.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 19280,
+ "name": "CoreFP.framework",
+ "path": "PrivateFrameworks/CoreFP.framework",
+ "children": [
+ {
+ "value": 19268,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreFP.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 16124,
+ "name": "CoreHandwriting.framework",
+ "path": "PrivateFrameworks/CoreHandwriting.framework",
+ "children": [
+ {
+ "value": 16116,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreHandwriting.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2124,
+ "name": "CoreKE.framework",
+ "path": "PrivateFrameworks/CoreKE.framework",
+ "children": [
+ {
+ "value": 2116,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreKE.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 7856,
+ "name": "CoreLSKD.framework",
+ "path": "PrivateFrameworks/CoreLSKD.framework",
+ "children": [
+ {
+ "value": 7848,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreLSKD.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 824,
+ "name": "CoreMediaAuthoring.framework",
+ "path": "PrivateFrameworks/CoreMediaAuthoring.framework",
+ "children": [
+ {
+ "value": 816,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreMediaAuthoring.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 784,
+ "name": "CoreMediaIOServicesPrivate.framework",
+ "path": "PrivateFrameworks/CoreMediaIOServicesPrivate.framework",
+ "children": [
+ {
+ "value": 776,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 116,
+ "name": "CoreMediaPrivate.framework",
+ "path": "PrivateFrameworks/CoreMediaPrivate.framework",
+ "children": [
+ {
+ "value": 108,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreMediaPrivate.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 292,
+ "name": "CoreMediaStream.framework",
+ "path": "PrivateFrameworks/CoreMediaStream.framework",
+ "children": [
+ {
+ "value": 284,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreMediaStream.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1436,
+ "name": "CorePDF.framework",
+ "path": "PrivateFrameworks/CorePDF.framework",
+ "children": [
+ {
+ "value": 1428,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CorePDF.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1324,
+ "name": "CoreProfile.framework",
+ "path": "PrivateFrameworks/CoreProfile.framework",
+ "children": [
+ {
+ "value": 1312,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreProfile.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1384,
+ "name": "CoreRAID.framework",
+ "path": "PrivateFrameworks/CoreRAID.framework",
+ "children": [
+ {
+ "value": 1372,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreRAID.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 128,
+ "name": "CoreRecents.framework",
+ "path": "PrivateFrameworks/CoreRecents.framework",
+ "children": [
+ {
+ "value": 120,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreRecents.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 832,
+ "name": "CoreRecognition.framework",
+ "path": "PrivateFrameworks/CoreRecognition.framework",
+ "children": [
+ {
+ "value": 824,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreRecognition.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 104,
+ "name": "CoreSDB.framework",
+ "path": "PrivateFrameworks/CoreSDB.framework",
+ "children": [
+ {
+ "value": 96,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreSDB.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 280,
+ "name": "CoreServicesInternal.framework",
+ "path": "PrivateFrameworks/CoreServicesInternal.framework",
+ "children": [
+ {
+ "value": 272,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreServicesInternal.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 576,
+ "name": "CoreSymbolication.framework",
+ "path": "PrivateFrameworks/CoreSymbolication.framework",
+ "children": [
+ {
+ "value": 536,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreSymbolication.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 476,
+ "name": "CoreThemeDefinition.framework",
+ "path": "PrivateFrameworks/CoreThemeDefinition.framework",
+ "children": [
+ {
+ "value": 468,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreThemeDefinition.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 4976,
+ "name": "CoreUI.framework",
+ "path": "PrivateFrameworks/CoreUI.framework",
+ "children": [
+ {
+ "value": 4968,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreUI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 576,
+ "name": "CoreUtils.framework",
+ "path": "PrivateFrameworks/CoreUtils.framework",
+ "children": [
+ {
+ "value": 568,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreUtils.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 3476,
+ "name": "CoreWLANKit.framework",
+ "path": "PrivateFrameworks/CoreWLANKit.framework",
+ "children": [
+ {
+ "value": 3468,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CoreWLANKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 92,
+ "name": "CrashReporterSupport.framework",
+ "path": "PrivateFrameworks/CrashReporterSupport.framework",
+ "children": [
+ {
+ "value": 84,
+ "name": "Versions",
+ "path": "PrivateFrameworks/CrashReporterSupport.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 132,
+ "name": "DashboardClient.framework",
+ "path": "PrivateFrameworks/DashboardClient.framework",
+ "children": [
+ {
+ "value": 124,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DashboardClient.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1716,
+ "name": "DataDetectors.framework",
+ "path": "PrivateFrameworks/DataDetectors.framework",
+ "children": [
+ {
+ "value": 1708,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DataDetectors.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 4952,
+ "name": "DataDetectorsCore.framework",
+ "path": "PrivateFrameworks/DataDetectorsCore.framework",
+ "children": [
+ {
+ "value": 4940,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DataDetectorsCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 500,
+ "name": "DCERPC.framework",
+ "path": "PrivateFrameworks/DCERPC.framework",
+ "children": [
+ {
+ "value": 492,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DCERPC.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 232,
+ "name": "DebugSymbols.framework",
+ "path": "PrivateFrameworks/DebugSymbols.framework",
+ "children": [
+ {
+ "value": 224,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DebugSymbols.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1792,
+ "name": "DesktopServicesPriv.framework",
+ "path": "PrivateFrameworks/DesktopServicesPriv.framework",
+ "children": [
+ {
+ "value": 1780,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DesktopServicesPriv.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 128,
+ "name": "DeviceLink.framework",
+ "path": "PrivateFrameworks/DeviceLink.framework",
+ "children": [
+ {
+ "value": 120,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DeviceLink.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 464,
+ "name": "DeviceToDeviceKit.framework",
+ "path": "PrivateFrameworks/DeviceToDeviceKit.framework",
+ "children": [
+ {
+ "value": 456,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DeviceToDeviceKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "DeviceToDeviceManager.framework",
+ "path": "PrivateFrameworks/DeviceToDeviceManager.framework",
+ "children": [
+ {
+ "value": 28,
+ "name": "PlugIns",
+ "path": "PrivateFrameworks/DeviceToDeviceManager.framework/PlugIns"
+ },
+ {
+ "value": 16,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DeviceToDeviceManager.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "DiagnosticLogCollection.framework",
+ "path": "PrivateFrameworks/DiagnosticLogCollection.framework",
+ "children": [
+ {
+ "value": 20,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DiagnosticLogCollection.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "DigiHubPreference.framework",
+ "path": "PrivateFrameworks/DigiHubPreference.framework",
+ "children": [
+ {
+ "value": 48,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DigiHubPreference.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1344,
+ "name": "DirectoryEditor.framework",
+ "path": "PrivateFrameworks/DirectoryEditor.framework",
+ "children": [
+ {
+ "value": 1336,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DirectoryEditor.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 104,
+ "name": "DirectoryServer.framework",
+ "path": "PrivateFrameworks/DirectoryServer.framework",
+ "children": [
+ {
+ "value": 52,
+ "name": "Frameworks",
+ "path": "PrivateFrameworks/DirectoryServer.framework/Frameworks"
+ },
+ {
+ "value": 40,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DirectoryServer.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1596,
+ "name": "DiskImages.framework",
+ "path": "PrivateFrameworks/DiskImages.framework",
+ "children": [
+ {
+ "value": 1588,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DiskImages.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1168,
+ "name": "DiskManagement.framework",
+ "path": "PrivateFrameworks/DiskManagement.framework",
+ "children": [
+ {
+ "value": 1160,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DiskManagement.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 80,
+ "name": "DisplayServices.framework",
+ "path": "PrivateFrameworks/DisplayServices.framework",
+ "children": [
+ {
+ "value": 72,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DisplayServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "DMNotification.framework",
+ "path": "PrivateFrameworks/DMNotification.framework",
+ "children": [
+ {
+ "value": 24,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DMNotification.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "DVD.framework",
+ "path": "PrivateFrameworks/DVD.framework",
+ "children": [
+ {
+ "value": 16,
+ "name": "Versions",
+ "path": "PrivateFrameworks/DVD.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 272,
+ "name": "EAP8021X.framework",
+ "path": "PrivateFrameworks/EAP8021X.framework",
+ "children": [
+ {
+ "value": 20,
+ "name": "Support",
+ "path": "PrivateFrameworks/EAP8021X.framework/Support"
+ },
+ {
+ "value": 244,
+ "name": "Versions",
+ "path": "PrivateFrameworks/EAP8021X.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "EasyConfig.framework",
+ "path": "PrivateFrameworks/EasyConfig.framework",
+ "children": [
+ {
+ "value": 48,
+ "name": "Versions",
+ "path": "PrivateFrameworks/EasyConfig.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 872,
+ "name": "EFILogin.framework",
+ "path": "PrivateFrameworks/EFILogin.framework",
+ "children": [
+ {
+ "value": 864,
+ "name": "Versions",
+ "path": "PrivateFrameworks/EFILogin.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "EmailAddressing.framework",
+ "path": "PrivateFrameworks/EmailAddressing.framework",
+ "children": [
+ {
+ "value": 24,
+ "name": "Versions",
+ "path": "PrivateFrameworks/EmailAddressing.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 444,
+ "name": "ExchangeWebServices.framework",
+ "path": "PrivateFrameworks/ExchangeWebServices.framework",
+ "children": [
+ {
+ "value": 436,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ExchangeWebServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 23556,
+ "name": "FaceCore.framework",
+ "path": "PrivateFrameworks/FaceCore.framework",
+ "children": [
+ {
+ "value": 23548,
+ "name": "Versions",
+ "path": "PrivateFrameworks/FaceCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "FaceCoreLight.framework",
+ "path": "PrivateFrameworks/FaceCoreLight.framework",
+ "children": [
+ {
+ "value": 8,
+ "name": "Versions",
+ "path": "PrivateFrameworks/FaceCoreLight.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2836,
+ "name": "FamilyControls.framework",
+ "path": "PrivateFrameworks/FamilyControls.framework",
+ "children": [
+ {
+ "value": 2828,
+ "name": "Versions",
+ "path": "PrivateFrameworks/FamilyControls.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 104,
+ "name": "FileSync.framework",
+ "path": "PrivateFrameworks/FileSync.framework",
+ "children": [
+ {
+ "value": 96,
+ "name": "Versions",
+ "path": "PrivateFrameworks/FileSync.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 12048,
+ "name": "FinderKit.framework",
+ "path": "PrivateFrameworks/FinderKit.framework",
+ "children": [
+ {
+ "value": 12040,
+ "name": "Versions",
+ "path": "PrivateFrameworks/FinderKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1068,
+ "name": "FindMyMac.framework",
+ "path": "PrivateFrameworks/FindMyMac.framework",
+ "children": [
+ {
+ "value": 1044,
+ "name": "Versions",
+ "path": "PrivateFrameworks/FindMyMac.framework/Versions"
+ },
+ {
+ "value": 16,
+ "name": "XPCServices",
+ "path": "PrivateFrameworks/FindMyMac.framework/XPCServices"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "FTClientServices.framework",
+ "path": "PrivateFrameworks/FTClientServices.framework",
+ "children": [
+ {
+ "value": 24,
+ "name": "Versions",
+ "path": "PrivateFrameworks/FTClientServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 156,
+ "name": "FTServices.framework",
+ "path": "PrivateFrameworks/FTServices.framework",
+ "children": [
+ {
+ "value": 148,
+ "name": "Versions",
+ "path": "PrivateFrameworks/FTServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 216,
+ "name": "FWAVC.framework",
+ "path": "PrivateFrameworks/FWAVC.framework",
+ "children": [
+ {
+ "value": 208,
+ "name": "Versions",
+ "path": "PrivateFrameworks/FWAVC.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 116,
+ "name": "FWAVCPrivate.framework",
+ "path": "PrivateFrameworks/FWAVCPrivate.framework",
+ "children": [
+ {
+ "value": 108,
+ "name": "Versions",
+ "path": "PrivateFrameworks/FWAVCPrivate.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 624,
+ "name": "GameKitServices.framework",
+ "path": "PrivateFrameworks/GameKitServices.framework",
+ "children": [
+ {
+ "value": 616,
+ "name": "Versions",
+ "path": "PrivateFrameworks/GameKitServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 312,
+ "name": "GenerationalStorage.framework",
+ "path": "PrivateFrameworks/GenerationalStorage.framework",
+ "children": [
+ {
+ "value": 300,
+ "name": "Versions",
+ "path": "PrivateFrameworks/GenerationalStorage.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 14920,
+ "name": "GeoKit.framework",
+ "path": "PrivateFrameworks/GeoKit.framework",
+ "children": [
+ {
+ "value": 14912,
+ "name": "Versions",
+ "path": "PrivateFrameworks/GeoKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 27272,
+ "name": "GeoServices.framework",
+ "path": "PrivateFrameworks/GeoServices.framework",
+ "children": [
+ {
+ "value": 2104,
+ "name": "Versions",
+ "path": "PrivateFrameworks/GeoServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 152,
+ "name": "GPUSupport.framework",
+ "path": "PrivateFrameworks/GPUSupport.framework",
+ "children": [
+ {
+ "value": 144,
+ "name": "Versions",
+ "path": "PrivateFrameworks/GPUSupport.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "GraphicsAppSupport.framework",
+ "path": "PrivateFrameworks/GraphicsAppSupport.framework",
+ "children": [
+ {
+ "value": 16,
+ "name": "Versions",
+ "path": "PrivateFrameworks/GraphicsAppSupport.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 336,
+ "name": "GraphKit.framework",
+ "path": "PrivateFrameworks/GraphKit.framework",
+ "children": [
+ {
+ "value": 328,
+ "name": "Versions",
+ "path": "PrivateFrameworks/GraphKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "HDAInterface.framework",
+ "path": "PrivateFrameworks/HDAInterface.framework",
+ "children": [
+ {
+ "value": 48,
+ "name": "Versions",
+ "path": "PrivateFrameworks/HDAInterface.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1044,
+ "name": "Heimdal.framework",
+ "path": "PrivateFrameworks/Heimdal.framework",
+ "children": [
+ {
+ "value": 508,
+ "name": "Helpers",
+ "path": "PrivateFrameworks/Heimdal.framework/Helpers"
+ },
+ {
+ "value": 528,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Heimdal.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "HeimODAdmin.framework",
+ "path": "PrivateFrameworks/HeimODAdmin.framework",
+ "children": [
+ {
+ "value": 48,
+ "name": "Versions",
+ "path": "PrivateFrameworks/HeimODAdmin.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 232,
+ "name": "HelpData.framework",
+ "path": "PrivateFrameworks/HelpData.framework",
+ "children": [
+ {
+ "value": 224,
+ "name": "Versions",
+ "path": "PrivateFrameworks/HelpData.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 104,
+ "name": "IASUtilities.framework",
+ "path": "PrivateFrameworks/IASUtilities.framework",
+ "children": [
+ {
+ "value": 92,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IASUtilities.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 224,
+ "name": "iCalendar.framework",
+ "path": "PrivateFrameworks/iCalendar.framework",
+ "children": [
+ {
+ "value": 216,
+ "name": "Versions",
+ "path": "PrivateFrameworks/iCalendar.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 116,
+ "name": "ICANotifications.framework",
+ "path": "PrivateFrameworks/ICANotifications.framework",
+ "children": [
+ {
+ "value": 108,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ICANotifications.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 308,
+ "name": "IconServices.framework",
+ "path": "PrivateFrameworks/IconServices.framework",
+ "children": [
+ {
+ "value": 296,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IconServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 256,
+ "name": "IDS.framework",
+ "path": "PrivateFrameworks/IDS.framework",
+ "children": [
+ {
+ "value": 248,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IDS.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 4572,
+ "name": "IDSCore.framework",
+ "path": "PrivateFrameworks/IDSCore.framework",
+ "children": [
+ {
+ "value": 1300,
+ "name": "identityservicesd.app",
+ "path": "PrivateFrameworks/IDSCore.framework/identityservicesd.app"
+ },
+ {
+ "value": 3264,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IDSCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 116,
+ "name": "IDSFoundation.framework",
+ "path": "PrivateFrameworks/IDSFoundation.framework",
+ "children": [
+ {
+ "value": 108,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IDSFoundation.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "IDSSystemPreferencesSignIn.framework",
+ "path": "PrivateFrameworks/IDSSystemPreferencesSignIn.framework",
+ "children": [
+ {
+ "value": 16,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IDSSystemPreferencesSignIn.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 16772,
+ "name": "iLifeMediaBrowser.framework",
+ "path": "PrivateFrameworks/iLifeMediaBrowser.framework",
+ "children": [
+ {
+ "value": 16764,
+ "name": "Versions",
+ "path": "PrivateFrameworks/iLifeMediaBrowser.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 252,
+ "name": "IMAP.framework",
+ "path": "PrivateFrameworks/IMAP.framework",
+ "children": [
+ {
+ "value": 244,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IMAP.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 396,
+ "name": "IMAVCore.framework",
+ "path": "PrivateFrameworks/IMAVCore.framework",
+ "children": [
+ {
+ "value": 388,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IMAVCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 856,
+ "name": "IMCore.framework",
+ "path": "PrivateFrameworks/IMCore.framework",
+ "children": [
+ {
+ "value": 148,
+ "name": "imagent.app",
+ "path": "PrivateFrameworks/IMCore.framework/imagent.app"
+ },
+ {
+ "value": 700,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IMCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 364,
+ "name": "IMDaemonCore.framework",
+ "path": "PrivateFrameworks/IMDaemonCore.framework",
+ "children": [
+ {
+ "value": 356,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IMDaemonCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 68,
+ "name": "IMDMessageServices.framework",
+ "path": "PrivateFrameworks/IMDMessageServices.framework",
+ "children": [
+ {
+ "value": 16,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IMDMessageServices.framework/Versions"
+ },
+ {
+ "value": 44,
+ "name": "XPCServices",
+ "path": "PrivateFrameworks/IMDMessageServices.framework/XPCServices"
+ }
+ ]
+ },
+ {
+ "value": 316,
+ "name": "IMDPersistence.framework",
+ "path": "PrivateFrameworks/IMDPersistence.framework",
+ "children": [
+ {
+ "value": 240,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IMDPersistence.framework/Versions"
+ },
+ {
+ "value": 68,
+ "name": "XPCServices",
+ "path": "PrivateFrameworks/IMDPersistence.framework/XPCServices"
+ }
+ ]
+ },
+ {
+ "value": 596,
+ "name": "IMFoundation.framework",
+ "path": "PrivateFrameworks/IMFoundation.framework",
+ "children": [
+ {
+ "value": 484,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IMFoundation.framework/Versions"
+ },
+ {
+ "value": 24,
+ "name": "XPCServices",
+ "path": "PrivateFrameworks/IMFoundation.framework/XPCServices"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "IMTranscoding.framework",
+ "path": "PrivateFrameworks/IMTranscoding.framework",
+ "children": [
+ {
+ "value": 20,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IMTranscoding.framework/Versions"
+ },
+ {
+ "value": 60,
+ "name": "XPCServices",
+ "path": "PrivateFrameworks/IMTranscoding.framework/XPCServices"
+ }
+ ]
+ },
+ {
+ "value": 92,
+ "name": "IMTransferServices.framework",
+ "path": "PrivateFrameworks/IMTransferServices.framework",
+ "children": [
+ {
+ "value": 28,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IMTransferServices.framework/Versions"
+ },
+ {
+ "value": 56,
+ "name": "XPCServices",
+ "path": "PrivateFrameworks/IMTransferServices.framework/XPCServices"
+ }
+ ]
+ },
+ {
+ "value": 48,
+ "name": "IncomingCallFilter.framework",
+ "path": "PrivateFrameworks/IncomingCallFilter.framework",
+ "children": [
+ {
+ "value": 40,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IncomingCallFilter.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1668,
+ "name": "Install.framework",
+ "path": "PrivateFrameworks/Install.framework",
+ "children": [
+ {
+ "value": 644,
+ "name": "Frameworks",
+ "path": "PrivateFrameworks/Install.framework/Frameworks"
+ },
+ {
+ "value": 1016,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Install.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "International.framework",
+ "path": "PrivateFrameworks/International.framework",
+ "children": [
+ {
+ "value": 16,
+ "name": "Versions",
+ "path": "PrivateFrameworks/International.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2052,
+ "name": "InternetAccounts.framework",
+ "path": "PrivateFrameworks/InternetAccounts.framework",
+ "children": [
+ {
+ "value": 2040,
+ "name": "Versions",
+ "path": "PrivateFrameworks/InternetAccounts.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 216,
+ "name": "IntlPreferences.framework",
+ "path": "PrivateFrameworks/IntlPreferences.framework",
+ "children": [
+ {
+ "value": 208,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IntlPreferences.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "IOAccelerator.framework",
+ "path": "PrivateFrameworks/IOAccelerator.framework",
+ "children": [
+ {
+ "value": 44,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IOAccelerator.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 68,
+ "name": "IOAccelMemoryInfo.framework",
+ "path": "PrivateFrameworks/IOAccelMemoryInfo.framework",
+ "children": [
+ {
+ "value": 60,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IOAccelMemoryInfo.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "IOPlatformPluginFamily.framework",
+ "path": "PrivateFrameworks/IOPlatformPluginFamily.framework",
+ "children": [
+ {
+ "value": 12,
+ "name": "Versions",
+ "path": "PrivateFrameworks/IOPlatformPluginFamily.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "iPod.framework",
+ "path": "PrivateFrameworks/iPod.framework",
+ "children": [
+ {
+ "value": 36,
+ "name": "Versions",
+ "path": "PrivateFrameworks/iPod.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 160,
+ "name": "iPodSync.framework",
+ "path": "PrivateFrameworks/iPodSync.framework",
+ "children": [
+ {
+ "value": 152,
+ "name": "Versions",
+ "path": "PrivateFrameworks/iPodSync.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 516,
+ "name": "ISSupport.framework",
+ "path": "PrivateFrameworks/ISSupport.framework",
+ "children": [
+ {
+ "value": 508,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ISSupport.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 644,
+ "name": "iTunesAccess.framework",
+ "path": "PrivateFrameworks/iTunesAccess.framework",
+ "children": [
+ {
+ "value": 636,
+ "name": "Versions",
+ "path": "PrivateFrameworks/iTunesAccess.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 92,
+ "name": "JavaApplicationLauncher.framework",
+ "path": "PrivateFrameworks/JavaApplicationLauncher.framework",
+ "children": [
+ {
+ "value": 84,
+ "name": "Versions",
+ "path": "PrivateFrameworks/JavaApplicationLauncher.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 48,
+ "name": "JavaLaunching.framework",
+ "path": "PrivateFrameworks/JavaLaunching.framework",
+ "children": [
+ {
+ "value": 40,
+ "name": "Versions",
+ "path": "PrivateFrameworks/JavaLaunching.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "KerberosHelper",
+ "path": "PrivateFrameworks/KerberosHelper",
+ "children": [
+ {
+ "value": 8,
+ "name": "Helpers",
+ "path": "PrivateFrameworks/KerberosHelper/Helpers"
+ }
+ ]
+ },
+ {
+ "value": 132,
+ "name": "KerberosHelper.framework",
+ "path": "PrivateFrameworks/KerberosHelper.framework",
+ "children": [
+ {
+ "value": 40,
+ "name": "Helpers",
+ "path": "PrivateFrameworks/KerberosHelper.framework/Helpers"
+ },
+ {
+ "value": 84,
+ "name": "Versions",
+ "path": "PrivateFrameworks/KerberosHelper.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "kperf.framework",
+ "path": "PrivateFrameworks/kperf.framework",
+ "children": [
+ {
+ "value": 36,
+ "name": "Versions",
+ "path": "PrivateFrameworks/kperf.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 100,
+ "name": "Librarian.framework",
+ "path": "PrivateFrameworks/Librarian.framework",
+ "children": [
+ {
+ "value": 92,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Librarian.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "LibraryRepair.framework",
+ "path": "PrivateFrameworks/LibraryRepair.framework",
+ "children": [
+ {
+ "value": 44,
+ "name": "Versions",
+ "path": "PrivateFrameworks/LibraryRepair.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 144,
+ "name": "login.framework",
+ "path": "PrivateFrameworks/login.framework",
+ "children": [
+ {
+ "value": 132,
+ "name": "Versions",
+ "path": "PrivateFrameworks/login.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 4060,
+ "name": "LoginUIKit.framework",
+ "path": "PrivateFrameworks/LoginUIKit.framework",
+ "children": [
+ {
+ "value": 4048,
+ "name": "Versions",
+ "path": "PrivateFrameworks/LoginUIKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 576,
+ "name": "Lookup.framework",
+ "path": "PrivateFrameworks/Lookup.framework",
+ "children": [
+ {
+ "value": 568,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Lookup.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "MachineSettings.framework",
+ "path": "PrivateFrameworks/MachineSettings.framework",
+ "children": [
+ {
+ "value": 24,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MachineSettings.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2812,
+ "name": "Mail.framework",
+ "path": "PrivateFrameworks/Mail.framework",
+ "children": [
+ {
+ "value": 2800,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Mail.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1856,
+ "name": "MailCore.framework",
+ "path": "PrivateFrameworks/MailCore.framework",
+ "children": [
+ {
+ "value": 1848,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MailCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 68,
+ "name": "MailService.framework",
+ "path": "PrivateFrameworks/MailService.framework",
+ "children": [
+ {
+ "value": 56,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MailService.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 292,
+ "name": "MailUI.framework",
+ "path": "PrivateFrameworks/MailUI.framework",
+ "children": [
+ {
+ "value": 280,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MailUI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 80,
+ "name": "ManagedClient.framework",
+ "path": "PrivateFrameworks/ManagedClient.framework",
+ "children": [
+ {
+ "value": 72,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ManagedClient.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "Mangrove.framework",
+ "path": "PrivateFrameworks/Mangrove.framework",
+ "children": [
+ {
+ "value": 32,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Mangrove.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "Marco.framework",
+ "path": "PrivateFrameworks/Marco.framework",
+ "children": [
+ {
+ "value": 20,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Marco.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "MDSChannel.framework",
+ "path": "PrivateFrameworks/MDSChannel.framework",
+ "children": [
+ {
+ "value": 44,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MDSChannel.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1488,
+ "name": "MediaControlSender.framework",
+ "path": "PrivateFrameworks/MediaControlSender.framework",
+ "children": [
+ {
+ "value": 1480,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MediaControlSender.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 480,
+ "name": "MediaKit.framework",
+ "path": "PrivateFrameworks/MediaKit.framework",
+ "children": [
+ {
+ "value": 468,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MediaKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 288,
+ "name": "MediaUI.framework",
+ "path": "PrivateFrameworks/MediaUI.framework",
+ "children": [
+ {
+ "value": 280,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MediaUI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "MessageProtection.framework",
+ "path": "PrivateFrameworks/MessageProtection.framework",
+ "children": [
+ {
+ "value": 48,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MessageProtection.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 680,
+ "name": "MessagesHelperKit.framework",
+ "path": "PrivateFrameworks/MessagesHelperKit.framework",
+ "children": [
+ {
+ "value": 640,
+ "name": "PlugIns",
+ "path": "PrivateFrameworks/MessagesHelperKit.framework/PlugIns"
+ },
+ {
+ "value": 32,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MessagesHelperKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 160,
+ "name": "MessagesKit.framework",
+ "path": "PrivateFrameworks/MessagesKit.framework",
+ "children": [
+ {
+ "value": 112,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MessagesKit.framework/Versions"
+ },
+ {
+ "value": 40,
+ "name": "XPCServices",
+ "path": "PrivateFrameworks/MessagesKit.framework/XPCServices"
+ }
+ ]
+ },
+ {
+ "value": 372,
+ "name": "MMCS.framework",
+ "path": "PrivateFrameworks/MMCS.framework",
+ "children": [
+ {
+ "value": 364,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MMCS.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "MMCSServices.framework",
+ "path": "PrivateFrameworks/MMCSServices.framework",
+ "children": [
+ {
+ "value": 48,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MMCSServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1932,
+ "name": "MobileDevice.framework",
+ "path": "PrivateFrameworks/MobileDevice.framework",
+ "children": [
+ {
+ "value": 1924,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MobileDevice.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 80,
+ "name": "MonitorPanel.framework",
+ "path": "PrivateFrameworks/MonitorPanel.framework",
+ "children": [
+ {
+ "value": 72,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MonitorPanel.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 132,
+ "name": "MultitouchSupport.framework",
+ "path": "PrivateFrameworks/MultitouchSupport.framework",
+ "children": [
+ {
+ "value": 124,
+ "name": "Versions",
+ "path": "PrivateFrameworks/MultitouchSupport.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 76,
+ "name": "NetAuth.framework",
+ "path": "PrivateFrameworks/NetAuth.framework",
+ "children": [
+ {
+ "value": 68,
+ "name": "Versions",
+ "path": "PrivateFrameworks/NetAuth.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "NetFSServer.framework",
+ "path": "PrivateFrameworks/NetFSServer.framework",
+ "children": [
+ {
+ "value": 44,
+ "name": "Versions",
+ "path": "PrivateFrameworks/NetFSServer.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "NetworkDiagnosticsUI.framework",
+ "path": "PrivateFrameworks/NetworkDiagnosticsUI.framework",
+ "children": [
+ {
+ "value": 48,
+ "name": "Versions",
+ "path": "PrivateFrameworks/NetworkDiagnosticsUI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 84,
+ "name": "NetworkMenusCommon.framework",
+ "path": "PrivateFrameworks/NetworkMenusCommon.framework",
+ "children": [
+ {
+ "value": 0,
+ "name": "_CodeSignature",
+ "path": "PrivateFrameworks/NetworkMenusCommon.framework/_CodeSignature"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "NetworkStatistics.framework",
+ "path": "PrivateFrameworks/NetworkStatistics.framework",
+ "children": [
+ {
+ "value": 24,
+ "name": "Versions",
+ "path": "PrivateFrameworks/NetworkStatistics.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 416,
+ "name": "Notes.framework",
+ "path": "PrivateFrameworks/Notes.framework",
+ "children": [
+ {
+ "value": 400,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Notes.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 84,
+ "name": "nt.framework",
+ "path": "PrivateFrameworks/nt.framework",
+ "children": [
+ {
+ "value": 76,
+ "name": "Versions",
+ "path": "PrivateFrameworks/nt.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "OAuth.framework",
+ "path": "PrivateFrameworks/OAuth.framework",
+ "children": [
+ {
+ "value": 16,
+ "name": "Versions",
+ "path": "PrivateFrameworks/OAuth.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 6676,
+ "name": "OfficeImport.framework",
+ "path": "PrivateFrameworks/OfficeImport.framework",
+ "children": [
+ {
+ "value": 6668,
+ "name": "Versions",
+ "path": "PrivateFrameworks/OfficeImport.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 160,
+ "name": "oncrpc.framework",
+ "path": "PrivateFrameworks/oncrpc.framework",
+ "children": [
+ {
+ "value": 36,
+ "name": "bin",
+ "path": "PrivateFrameworks/oncrpc.framework/bin"
+ },
+ {
+ "value": 116,
+ "name": "Versions",
+ "path": "PrivateFrameworks/oncrpc.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 140,
+ "name": "OpenDirectoryConfig.framework",
+ "path": "PrivateFrameworks/OpenDirectoryConfig.framework",
+ "children": [
+ {
+ "value": 132,
+ "name": "Versions",
+ "path": "PrivateFrameworks/OpenDirectoryConfig.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1292,
+ "name": "OpenDirectoryConfigUI.framework",
+ "path": "PrivateFrameworks/OpenDirectoryConfigUI.framework",
+ "children": [
+ {
+ "value": 1284,
+ "name": "Versions",
+ "path": "PrivateFrameworks/OpenDirectoryConfigUI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1140,
+ "name": "PackageKit.framework",
+ "path": "PrivateFrameworks/PackageKit.framework",
+ "children": [
+ {
+ "value": 272,
+ "name": "Frameworks",
+ "path": "PrivateFrameworks/PackageKit.framework/Frameworks"
+ },
+ {
+ "value": 860,
+ "name": "Versions",
+ "path": "PrivateFrameworks/PackageKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "PacketFilter.framework",
+ "path": "PrivateFrameworks/PacketFilter.framework",
+ "children": [
+ {
+ "value": 56,
+ "name": "Versions",
+ "path": "PrivateFrameworks/PacketFilter.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 3312,
+ "name": "PassKit.framework",
+ "path": "PrivateFrameworks/PassKit.framework",
+ "children": [
+ {
+ "value": 3300,
+ "name": "Versions",
+ "path": "PrivateFrameworks/PassKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 216,
+ "name": "PasswordServer.framework",
+ "path": "PrivateFrameworks/PasswordServer.framework",
+ "children": [
+ {
+ "value": 208,
+ "name": "Versions",
+ "path": "PrivateFrameworks/PasswordServer.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 400,
+ "name": "PerformanceAnalysis.framework",
+ "path": "PrivateFrameworks/PerformanceAnalysis.framework",
+ "children": [
+ {
+ "value": 360,
+ "name": "Versions",
+ "path": "PrivateFrameworks/PerformanceAnalysis.framework/Versions"
+ },
+ {
+ "value": 32,
+ "name": "XPCServices",
+ "path": "PrivateFrameworks/PerformanceAnalysis.framework/XPCServices"
+ }
+ ]
+ },
+ {
+ "value": 80,
+ "name": "PhoneNumbers.framework",
+ "path": "PrivateFrameworks/PhoneNumbers.framework",
+ "children": [
+ {
+ "value": 72,
+ "name": "Versions",
+ "path": "PrivateFrameworks/PhoneNumbers.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 152,
+ "name": "PhysicsKit.framework",
+ "path": "PrivateFrameworks/PhysicsKit.framework",
+ "children": [
+ {
+ "value": 144,
+ "name": "Versions",
+ "path": "PrivateFrameworks/PhysicsKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 112,
+ "name": "PlatformHardwareManagement.framework",
+ "path": "PrivateFrameworks/PlatformHardwareManagement.framework",
+ "children": [
+ {
+ "value": 104,
+ "name": "Versions",
+ "path": "PrivateFrameworks/PlatformHardwareManagement.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 76,
+ "name": "PodcastProducerCore.framework",
+ "path": "PrivateFrameworks/PodcastProducerCore.framework",
+ "children": [
+ {
+ "value": 68,
+ "name": "Versions",
+ "path": "PrivateFrameworks/PodcastProducerCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 612,
+ "name": "PodcastProducerKit.framework",
+ "path": "PrivateFrameworks/PodcastProducerKit.framework",
+ "children": [
+ {
+ "value": 604,
+ "name": "Versions",
+ "path": "PrivateFrameworks/PodcastProducerKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 956,
+ "name": "PreferencePanesSupport.framework",
+ "path": "PrivateFrameworks/PreferencePanesSupport.framework",
+ "children": [
+ {
+ "value": 948,
+ "name": "Versions",
+ "path": "PrivateFrameworks/PreferencePanesSupport.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 9580,
+ "name": "PrintingPrivate.framework",
+ "path": "PrivateFrameworks/PrintingPrivate.framework",
+ "children": [
+ {
+ "value": 9572,
+ "name": "Versions",
+ "path": "PrivateFrameworks/PrintingPrivate.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 104432,
+ "name": "ProKit.framework",
+ "path": "PrivateFrameworks/ProKit.framework",
+ "children": [
+ {
+ "value": 104424,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ProKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 9784,
+ "name": "ProofReader.framework",
+ "path": "PrivateFrameworks/ProofReader.framework",
+ "children": [
+ {
+ "value": 9776,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ProofReader.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 76,
+ "name": "ProtocolBuffer.framework",
+ "path": "PrivateFrameworks/ProtocolBuffer.framework",
+ "children": [
+ {
+ "value": 68,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ProtocolBuffer.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 7628,
+ "name": "PSNormalizer.framework",
+ "path": "PrivateFrameworks/PSNormalizer.framework",
+ "children": [
+ {
+ "value": 7616,
+ "name": "Versions",
+ "path": "PrivateFrameworks/PSNormalizer.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 96,
+ "name": "RemotePacketCapture.framework",
+ "path": "PrivateFrameworks/RemotePacketCapture.framework",
+ "children": [
+ {
+ "value": 88,
+ "name": "Versions",
+ "path": "PrivateFrameworks/RemotePacketCapture.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 388,
+ "name": "RemoteViewServices.framework",
+ "path": "PrivateFrameworks/RemoteViewServices.framework",
+ "children": [
+ {
+ "value": 304,
+ "name": "Versions",
+ "path": "PrivateFrameworks/RemoteViewServices.framework/Versions"
+ },
+ {
+ "value": 76,
+ "name": "XPCServices",
+ "path": "PrivateFrameworks/RemoteViewServices.framework/XPCServices"
+ }
+ ]
+ },
+ {
+ "value": 420,
+ "name": "Restore.framework",
+ "path": "PrivateFrameworks/Restore.framework",
+ "children": [
+ {
+ "value": 412,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Restore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "RTCReporting.framework",
+ "path": "PrivateFrameworks/RTCReporting.framework",
+ "children": [
+ {
+ "value": 48,
+ "name": "Versions",
+ "path": "PrivateFrameworks/RTCReporting.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 6168,
+ "name": "Safari.framework",
+ "path": "PrivateFrameworks/Safari.framework",
+ "children": [
+ {
+ "value": 6156,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Safari.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 40,
+ "name": "SafariServices.framework",
+ "path": "PrivateFrameworks/SafariServices.framework",
+ "children": [
+ {
+ "value": 28,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SafariServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 432,
+ "name": "SAObjects.framework",
+ "path": "PrivateFrameworks/SAObjects.framework",
+ "children": [
+ {
+ "value": 424,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SAObjects.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 84,
+ "name": "SCEP.framework",
+ "path": "PrivateFrameworks/SCEP.framework",
+ "children": [
+ {
+ "value": 76,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SCEP.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 24256,
+ "name": "ScreenReader.framework",
+ "path": "PrivateFrameworks/ScreenReader.framework",
+ "children": [
+ {
+ "value": 24244,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ScreenReader.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 528,
+ "name": "ScreenSharing.framework",
+ "path": "PrivateFrameworks/ScreenSharing.framework",
+ "children": [
+ {
+ "value": 520,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ScreenSharing.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 36,
+ "name": "SecCodeWrapper.framework",
+ "path": "PrivateFrameworks/SecCodeWrapper.framework",
+ "children": [
+ {
+ "value": 28,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SecCodeWrapper.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 36,
+ "name": "SecureNetworking.framework",
+ "path": "PrivateFrameworks/SecureNetworking.framework",
+ "children": [
+ {
+ "value": 28,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SecureNetworking.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "SecurityTokend.framework",
+ "path": "PrivateFrameworks/SecurityTokend.framework",
+ "children": [
+ {
+ "value": 52,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SecurityTokend.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 280,
+ "name": "SemanticDocumentManagement.framework",
+ "path": "PrivateFrameworks/SemanticDocumentManagement.framework",
+ "children": [
+ {
+ "value": 272,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SemanticDocumentManagement.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 720,
+ "name": "ServerFoundation.framework",
+ "path": "PrivateFrameworks/ServerFoundation.framework",
+ "children": [
+ {
+ "value": 712,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ServerFoundation.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 320,
+ "name": "ServerInformation.framework",
+ "path": "PrivateFrameworks/ServerInformation.framework",
+ "children": [
+ {
+ "value": 312,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ServerInformation.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 176,
+ "name": "SetupAssistantSupport.framework",
+ "path": "PrivateFrameworks/SetupAssistantSupport.framework",
+ "children": [
+ {
+ "value": 168,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SetupAssistantSupport.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 5512,
+ "name": "ShareKit.framework",
+ "path": "PrivateFrameworks/ShareKit.framework",
+ "children": [
+ {
+ "value": 5496,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ShareKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 100,
+ "name": "Sharing.framework",
+ "path": "PrivateFrameworks/Sharing.framework",
+ "children": [
+ {
+ "value": 92,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Sharing.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 616,
+ "name": "Shortcut.framework",
+ "path": "PrivateFrameworks/Shortcut.framework",
+ "children": [
+ {
+ "value": 608,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Shortcut.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "SleepServices.framework",
+ "path": "PrivateFrameworks/SleepServices.framework",
+ "children": [
+ {
+ "value": 12,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SleepServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 62320,
+ "name": "Slideshows.framework",
+ "path": "PrivateFrameworks/Slideshows.framework",
+ "children": [
+ {
+ "value": 62312,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Slideshows.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 144,
+ "name": "SMBClient.framework",
+ "path": "PrivateFrameworks/SMBClient.framework",
+ "children": [
+ {
+ "value": 136,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SMBClient.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 112,
+ "name": "SocialAppsCore.framework",
+ "path": "PrivateFrameworks/SocialAppsCore.framework",
+ "children": [
+ {
+ "value": 104,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SocialAppsCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 936,
+ "name": "SocialUI.framework",
+ "path": "PrivateFrameworks/SocialUI.framework",
+ "children": [
+ {
+ "value": 924,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SocialUI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 444,
+ "name": "SoftwareUpdate.framework",
+ "path": "PrivateFrameworks/SoftwareUpdate.framework",
+ "children": [
+ {
+ "value": 436,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SoftwareUpdate.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2112,
+ "name": "SpeechDictionary.framework",
+ "path": "PrivateFrameworks/SpeechDictionary.framework",
+ "children": [
+ {
+ "value": 2104,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SpeechDictionary.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 8492,
+ "name": "SpeechObjects.framework",
+ "path": "PrivateFrameworks/SpeechObjects.framework",
+ "children": [
+ {
+ "value": 8484,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SpeechObjects.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 4248,
+ "name": "SpeechRecognitionCore.framework",
+ "path": "PrivateFrameworks/SpeechRecognitionCore.framework",
+ "children": [
+ {
+ "value": 4236,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SpeechRecognitionCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2212,
+ "name": "SpotlightIndex.framework",
+ "path": "PrivateFrameworks/SpotlightIndex.framework",
+ "children": [
+ {
+ "value": 2204,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SpotlightIndex.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 48,
+ "name": "SPSupport.framework",
+ "path": "PrivateFrameworks/SPSupport.framework",
+ "children": [
+ {
+ "value": 40,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SPSupport.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 184,
+ "name": "StoreJavaScript.framework",
+ "path": "PrivateFrameworks/StoreJavaScript.framework",
+ "children": [
+ {
+ "value": 176,
+ "name": "Versions",
+ "path": "PrivateFrameworks/StoreJavaScript.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 844,
+ "name": "StoreUI.framework",
+ "path": "PrivateFrameworks/StoreUI.framework",
+ "children": [
+ {
+ "value": 836,
+ "name": "Versions",
+ "path": "PrivateFrameworks/StoreUI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "StoreXPCServices.framework",
+ "path": "PrivateFrameworks/StoreXPCServices.framework",
+ "children": [
+ {
+ "value": 20,
+ "name": "Versions",
+ "path": "PrivateFrameworks/StoreXPCServices.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "StreamingZip.framework",
+ "path": "PrivateFrameworks/StreamingZip.framework",
+ "children": [
+ {
+ "value": 60,
+ "name": "Versions",
+ "path": "PrivateFrameworks/StreamingZip.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 456,
+ "name": "Suggestions.framework",
+ "path": "PrivateFrameworks/Suggestions.framework",
+ "children": [
+ {
+ "value": 448,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Suggestions.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 504,
+ "name": "Symbolication.framework",
+ "path": "PrivateFrameworks/Symbolication.framework",
+ "children": [
+ {
+ "value": 496,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Symbolication.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 320,
+ "name": "Symptoms.framework",
+ "path": "PrivateFrameworks/Symptoms.framework",
+ "children": [
+ {
+ "value": 312,
+ "name": "Frameworks",
+ "path": "PrivateFrameworks/Symptoms.framework/Frameworks"
+ },
+ {
+ "value": 4,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Symptoms.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 280,
+ "name": "SyncedDefaults.framework",
+ "path": "PrivateFrameworks/SyncedDefaults.framework",
+ "children": [
+ {
+ "value": 216,
+ "name": "Support",
+ "path": "PrivateFrameworks/SyncedDefaults.framework/Support"
+ },
+ {
+ "value": 56,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SyncedDefaults.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 5272,
+ "name": "SyncServicesUI.framework",
+ "path": "PrivateFrameworks/SyncServicesUI.framework",
+ "children": [
+ {
+ "value": 5264,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SyncServicesUI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 932,
+ "name": "SystemAdministration.framework",
+ "path": "PrivateFrameworks/SystemAdministration.framework",
+ "children": [
+ {
+ "value": 864,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SystemAdministration.framework/Versions"
+ },
+ {
+ "value": 60,
+ "name": "XPCServices",
+ "path": "PrivateFrameworks/SystemAdministration.framework/XPCServices"
+ }
+ ]
+ },
+ {
+ "value": 5656,
+ "name": "SystemMigration.framework",
+ "path": "PrivateFrameworks/SystemMigration.framework",
+ "children": [
+ {
+ "value": 508,
+ "name": "Frameworks",
+ "path": "PrivateFrameworks/SystemMigration.framework/Frameworks"
+ },
+ {
+ "value": 5140,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SystemMigration.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "SystemUIPlugin.framework",
+ "path": "PrivateFrameworks/SystemUIPlugin.framework",
+ "children": [
+ {
+ "value": 44,
+ "name": "Versions",
+ "path": "PrivateFrameworks/SystemUIPlugin.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 144,
+ "name": "TCC.framework",
+ "path": "PrivateFrameworks/TCC.framework",
+ "children": [
+ {
+ "value": 136,
+ "name": "Versions",
+ "path": "PrivateFrameworks/TCC.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 48,
+ "name": "TrustEvaluationAgent.framework",
+ "path": "PrivateFrameworks/TrustEvaluationAgent.framework",
+ "children": [
+ {
+ "value": 40,
+ "name": "Versions",
+ "path": "PrivateFrameworks/TrustEvaluationAgent.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 720,
+ "name": "Ubiquity.framework",
+ "path": "PrivateFrameworks/Ubiquity.framework",
+ "children": [
+ {
+ "value": 708,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Ubiquity.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 136,
+ "name": "UIRecording.framework",
+ "path": "PrivateFrameworks/UIRecording.framework",
+ "children": [
+ {
+ "value": 128,
+ "name": "Versions",
+ "path": "PrivateFrameworks/UIRecording.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "Uninstall.framework",
+ "path": "PrivateFrameworks/Uninstall.framework",
+ "children": [
+ {
+ "value": 48,
+ "name": "Versions",
+ "path": "PrivateFrameworks/Uninstall.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2320,
+ "name": "UniversalAccess.framework",
+ "path": "PrivateFrameworks/UniversalAccess.framework",
+ "children": [
+ {
+ "value": 2308,
+ "name": "Versions",
+ "path": "PrivateFrameworks/UniversalAccess.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1248,
+ "name": "VCXMPP.framework",
+ "path": "PrivateFrameworks/VCXMPP.framework",
+ "children": [
+ {
+ "value": 1232,
+ "name": "Versions",
+ "path": "PrivateFrameworks/VCXMPP.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2016,
+ "name": "VectorKit.framework",
+ "path": "PrivateFrameworks/VectorKit.framework",
+ "children": [
+ {
+ "value": 2008,
+ "name": "Versions",
+ "path": "PrivateFrameworks/VectorKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1164,
+ "name": "VideoConference.framework",
+ "path": "PrivateFrameworks/VideoConference.framework",
+ "children": [
+ {
+ "value": 1156,
+ "name": "Versions",
+ "path": "PrivateFrameworks/VideoConference.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2152,
+ "name": "VideoProcessing.framework",
+ "path": "PrivateFrameworks/VideoProcessing.framework",
+ "children": [
+ {
+ "value": 2144,
+ "name": "Versions",
+ "path": "PrivateFrameworks/VideoProcessing.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 420,
+ "name": "ViewBridge.framework",
+ "path": "PrivateFrameworks/ViewBridge.framework",
+ "children": [
+ {
+ "value": 412,
+ "name": "Versions",
+ "path": "PrivateFrameworks/ViewBridge.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 164,
+ "name": "vmutils.framework",
+ "path": "PrivateFrameworks/vmutils.framework",
+ "children": [
+ {
+ "value": 156,
+ "name": "Versions",
+ "path": "PrivateFrameworks/vmutils.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 284,
+ "name": "WeatherKit.framework",
+ "path": "PrivateFrameworks/WeatherKit.framework",
+ "children": [
+ {
+ "value": 272,
+ "name": "Versions",
+ "path": "PrivateFrameworks/WeatherKit.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2228,
+ "name": "WebContentAnalysis.framework",
+ "path": "PrivateFrameworks/WebContentAnalysis.framework",
+ "children": [
+ {
+ "value": 2220,
+ "name": "Versions",
+ "path": "PrivateFrameworks/WebContentAnalysis.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "WebFilterDNS.framework",
+ "path": "PrivateFrameworks/WebFilterDNS.framework",
+ "children": [
+ {
+ "value": 16,
+ "name": "Versions",
+ "path": "PrivateFrameworks/WebFilterDNS.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 132,
+ "name": "WebInspector.framework",
+ "path": "PrivateFrameworks/WebInspector.framework",
+ "children": [
+ {
+ "value": 124,
+ "name": "Versions",
+ "path": "PrivateFrameworks/WebInspector.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 1228,
+ "name": "WebInspectorUI.framework",
+ "path": "PrivateFrameworks/WebInspectorUI.framework",
+ "children": [
+ {
+ "value": 1220,
+ "name": "Versions",
+ "path": "PrivateFrameworks/WebInspectorUI.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 2672,
+ "name": "WebKit2.framework",
+ "path": "PrivateFrameworks/WebKit2.framework",
+ "children": [
+ {
+ "value": 16,
+ "name": "NetworkProcess.app",
+ "path": "PrivateFrameworks/WebKit2.framework/NetworkProcess.app"
+ },
+ {
+ "value": 8,
+ "name": "OfflineStorageProcess.app",
+ "path": "PrivateFrameworks/WebKit2.framework/OfflineStorageProcess.app"
+ },
+ {
+ "value": 20,
+ "name": "PluginProcess.app",
+ "path": "PrivateFrameworks/WebKit2.framework/PluginProcess.app"
+ },
+ {
+ "value": 8,
+ "name": "SharedWorkerProcess.app",
+ "path": "PrivateFrameworks/WebKit2.framework/SharedWorkerProcess.app"
+ },
+ {
+ "value": 2592,
+ "name": "Versions",
+ "path": "PrivateFrameworks/WebKit2.framework/Versions"
+ },
+ {
+ "value": 16,
+ "name": "WebProcess.app",
+ "path": "PrivateFrameworks/WebKit2.framework/WebProcess.app"
+ }
+ ]
+ },
+ {
+ "value": 496,
+ "name": "WhitePages.framework",
+ "path": "PrivateFrameworks/WhitePages.framework",
+ "children": [
+ {
+ "value": 488,
+ "name": "Versions",
+ "path": "PrivateFrameworks/WhitePages.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 36,
+ "name": "WiFiCloudSyncEngine.framework",
+ "path": "PrivateFrameworks/WiFiCloudSyncEngine.framework",
+ "children": [
+ {
+ "value": 28,
+ "name": "Versions",
+ "path": "PrivateFrameworks/WiFiCloudSyncEngine.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 444,
+ "name": "WirelessDiagnosticsSupport.framework",
+ "path": "PrivateFrameworks/WirelessDiagnosticsSupport.framework",
+ "children": [
+ {
+ "value": 436,
+ "name": "Versions",
+ "path": "PrivateFrameworks/WirelessDiagnosticsSupport.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 372,
+ "name": "XMPPCore.framework",
+ "path": "PrivateFrameworks/XMPPCore.framework",
+ "children": [
+ {
+ "value": 364,
+ "name": "Versions",
+ "path": "PrivateFrameworks/XMPPCore.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 48,
+ "name": "XPCObjects.framework",
+ "path": "PrivateFrameworks/XPCObjects.framework",
+ "children": [
+ {
+ "value": 40,
+ "name": "Versions",
+ "path": "PrivateFrameworks/XPCObjects.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "XPCService.framework",
+ "path": "PrivateFrameworks/XPCService.framework",
+ "children": [
+ {
+ "value": 52,
+ "name": "Versions",
+ "path": "PrivateFrameworks/XPCService.framework/Versions"
+ }
+ ]
+ },
+ {
+ "value": 516,
+ "name": "XQuery.framework",
+ "path": "PrivateFrameworks/XQuery.framework",
+ "children": [
+ {
+ "value": 508,
+ "name": "Versions",
+ "path": "PrivateFrameworks/XQuery.framework/Versions"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 2988,
+ "name": "QuickLook",
+ "path": "QuickLook",
+ "children": [
+ {
+ "value": 8,
+ "name": "Audio.qlgenerator",
+ "path": "QuickLook/Audio.qlgenerator",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "QuickLook/Audio.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "Bookmark.qlgenerator",
+ "path": "QuickLook/Bookmark.qlgenerator",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "QuickLook/Bookmark.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "Clippings.qlgenerator",
+ "path": "QuickLook/Clippings.qlgenerator",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "QuickLook/Clippings.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 232,
+ "name": "Contact.qlgenerator",
+ "path": "QuickLook/Contact.qlgenerator",
+ "children": [
+ {
+ "value": 232,
+ "name": "Contents",
+ "path": "QuickLook/Contact.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "EPS.qlgenerator",
+ "path": "QuickLook/EPS.qlgenerator",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "QuickLook/EPS.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "Font.qlgenerator",
+ "path": "QuickLook/Font.qlgenerator",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "QuickLook/Font.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1432,
+ "name": "iCal.qlgenerator",
+ "path": "QuickLook/iCal.qlgenerator",
+ "children": [
+ {
+ "value": 1432,
+ "name": "Contents",
+ "path": "QuickLook/iCal.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "iChat.qlgenerator",
+ "path": "QuickLook/iChat.qlgenerator",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "QuickLook/iChat.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "Icon.qlgenerator",
+ "path": "QuickLook/Icon.qlgenerator",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "QuickLook/Icon.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "Image.qlgenerator",
+ "path": "QuickLook/Image.qlgenerator",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "QuickLook/Image.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "LocPDF.qlgenerator",
+ "path": "QuickLook/LocPDF.qlgenerator",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "QuickLook/LocPDF.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "Mail.qlgenerator",
+ "path": "QuickLook/Mail.qlgenerator",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "QuickLook/Mail.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "Movie.qlgenerator",
+ "path": "QuickLook/Movie.qlgenerator",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "QuickLook/Movie.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "Notes.qlgenerator",
+ "path": "QuickLook/Notes.qlgenerator",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "QuickLook/Notes.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "Office.qlgenerator",
+ "path": "QuickLook/Office.qlgenerator",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "QuickLook/Office.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "Package.qlgenerator",
+ "path": "QuickLook/Package.qlgenerator",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "QuickLook/Package.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "PDF.qlgenerator",
+ "path": "QuickLook/PDF.qlgenerator",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "QuickLook/PDF.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "SceneKit.qlgenerator",
+ "path": "QuickLook/SceneKit.qlgenerator",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "QuickLook/SceneKit.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 36,
+ "name": "Security.qlgenerator",
+ "path": "QuickLook/Security.qlgenerator",
+ "children": [
+ {
+ "value": 36,
+ "name": "Contents",
+ "path": "QuickLook/Security.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1060,
+ "name": "StandardBundles.qlgenerator",
+ "path": "QuickLook/StandardBundles.qlgenerator",
+ "children": [
+ {
+ "value": 1060,
+ "name": "Contents",
+ "path": "QuickLook/StandardBundles.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "Text.qlgenerator",
+ "path": "QuickLook/Text.qlgenerator",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "QuickLook/Text.qlgenerator/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "Web.qlgenerator",
+ "path": "QuickLook/Web.qlgenerator",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "QuickLook/Web.qlgenerator/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 17888,
+ "name": "QuickTime",
+ "path": "QuickTime",
+ "children": [
+ {
+ "value": 24,
+ "name": "AppleGVAHW.component",
+ "path": "QuickTime/AppleGVAHW.component",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "QuickTime/AppleGVAHW.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "ApplePixletVideo.component",
+ "path": "QuickTime/ApplePixletVideo.component",
+ "children": [
+ {
+ "value": 60,
+ "name": "Contents",
+ "path": "QuickTime/ApplePixletVideo.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 216,
+ "name": "AppleProResDecoder.component",
+ "path": "QuickTime/AppleProResDecoder.component",
+ "children": [
+ {
+ "value": 216,
+ "name": "Contents",
+ "path": "QuickTime/AppleProResDecoder.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 756,
+ "name": "AppleVAH264HW.component",
+ "path": "QuickTime/AppleVAH264HW.component",
+ "children": [
+ {
+ "value": 756,
+ "name": "Contents",
+ "path": "QuickTime/AppleVAH264HW.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "QuartzComposer.component",
+ "path": "QuickTime/QuartzComposer.component",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "QuickTime/QuartzComposer.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 520,
+ "name": "QuickTime3GPP.component",
+ "path": "QuickTime/QuickTime3GPP.component",
+ "children": [
+ {
+ "value": 520,
+ "name": "Contents",
+ "path": "QuickTime/QuickTime3GPP.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 11548,
+ "name": "QuickTimeComponents.component",
+ "path": "QuickTime/QuickTimeComponents.component",
+ "children": [
+ {
+ "value": 11548,
+ "name": "Contents",
+ "path": "QuickTime/QuickTimeComponents.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 76,
+ "name": "QuickTimeFireWireDV.component",
+ "path": "QuickTime/QuickTimeFireWireDV.component",
+ "children": [
+ {
+ "value": 76,
+ "name": "Contents",
+ "path": "QuickTime/QuickTimeFireWireDV.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1592,
+ "name": "QuickTimeH264.component",
+ "path": "QuickTime/QuickTimeH264.component",
+ "children": [
+ {
+ "value": 1592,
+ "name": "Contents",
+ "path": "QuickTime/QuickTimeH264.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 64,
+ "name": "QuickTimeIIDCDigitizer.component",
+ "path": "QuickTime/QuickTimeIIDCDigitizer.component",
+ "children": [
+ {
+ "value": 64,
+ "name": "Contents",
+ "path": "QuickTime/QuickTimeIIDCDigitizer.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 832,
+ "name": "QuickTimeImporters.component",
+ "path": "QuickTime/QuickTimeImporters.component",
+ "children": [
+ {
+ "value": 832,
+ "name": "Contents",
+ "path": "QuickTime/QuickTimeImporters.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 200,
+ "name": "QuickTimeMPEG.component",
+ "path": "QuickTime/QuickTimeMPEG.component",
+ "children": [
+ {
+ "value": 200,
+ "name": "Contents",
+ "path": "QuickTime/QuickTimeMPEG.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 564,
+ "name": "QuickTimeMPEG4.component",
+ "path": "QuickTime/QuickTimeMPEG4.component",
+ "children": [
+ {
+ "value": 564,
+ "name": "Contents",
+ "path": "QuickTime/QuickTimeMPEG4.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 968,
+ "name": "QuickTimeStreaming.component",
+ "path": "QuickTime/QuickTimeStreaming.component",
+ "children": [
+ {
+ "value": 968,
+ "name": "Contents",
+ "path": "QuickTime/QuickTimeStreaming.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 120,
+ "name": "QuickTimeUSBVDCDigitizer.component",
+ "path": "QuickTime/QuickTimeUSBVDCDigitizer.component",
+ "children": [
+ {
+ "value": 120,
+ "name": "Contents",
+ "path": "QuickTime/QuickTimeUSBVDCDigitizer.component/Contents"
+ }
+ ]
+ },
+ {
+ "value": 324,
+ "name": "QuickTimeVR.component",
+ "path": "QuickTime/QuickTimeVR.component",
+ "children": [
+ {
+ "value": 324,
+ "name": "Contents",
+ "path": "QuickTime/QuickTimeVR.component/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "QuickTimeJava",
+ "path": "QuickTimeJava",
+ "children": [
+ {
+ "value": 28,
+ "name": "QuickTimeJava.bundle",
+ "path": "QuickTimeJava/QuickTimeJava.bundle",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "QuickTimeJava/QuickTimeJava.bundle/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "Recents",
+ "path": "Recents",
+ "children": [
+ {
+ "value": 20,
+ "name": "Plugins",
+ "path": "Recents/Plugins",
+ "children": [
+ {
+ "value": 36,
+ "name": "AddressBook.assistantBundle",
+ "path": "Assistant/Plugins/AddressBook.assistantBundle"
+ },
+ {
+ "value": 8,
+ "name": "GenericAddressHandler.addresshandler",
+ "path": "Recents/Plugins/GenericAddressHandler.addresshandler"
+ },
+ {
+ "value": 12,
+ "name": "MapsRecents.addresshandler",
+ "path": "Recents/Plugins/MapsRecents.addresshandler"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "Sandbox",
+ "path": "Sandbox",
+ "children": [
+ {
+ "value": 12,
+ "name": "Profiles",
+ "path": "Sandbox/Profiles"
+ }
+ ]
+ },
+ {
+ "value": 1052,
+ "name": "ScreenSavers",
+ "path": "ScreenSavers",
+ "children": [
+ {
+ "value": 8,
+ "name": "FloatingMessage.saver",
+ "path": "ScreenSavers/FloatingMessage.saver",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "ScreenSavers/FloatingMessage.saver/Contents"
+ }
+ ]
+ },
+ {
+ "value": 360,
+ "name": "Flurry.saver",
+ "path": "ScreenSavers/Flurry.saver",
+ "children": [
+ {
+ "value": 360,
+ "name": "Contents",
+ "path": "ScreenSavers/Flurry.saver/Contents"
+ }
+ ]
+ },
+ {
+ "value": 568,
+ "name": "iTunes Artwork.saver",
+ "path": "ScreenSavers/iTunes Artwork.saver",
+ "children": [
+ {
+ "value": 568,
+ "name": "Contents",
+ "path": "ScreenSavers/iTunes Artwork.saver/Contents"
+ }
+ ]
+ },
+ {
+ "value": 52,
+ "name": "Random.saver",
+ "path": "ScreenSavers/Random.saver",
+ "children": [
+ {
+ "value": 52,
+ "name": "Contents",
+ "path": "ScreenSavers/Random.saver/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 1848,
+ "name": "ScreenReader",
+ "path": "ScreenReader",
+ "children": [
+ {
+ "value": 556,
+ "name": "BrailleDrivers",
+ "path": "ScreenReader/BrailleDrivers",
+ "children": [
+ {
+ "value": 28,
+ "name": "Alva6 Series.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/Alva6 Series.brailledriver"
+ },
+ {
+ "value": 16,
+ "name": "Alva.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/Alva.brailledriver"
+ },
+ {
+ "value": 28,
+ "name": "BrailleConnect.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/BrailleConnect.brailledriver"
+ },
+ {
+ "value": 24,
+ "name": "BrailleNoteApex.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/BrailleNoteApex.brailledriver"
+ },
+ {
+ "value": 16,
+ "name": "BrailleNote.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/BrailleNote.brailledriver"
+ },
+ {
+ "value": 24,
+ "name": "BrailleSense.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/BrailleSense.brailledriver"
+ },
+ {
+ "value": 28,
+ "name": "Brailliant2.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/Brailliant2.brailledriver"
+ },
+ {
+ "value": 28,
+ "name": "Brailliant.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/Brailliant.brailledriver"
+ },
+ {
+ "value": 16,
+ "name": "Deininger.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/Deininger.brailledriver"
+ },
+ {
+ "value": 20,
+ "name": "EasyLink.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/EasyLink.brailledriver"
+ },
+ {
+ "value": 28,
+ "name": "Eurobraille.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/Eurobraille.brailledriver"
+ },
+ {
+ "value": 28,
+ "name": "FreedomScientific.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/FreedomScientific.brailledriver"
+ },
+ {
+ "value": 32,
+ "name": "HandyTech.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/HandyTech.brailledriver"
+ },
+ {
+ "value": 20,
+ "name": "HIMSDriver.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/HIMSDriver.brailledriver"
+ },
+ {
+ "value": 28,
+ "name": "KGSDriver.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/KGSDriver.brailledriver"
+ },
+ {
+ "value": 28,
+ "name": "MDV.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/MDV.brailledriver"
+ },
+ {
+ "value": 24,
+ "name": "NinepointSystems.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/NinepointSystems.brailledriver"
+ },
+ {
+ "value": 24,
+ "name": "Papenmeier.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/Papenmeier.brailledriver"
+ },
+ {
+ "value": 28,
+ "name": "Refreshabraille.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/Refreshabraille.brailledriver"
+ },
+ {
+ "value": 32,
+ "name": "Seika.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/Seika.brailledriver"
+ },
+ {
+ "value": 16,
+ "name": "SyncBraille.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/SyncBraille.brailledriver"
+ },
+ {
+ "value": 24,
+ "name": "VarioPro.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/VarioPro.brailledriver"
+ },
+ {
+ "value": 16,
+ "name": "Voyager.brailledriver",
+ "path": "ScreenReader/BrailleDrivers/Voyager.brailledriver"
+ }
+ ]
+ },
+ {
+ "value": 1292,
+ "name": "BrailleTables",
+ "path": "ScreenReader/BrailleTables",
+ "children": [
+ {
+ "value": 1292,
+ "name": "Duxbury.brailletable",
+ "path": "ScreenReader/BrailleTables/Duxbury.brailletable"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 1408,
+ "name": "ScriptingAdditions",
+ "path": "ScriptingAdditions",
+ "children": [
+ {
+ "value": 8,
+ "name": "DigitalHub Scripting.osax",
+ "path": "ScriptingAdditions/DigitalHub Scripting.osax",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "ScriptingAdditions/DigitalHub Scripting.osax/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1400,
+ "name": "StandardAdditions.osax",
+ "path": "ScriptingAdditions/StandardAdditions.osax",
+ "children": [
+ {
+ "value": 1400,
+ "name": "Contents",
+ "path": "ScriptingAdditions/StandardAdditions.osax/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "ScriptingDefinitions",
+ "path": "ScriptingDefinitions"
+ },
+ {
+ "value": 0,
+ "name": "SDKSettingsPlist",
+ "path": "SDKSettingsPlist"
+ },
+ {
+ "value": 312,
+ "name": "Security",
+ "path": "Security",
+ "children": [
+ {
+ "value": 100,
+ "name": "dotmac_tp.bundle",
+ "path": "Security/dotmac_tp.bundle",
+ "children": [
+ {
+ "value": 100,
+ "name": "Contents",
+ "path": "Security/dotmac_tp.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "ldapdl.bundle",
+ "path": "Security/ldapdl.bundle",
+ "children": [
+ {
+ "value": 72,
+ "name": "Contents",
+ "path": "Security/ldapdl.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 132,
+ "name": "tokend",
+ "path": "Security/tokend",
+ "children": [
+ {
+ "value": 132,
+ "name": "uiplugins",
+ "path": "Security/tokend/uiplugins"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 18208,
+ "name": "Services",
+ "path": "Services",
+ "children": [
+ {
+ "value": 0,
+ "name": "Addto iTunes as a Spoken Track.workflow",
+ "path": "Services/Addto iTunes as a Spoken Track.workflow",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Services/Addto iTunes as a Spoken Track.workflow/Contents"
+ }
+ ]
+ },
+ {
+ "value": 14308,
+ "name": "AppleSpell.service",
+ "path": "Services/AppleSpell.service",
+ "children": [
+ {
+ "value": 14308,
+ "name": "Contents",
+ "path": "Services/AppleSpell.service/Contents"
+ }
+ ]
+ },
+ {
+ "value": 556,
+ "name": "ChineseTextConverterService.app",
+ "path": "Services/ChineseTextConverterService.app",
+ "children": [
+ {
+ "value": 556,
+ "name": "Contents",
+ "path": "Services/ChineseTextConverterService.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 48,
+ "name": "EncodeSelected Audio Files.workflow",
+ "path": "Services/EncodeSelected Audio Files.workflow",
+ "children": [
+ {
+ "value": 48,
+ "name": "Contents",
+ "path": "Services/EncodeSelected Audio Files.workflow/Contents"
+ }
+ ]
+ },
+ {
+ "value": 40,
+ "name": "EncodeSelected Video Files.workflow",
+ "path": "Services/EncodeSelected Video Files.workflow",
+ "children": [
+ {
+ "value": 40,
+ "name": "Contents",
+ "path": "Services/EncodeSelected Video Files.workflow/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1344,
+ "name": "ImageCaptureService.app",
+ "path": "Services/ImageCaptureService.app",
+ "children": [
+ {
+ "value": 1344,
+ "name": "Contents",
+ "path": "Services/ImageCaptureService.app/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "OpenSpell.service",
+ "path": "Services/OpenSpell.service",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "Services/OpenSpell.service/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "SetDesktop Picture.workflow",
+ "path": "Services/SetDesktop Picture.workflow",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Services/SetDesktop Picture.workflow/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "ShowAddress in Google Maps.workflow",
+ "path": "Services/ShowAddress in Google Maps.workflow",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "Services/ShowAddress in Google Maps.workflow/Contents"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "ShowMap.workflow",
+ "path": "Services/ShowMap.workflow",
+ "children": [
+ {
+ "value": 60,
+ "name": "Contents",
+ "path": "Services/ShowMap.workflow/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SpeechService.service",
+ "path": "Services/SpeechService.service",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Services/SpeechService.service/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "Spotlight.service",
+ "path": "Services/Spotlight.service",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Services/Spotlight.service/Contents"
+ }
+ ]
+ },
+ {
+ "value": 1816,
+ "name": "SummaryService.app",
+ "path": "Services/SummaryService.app",
+ "children": [
+ {
+ "value": 1816,
+ "name": "Contents",
+ "path": "Services/SummaryService.app/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 700,
+ "name": "Sounds",
+ "path": "Sounds"
+ },
+ {
+ "value": 1512668,
+ "name": "Speech",
+ "path": "Speech",
+ "children": [
+ {
+ "value": 2804,
+ "name": "Recognizers",
+ "path": "Speech/Recognizers",
+ "children": [
+ {
+ "value": 2804,
+ "name": "AppleSpeakableItems.SpeechRecognizer",
+ "path": "Speech/Recognizers/AppleSpeakableItems.SpeechRecognizer"
+ }
+ ]
+ },
+ {
+ "value": 6684,
+ "name": "Synthesizers",
+ "path": "Speech/Synthesizers",
+ "children": [
+ {
+ "value": 800,
+ "name": "MacinTalk.SpeechSynthesizer",
+ "path": "Speech/Synthesizers/MacinTalk.SpeechSynthesizer"
+ },
+ {
+ "value": 3468,
+ "name": "MultiLingual.SpeechSynthesizer",
+ "path": "Speech/Synthesizers/MultiLingual.SpeechSynthesizer"
+ },
+ {
+ "value": 2416,
+ "name": "Polyglot.SpeechSynthesizer",
+ "path": "Speech/Synthesizers/Polyglot.SpeechSynthesizer"
+ }
+ ]
+ },
+ {
+ "value": 1503180,
+ "name": "Voices",
+ "path": "Speech/Voices",
+ "children": [
+ {
+ "value": 1540,
+ "name": "Agnes.SpeechVoice",
+ "path": "Speech/Voices/Agnes.SpeechVoice"
+ },
+ {
+ "value": 20,
+ "name": "Albert.SpeechVoice",
+ "path": "Speech/Voices/Albert.SpeechVoice"
+ },
+ {
+ "value": 412132,
+ "name": "Alex.SpeechVoice",
+ "path": "Speech/Voices/Alex.SpeechVoice"
+ },
+ {
+ "value": 624,
+ "name": "AliceCompact.SpeechVoice",
+ "path": "Speech/Voices/AliceCompact.SpeechVoice"
+ },
+ {
+ "value": 908,
+ "name": "AlvaCompact.SpeechVoice",
+ "path": "Speech/Voices/AlvaCompact.SpeechVoice"
+ },
+ {
+ "value": 668,
+ "name": "AmelieCompact.SpeechVoice",
+ "path": "Speech/Voices/AmelieCompact.SpeechVoice"
+ },
+ {
+ "value": 1016,
+ "name": "AnnaCompact.SpeechVoice",
+ "path": "Speech/Voices/AnnaCompact.SpeechVoice"
+ },
+ {
+ "value": 12,
+ "name": "BadNews.SpeechVoice",
+ "path": "Speech/Voices/BadNews.SpeechVoice"
+ },
+ {
+ "value": 20,
+ "name": "Bahh.SpeechVoice",
+ "path": "Speech/Voices/Bahh.SpeechVoice"
+ },
+ {
+ "value": 48,
+ "name": "Bells.SpeechVoice",
+ "path": "Speech/Voices/Bells.SpeechVoice"
+ },
+ {
+ "value": 20,
+ "name": "Boing.SpeechVoice",
+ "path": "Speech/Voices/Boing.SpeechVoice"
+ },
+ {
+ "value": 1684,
+ "name": "Bruce.SpeechVoice",
+ "path": "Speech/Voices/Bruce.SpeechVoice"
+ },
+ {
+ "value": 12,
+ "name": "Bubbles.SpeechVoice",
+ "path": "Speech/Voices/Bubbles.SpeechVoice"
+ },
+ {
+ "value": 24,
+ "name": "Cellos.SpeechVoice",
+ "path": "Speech/Voices/Cellos.SpeechVoice"
+ },
+ {
+ "value": 720,
+ "name": "DamayantiCompact.SpeechVoice",
+ "path": "Speech/Voices/DamayantiCompact.SpeechVoice"
+ },
+ {
+ "value": 1000,
+ "name": "DanielCompact.SpeechVoice",
+ "path": "Speech/Voices/DanielCompact.SpeechVoice"
+ },
+ {
+ "value": 24,
+ "name": "Deranged.SpeechVoice",
+ "path": "Speech/Voices/Deranged.SpeechVoice"
+ },
+ {
+ "value": 740,
+ "name": "EllenCompact.SpeechVoice",
+ "path": "Speech/Voices/EllenCompact.SpeechVoice"
+ },
+ {
+ "value": 12,
+ "name": "Fred.SpeechVoice",
+ "path": "Speech/Voices/Fred.SpeechVoice"
+ },
+ {
+ "value": 12,
+ "name": "GoodNews.SpeechVoice",
+ "path": "Speech/Voices/GoodNews.SpeechVoice"
+ },
+ {
+ "value": 28,
+ "name": "Hysterical.SpeechVoice",
+ "path": "Speech/Voices/Hysterical.SpeechVoice"
+ },
+ {
+ "value": 492,
+ "name": "IoanaCompact.SpeechVoice",
+ "path": "Speech/Voices/IoanaCompact.SpeechVoice"
+ },
+ {
+ "value": 596,
+ "name": "JoanaCompact.SpeechVoice",
+ "path": "Speech/Voices/JoanaCompact.SpeechVoice"
+ },
+ {
+ "value": 12,
+ "name": "Junior.SpeechVoice",
+ "path": "Speech/Voices/Junior.SpeechVoice"
+ },
+ {
+ "value": 1336,
+ "name": "KanyaCompact.SpeechVoice",
+ "path": "Speech/Voices/KanyaCompact.SpeechVoice"
+ },
+ {
+ "value": 1004,
+ "name": "KarenCompact.SpeechVoice",
+ "path": "Speech/Voices/KarenCompact.SpeechVoice"
+ },
+ {
+ "value": 12,
+ "name": "Kathy.SpeechVoice",
+ "path": "Speech/Voices/Kathy.SpeechVoice"
+ },
+ {
+ "value": 408836,
+ "name": "Kyoko.SpeechVoice",
+ "path": "Speech/Voices/Kyoko.SpeechVoice"
+ },
+ {
+ "value": 2620,
+ "name": "KyokoCompact.SpeechVoice",
+ "path": "Speech/Voices/KyokoCompact.SpeechVoice"
+ },
+ {
+ "value": 496,
+ "name": "LauraCompact.SpeechVoice",
+ "path": "Speech/Voices/LauraCompact.SpeechVoice"
+ },
+ {
+ "value": 2104,
+ "name": "LekhaCompact.SpeechVoice",
+ "path": "Speech/Voices/LekhaCompact.SpeechVoice"
+ },
+ {
+ "value": 548,
+ "name": "LucianaCompact.SpeechVoice",
+ "path": "Speech/Voices/LucianaCompact.SpeechVoice"
+ },
+ {
+ "value": 504,
+ "name": "MariskaCompact.SpeechVoice",
+ "path": "Speech/Voices/MariskaCompact.SpeechVoice"
+ },
+ {
+ "value": 2092,
+ "name": "Mei-JiaCompact.SpeechVoice",
+ "path": "Speech/Voices/Mei-JiaCompact.SpeechVoice"
+ },
+ {
+ "value": 1020,
+ "name": "MelinaCompact.SpeechVoice",
+ "path": "Speech/Voices/MelinaCompact.SpeechVoice"
+ },
+ {
+ "value": 2160,
+ "name": "MilenaCompact.SpeechVoice",
+ "path": "Speech/Voices/MilenaCompact.SpeechVoice"
+ },
+ {
+ "value": 728,
+ "name": "MoiraCompact.SpeechVoice",
+ "path": "Speech/Voices/MoiraCompact.SpeechVoice"
+ },
+ {
+ "value": 612,
+ "name": "MonicaCompact.SpeechVoice",
+ "path": "Speech/Voices/MonicaCompact.SpeechVoice"
+ },
+ {
+ "value": 824,
+ "name": "NoraCompact.SpeechVoice",
+ "path": "Speech/Voices/NoraCompact.SpeechVoice"
+ },
+ {
+ "value": 24,
+ "name": "Organ.SpeechVoice",
+ "path": "Speech/Voices/Organ.SpeechVoice"
+ },
+ {
+ "value": 664,
+ "name": "PaulinaCompact.SpeechVoice",
+ "path": "Speech/Voices/PaulinaCompact.SpeechVoice"
+ },
+ {
+ "value": 12,
+ "name": "Princess.SpeechVoice",
+ "path": "Speech/Voices/Princess.SpeechVoice"
+ },
+ {
+ "value": 12,
+ "name": "Ralph.SpeechVoice",
+ "path": "Speech/Voices/Ralph.SpeechVoice"
+ },
+ {
+ "value": 908,
+ "name": "SamanthaCompact.SpeechVoice",
+ "path": "Speech/Voices/SamanthaCompact.SpeechVoice"
+ },
+ {
+ "value": 828,
+ "name": "SaraCompact.SpeechVoice",
+ "path": "Speech/Voices/SaraCompact.SpeechVoice"
+ },
+ {
+ "value": 664,
+ "name": "SatuCompact.SpeechVoice",
+ "path": "Speech/Voices/SatuCompact.SpeechVoice"
+ },
+ {
+ "value": 2336,
+ "name": "Sin-jiCompact.SpeechVoice",
+ "path": "Speech/Voices/Sin-jiCompact.SpeechVoice"
+ },
+ {
+ "value": 2856,
+ "name": "TarikCompact.SpeechVoice",
+ "path": "Speech/Voices/TarikCompact.SpeechVoice"
+ },
+ {
+ "value": 948,
+ "name": "TessaCompact.SpeechVoice",
+ "path": "Speech/Voices/TessaCompact.SpeechVoice"
+ },
+ {
+ "value": 660,
+ "name": "ThomasCompact.SpeechVoice",
+ "path": "Speech/Voices/ThomasCompact.SpeechVoice"
+ },
+ {
+ "value": 610156,
+ "name": "Ting-Ting.SpeechVoice",
+ "path": "Speech/Voices/Ting-Ting.SpeechVoice"
+ },
+ {
+ "value": 1708,
+ "name": "Ting-TingCompact.SpeechVoice",
+ "path": "Speech/Voices/Ting-TingCompact.SpeechVoice"
+ },
+ {
+ "value": 12,
+ "name": "Trinoids.SpeechVoice",
+ "path": "Speech/Voices/Trinoids.SpeechVoice"
+ },
+ {
+ "value": 28632,
+ "name": "Vicki.SpeechVoice",
+ "path": "Speech/Voices/Vicki.SpeechVoice"
+ },
+ {
+ "value": 1664,
+ "name": "Victoria.SpeechVoice",
+ "path": "Speech/Voices/Victoria.SpeechVoice"
+ },
+ {
+ "value": 12,
+ "name": "Whisper.SpeechVoice",
+ "path": "Speech/Voices/Whisper.SpeechVoice"
+ },
+ {
+ "value": 992,
+ "name": "XanderCompact.SpeechVoice",
+ "path": "Speech/Voices/XanderCompact.SpeechVoice"
+ },
+ {
+ "value": 756,
+ "name": "YeldaCompact.SpeechVoice",
+ "path": "Speech/Voices/YeldaCompact.SpeechVoice"
+ },
+ {
+ "value": 728,
+ "name": "YunaCompact.SpeechVoice",
+ "path": "Speech/Voices/YunaCompact.SpeechVoice"
+ },
+ {
+ "value": 12,
+ "name": "Zarvox.SpeechVoice",
+ "path": "Speech/Voices/Zarvox.SpeechVoice"
+ },
+ {
+ "value": 564,
+ "name": "ZosiaCompact.SpeechVoice",
+ "path": "Speech/Voices/ZosiaCompact.SpeechVoice"
+ },
+ {
+ "value": 772,
+ "name": "ZuzanaCompact.SpeechVoice",
+ "path": "Speech/Voices/ZuzanaCompact.SpeechVoice"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 1060,
+ "name": "Spelling",
+ "path": "Spelling"
+ },
+ {
+ "value": 412,
+ "name": "Spotlight",
+ "path": "Spotlight",
+ "children": [
+ {
+ "value": 20,
+ "name": "Application.mdimporter",
+ "path": "Spotlight/Application.mdimporter",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Spotlight/Application.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "Archives.mdimporter",
+ "path": "Spotlight/Archives.mdimporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Spotlight/Archives.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "Audio.mdimporter",
+ "path": "Spotlight/Audio.mdimporter",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Spotlight/Audio.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "Automator.mdimporter",
+ "path": "Spotlight/Automator.mdimporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Spotlight/Automator.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "Bookmarks.mdimporter",
+ "path": "Spotlight/Bookmarks.mdimporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Spotlight/Bookmarks.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "Chat.mdimporter",
+ "path": "Spotlight/Chat.mdimporter",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "Spotlight/Chat.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "CoreMedia.mdimporter",
+ "path": "Spotlight/CoreMedia.mdimporter",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "Spotlight/CoreMedia.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 32,
+ "name": "Font.mdimporter",
+ "path": "Spotlight/Font.mdimporter",
+ "children": [
+ {
+ "value": 32,
+ "name": "Contents",
+ "path": "Spotlight/Font.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "iCal.mdimporter",
+ "path": "Spotlight/iCal.mdimporter",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "Spotlight/iCal.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "Image.mdimporter",
+ "path": "Spotlight/Image.mdimporter",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "Spotlight/Image.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 72,
+ "name": "iPhoto.mdimporter",
+ "path": "Spotlight/iPhoto.mdimporter",
+ "children": [
+ {
+ "value": 72,
+ "name": "Contents",
+ "path": "Spotlight/iPhoto.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "iPhoto8.mdimporter",
+ "path": "Spotlight/iPhoto8.mdimporter",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "Spotlight/iPhoto8.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "Mail.mdimporter",
+ "path": "Spotlight/Mail.mdimporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Spotlight/Mail.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "MIDI.mdimporter",
+ "path": "Spotlight/MIDI.mdimporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Spotlight/MIDI.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "Notes.mdimporter",
+ "path": "Spotlight/Notes.mdimporter",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "Spotlight/Notes.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "PDF.mdimporter",
+ "path": "Spotlight/PDF.mdimporter",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "Spotlight/PDF.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "PS.mdimporter",
+ "path": "Spotlight/PS.mdimporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Spotlight/PS.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "QuartzComposer.mdimporter",
+ "path": "Spotlight/QuartzComposer.mdimporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "Spotlight/QuartzComposer.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "RichText.mdimporter",
+ "path": "Spotlight/RichText.mdimporter",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Spotlight/RichText.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "SystemPrefs.mdimporter",
+ "path": "Spotlight/SystemPrefs.mdimporter",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "Spotlight/SystemPrefs.mdimporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "vCard.mdimporter",
+ "path": "Spotlight/vCard.mdimporter",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "Spotlight/vCard.mdimporter/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "StartupItems",
+ "path": "StartupItems"
+ },
+ {
+ "value": 168,
+ "name": "SyncServices",
+ "path": "SyncServices",
+ "children": [
+ {
+ "value": 0,
+ "name": "AutoRegistration",
+ "path": "SyncServices/AutoRegistration",
+ "children": [
+ {
+ "value": 0,
+ "name": "Clients",
+ "path": "SyncServices/AutoRegistration/Clients"
+ },
+ {
+ "value": 0,
+ "name": "Schemas",
+ "path": "SyncServices/AutoRegistration/Schemas"
+ }
+ ]
+ },
+ {
+ "value": 168,
+ "name": "Schemas",
+ "path": "SyncServices/Schemas",
+ "children": [
+ {
+ "value": 24,
+ "name": "Bookmarks.syncschema",
+ "path": "SyncServices/Schemas/Bookmarks.syncschema"
+ },
+ {
+ "value": 68,
+ "name": "Calendars.syncschema",
+ "path": "SyncServices/Schemas/Calendars.syncschema"
+ },
+ {
+ "value": 48,
+ "name": "Contacts.syncschema",
+ "path": "SyncServices/Schemas/Contacts.syncschema"
+ },
+ {
+ "value": 16,
+ "name": "Notes.syncschema",
+ "path": "SyncServices/Schemas/Notes.syncschema"
+ },
+ {
+ "value": 12,
+ "name": "Palm.syncschema",
+ "path": "SyncServices/Schemas/Palm.syncschema"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 3156,
+ "name": "SystemConfiguration",
+ "path": "SystemConfiguration",
+ "children": [
+ {
+ "value": 8,
+ "name": "ApplicationFirewallStartup.bundle",
+ "path": "SystemConfiguration/ApplicationFirewallStartup.bundle",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "SystemConfiguration/ApplicationFirewallStartup.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 116,
+ "name": "EAPOLController.bundle",
+ "path": "SystemConfiguration/EAPOLController.bundle",
+ "children": [
+ {
+ "value": 116,
+ "name": "Contents",
+ "path": "SystemConfiguration/EAPOLController.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "InterfaceNamer.bundle",
+ "path": "SystemConfiguration/InterfaceNamer.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "SystemConfiguration/InterfaceNamer.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 132,
+ "name": "IPConfiguration.bundle",
+ "path": "SystemConfiguration/IPConfiguration.bundle",
+ "children": [
+ {
+ "value": 132,
+ "name": "Contents",
+ "path": "SystemConfiguration/IPConfiguration.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "IPMonitor.bundle",
+ "path": "SystemConfiguration/IPMonitor.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "SystemConfiguration/IPMonitor.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "KernelEventMonitor.bundle",
+ "path": "SystemConfiguration/KernelEventMonitor.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "SystemConfiguration/KernelEventMonitor.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "LinkConfiguration.bundle",
+ "path": "SystemConfiguration/LinkConfiguration.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "SystemConfiguration/LinkConfiguration.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "Logger.bundle",
+ "path": "SystemConfiguration/Logger.bundle",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "SystemConfiguration/Logger.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 2804,
+ "name": "PPPController.bundle",
+ "path": "SystemConfiguration/PPPController.bundle",
+ "children": [
+ {
+ "value": 2804,
+ "name": "Contents",
+ "path": "SystemConfiguration/PPPController.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "PreferencesMonitor.bundle",
+ "path": "SystemConfiguration/PreferencesMonitor.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "SystemConfiguration/PreferencesMonitor.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 76,
+ "name": "PrinterNotifications.bundle",
+ "path": "SystemConfiguration/PrinterNotifications.bundle",
+ "children": [
+ {
+ "value": 76,
+ "name": "Contents",
+ "path": "SystemConfiguration/PrinterNotifications.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "SCNetworkReachability.bundle",
+ "path": "SystemConfiguration/SCNetworkReachability.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "SystemConfiguration/SCNetworkReachability.bundle/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 1520,
+ "name": "SystemProfiler",
+ "path": "SystemProfiler",
+ "children": [
+ {
+ "value": 84,
+ "name": "SPAirPortReporter.spreporter",
+ "path": "SystemProfiler/SPAirPortReporter.spreporter",
+ "children": [
+ {
+ "value": 84,
+ "name": "Contents",
+ "path": "SystemProfiler/SPAirPortReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "SPApplicationsReporter.spreporter",
+ "path": "SystemProfiler/SPApplicationsReporter.spreporter",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "SystemProfiler/SPApplicationsReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "SPAudioReporter.spreporter",
+ "path": "SystemProfiler/SPAudioReporter.spreporter",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "SystemProfiler/SPAudioReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "SPBluetoothReporter.spreporter",
+ "path": "SystemProfiler/SPBluetoothReporter.spreporter",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "SystemProfiler/SPBluetoothReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "SPCameraReporter.spreporter",
+ "path": "SystemProfiler/SPCameraReporter.spreporter",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "SystemProfiler/SPCameraReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPCardReaderReporter.spreporter",
+ "path": "SystemProfiler/SPCardReaderReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPCardReaderReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "SPComponentReporter.spreporter",
+ "path": "SystemProfiler/SPComponentReporter.spreporter",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "SystemProfiler/SPComponentReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "SPConfigurationProfileReporter.spreporter",
+ "path": "SystemProfiler/SPConfigurationProfileReporter.spreporter",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "SystemProfiler/SPConfigurationProfileReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPDeveloperToolsReporter.spreporter",
+ "path": "SystemProfiler/SPDeveloperToolsReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPDeveloperToolsReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "SPDiagnosticsReporter.spreporter",
+ "path": "SystemProfiler/SPDiagnosticsReporter.spreporter",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "SystemProfiler/SPDiagnosticsReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPDisabledApplicationsReporter.spreporter",
+ "path": "SystemProfiler/SPDisabledApplicationsReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPDisabledApplicationsReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPDiscBurningReporter.spreporter",
+ "path": "SystemProfiler/SPDiscBurningReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPDiscBurningReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 284,
+ "name": "SPDisplaysReporter.spreporter",
+ "path": "SystemProfiler/SPDisplaysReporter.spreporter",
+ "children": [
+ {
+ "value": 284,
+ "name": "Contents",
+ "path": "SystemProfiler/SPDisplaysReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "SPEthernetReporter.spreporter",
+ "path": "SystemProfiler/SPEthernetReporter.spreporter",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "SystemProfiler/SPEthernetReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPExtensionsReporter.spreporter",
+ "path": "SystemProfiler/SPExtensionsReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPExtensionsReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPFibreChannelReporter.spreporter",
+ "path": "SystemProfiler/SPFibreChannelReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPFibreChannelReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPFirewallReporter.spreporter",
+ "path": "SystemProfiler/SPFirewallReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPFirewallReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "SPFireWireReporter.spreporter",
+ "path": "SystemProfiler/SPFireWireReporter.spreporter",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "SystemProfiler/SPFireWireReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPFontReporter.spreporter",
+ "path": "SystemProfiler/SPFontReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPFontReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "SPFrameworksReporter.spreporter",
+ "path": "SystemProfiler/SPFrameworksReporter.spreporter",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "SystemProfiler/SPFrameworksReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "SPHardwareRAIDReporter.spreporter",
+ "path": "SystemProfiler/SPHardwareRAIDReporter.spreporter",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "SystemProfiler/SPHardwareRAIDReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "SPInstallHistoryReporter.spreporter",
+ "path": "SystemProfiler/SPInstallHistoryReporter.spreporter",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "SystemProfiler/SPInstallHistoryReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPLogsReporter.spreporter",
+ "path": "SystemProfiler/SPLogsReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPLogsReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "SPManagedClientReporter.spreporter",
+ "path": "SystemProfiler/SPManagedClientReporter.spreporter",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "SystemProfiler/SPManagedClientReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPMemoryReporter.spreporter",
+ "path": "SystemProfiler/SPMemoryReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPMemoryReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 264,
+ "name": "SPNetworkLocationReporter.spreporter",
+ "path": "SystemProfiler/SPNetworkLocationReporter.spreporter",
+ "children": [
+ {
+ "value": 264,
+ "name": "Contents",
+ "path": "SystemProfiler/SPNetworkLocationReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 268,
+ "name": "SPNetworkReporter.spreporter",
+ "path": "SystemProfiler/SPNetworkReporter.spreporter",
+ "children": [
+ {
+ "value": 268,
+ "name": "Contents",
+ "path": "SystemProfiler/SPNetworkReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "SPNetworkVolumeReporter.spreporter",
+ "path": "SystemProfiler/SPNetworkVolumeReporter.spreporter",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "SystemProfiler/SPNetworkVolumeReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "SPOSReporter.spreporter",
+ "path": "SystemProfiler/SPOSReporter.spreporter",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "SystemProfiler/SPOSReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPParallelATAReporter.spreporter",
+ "path": "SystemProfiler/SPParallelATAReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPParallelATAReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "SPParallelSCSIReporter.spreporter",
+ "path": "SystemProfiler/SPParallelSCSIReporter.spreporter",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "SystemProfiler/SPParallelSCSIReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPPCIReporter.spreporter",
+ "path": "SystemProfiler/SPPCIReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPPCIReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPPlatformReporter.spreporter",
+ "path": "SystemProfiler/SPPlatformReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPPlatformReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPPowerReporter.spreporter",
+ "path": "SystemProfiler/SPPowerReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPPowerReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "SPPrefPaneReporter.spreporter",
+ "path": "SystemProfiler/SPPrefPaneReporter.spreporter",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "SystemProfiler/SPPrefPaneReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "SPPrintersReporter.spreporter",
+ "path": "SystemProfiler/SPPrintersReporter.spreporter",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "SystemProfiler/SPPrintersReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPPrintersSoftwareReporter.spreporter",
+ "path": "SystemProfiler/SPPrintersSoftwareReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPPrintersSoftwareReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPSASReporter.spreporter",
+ "path": "SystemProfiler/SPSASReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPSASReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "SPSerialATAReporter.spreporter",
+ "path": "SystemProfiler/SPSerialATAReporter.spreporter",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "SystemProfiler/SPSerialATAReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "SPSPIReporter.spreporter",
+ "path": "SystemProfiler/SPSPIReporter.spreporter",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "SystemProfiler/SPSPIReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "SPStartupItemReporter.spreporter",
+ "path": "SystemProfiler/SPStartupItemReporter.spreporter",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "SystemProfiler/SPStartupItemReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPStorageReporter.spreporter",
+ "path": "SystemProfiler/SPStorageReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPStorageReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "SPSyncReporter.spreporter",
+ "path": "SystemProfiler/SPSyncReporter.spreporter",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "SystemProfiler/SPSyncReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "SPThunderboltReporter.spreporter",
+ "path": "SystemProfiler/SPThunderboltReporter.spreporter",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "SystemProfiler/SPThunderboltReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "SPUniversalAccessReporter.spreporter",
+ "path": "SystemProfiler/SPUniversalAccessReporter.spreporter",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "SystemProfiler/SPUniversalAccessReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 40,
+ "name": "SPUSBReporter.spreporter",
+ "path": "SystemProfiler/SPUSBReporter.spreporter",
+ "children": [
+ {
+ "value": 40,
+ "name": "Contents",
+ "path": "SystemProfiler/SPUSBReporter.spreporter/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "SPWWANReporter.spreporter",
+ "path": "SystemProfiler/SPWWANReporter.spreporter",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "SystemProfiler/SPWWANReporter.spreporter/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 9608,
+ "name": "Tcl",
+ "path": "Tcl",
+ "children": [
+ {
+ "value": 3568,
+ "name": "8.4",
+ "path": "Tcl/8.4",
+ "children": [
+ {
+ "value": 156,
+ "name": "expect5.45",
+ "path": "Tcl/8.4/expect5.45"
+ },
+ {
+ "value": 28,
+ "name": "Ffidl0.6.1",
+ "path": "Tcl/8.4/Ffidl0.6.1"
+ },
+ {
+ "value": 784,
+ "name": "Img1.4",
+ "path": "Tcl/8.4/Img1.4"
+ },
+ {
+ "value": 88,
+ "name": "itcl3.4",
+ "path": "Tcl/8.4/itcl3.4"
+ },
+ {
+ "value": 24,
+ "name": "itk3.4",
+ "path": "Tcl/8.4/itk3.4"
+ },
+ {
+ "value": 28,
+ "name": "Memchan2.2.1",
+ "path": "Tcl/8.4/Memchan2.2.1"
+ },
+ {
+ "value": 228,
+ "name": "Mk4tcl2.4.9.7",
+ "path": "Tcl/8.4/Mk4tcl2.4.9.7"
+ },
+ {
+ "value": 96,
+ "name": "QuickTimeTcl3.2",
+ "path": "Tcl/8.4/QuickTimeTcl3.2"
+ },
+ {
+ "value": 196,
+ "name": "snack2.2",
+ "path": "Tcl/8.4/snack2.2"
+ },
+ {
+ "value": 24,
+ "name": "tbcload1.7",
+ "path": "Tcl/8.4/tbcload1.7"
+ },
+ {
+ "value": 76,
+ "name": "tclAE2.0.5",
+ "path": "Tcl/8.4/tclAE2.0.5"
+ },
+ {
+ "value": 20,
+ "name": "Tclapplescript1.0",
+ "path": "Tcl/8.4/Tclapplescript1.0"
+ },
+ {
+ "value": 56,
+ "name": "Tcldom2.6",
+ "path": "Tcl/8.4/Tcldom2.6"
+ },
+ {
+ "value": 56,
+ "name": "tcldomxml2.6",
+ "path": "Tcl/8.4/tcldomxml2.6"
+ },
+ {
+ "value": 108,
+ "name": "Tclexpat2.6",
+ "path": "Tcl/8.4/Tclexpat2.6"
+ },
+ {
+ "value": 16,
+ "name": "Tclresource1.1.2",
+ "path": "Tcl/8.4/Tclresource1.1.2"
+ },
+ {
+ "value": 288,
+ "name": "tclx8.4",
+ "path": "Tcl/8.4/tclx8.4"
+ },
+ {
+ "value": 60,
+ "name": "Tclxml2.6",
+ "path": "Tcl/8.4/Tclxml2.6"
+ },
+ {
+ "value": 20,
+ "name": "Tclxslt2.6",
+ "path": "Tcl/8.4/Tclxslt2.6"
+ },
+ {
+ "value": 396,
+ "name": "tdom0.8.3",
+ "path": "Tcl/8.4/tdom0.8.3"
+ },
+ {
+ "value": 80,
+ "name": "thread2.6.6",
+ "path": "Tcl/8.4/thread2.6.6"
+ },
+ {
+ "value": 68,
+ "name": "Tktable2.10",
+ "path": "Tcl/8.4/Tktable2.10"
+ },
+ {
+ "value": 36,
+ "name": "tls1.6.1",
+ "path": "Tcl/8.4/tls1.6.1"
+ },
+ {
+ "value": 32,
+ "name": "tnc0.3.0",
+ "path": "Tcl/8.4/tnc0.3.0"
+ },
+ {
+ "value": 180,
+ "name": "treectrl2.2.10",
+ "path": "Tcl/8.4/treectrl2.2.10"
+ },
+ {
+ "value": 120,
+ "name": "Trf2.1.4",
+ "path": "Tcl/8.4/Trf2.1.4"
+ },
+ {
+ "value": 108,
+ "name": "vfs1.4.1",
+ "path": "Tcl/8.4/vfs1.4.1"
+ },
+ {
+ "value": 196,
+ "name": "xotcl1.6.6",
+ "path": "Tcl/8.4/xotcl1.6.6"
+ }
+ ]
+ },
+ {
+ "value": 3384,
+ "name": "8.5",
+ "path": "Tcl/8.5",
+ "children": [
+ {
+ "value": 156,
+ "name": "expect5.45",
+ "path": "Tcl/8.5/expect5.45"
+ },
+ {
+ "value": 32,
+ "name": "Ffidl0.6.1",
+ "path": "Tcl/8.5/Ffidl0.6.1"
+ },
+ {
+ "value": 972,
+ "name": "Img1.4",
+ "path": "Tcl/8.5/Img1.4"
+ },
+ {
+ "value": 88,
+ "name": "itcl3.4",
+ "path": "Tcl/8.5/itcl3.4"
+ },
+ {
+ "value": 44,
+ "name": "itk3.4",
+ "path": "Tcl/8.5/itk3.4"
+ },
+ {
+ "value": 32,
+ "name": "Memchan2.2.1",
+ "path": "Tcl/8.5/Memchan2.2.1"
+ },
+ {
+ "value": 228,
+ "name": "Mk4tcl2.4.9.7",
+ "path": "Tcl/8.5/Mk4tcl2.4.9.7"
+ },
+ {
+ "value": 24,
+ "name": "tbcload1.7",
+ "path": "Tcl/8.5/tbcload1.7"
+ },
+ {
+ "value": 76,
+ "name": "tclAE2.0.5",
+ "path": "Tcl/8.5/tclAE2.0.5"
+ },
+ {
+ "value": 56,
+ "name": "Tcldom2.6",
+ "path": "Tcl/8.5/Tcldom2.6"
+ },
+ {
+ "value": 56,
+ "name": "tcldomxml2.6",
+ "path": "Tcl/8.5/tcldomxml2.6"
+ },
+ {
+ "value": 108,
+ "name": "Tclexpat2.6",
+ "path": "Tcl/8.5/Tclexpat2.6"
+ },
+ {
+ "value": 336,
+ "name": "tclx8.4",
+ "path": "Tcl/8.5/tclx8.4"
+ },
+ {
+ "value": 60,
+ "name": "Tclxml2.6",
+ "path": "Tcl/8.5/Tclxml2.6"
+ },
+ {
+ "value": 20,
+ "name": "Tclxslt2.6",
+ "path": "Tcl/8.5/Tclxslt2.6"
+ },
+ {
+ "value": 400,
+ "name": "tdom0.8.3",
+ "path": "Tcl/8.5/tdom0.8.3"
+ },
+ {
+ "value": 80,
+ "name": "thread2.6.6",
+ "path": "Tcl/8.5/thread2.6.6"
+ },
+ {
+ "value": 124,
+ "name": "Tktable2.10",
+ "path": "Tcl/8.5/Tktable2.10"
+ },
+ {
+ "value": 36,
+ "name": "tls1.6.1",
+ "path": "Tcl/8.5/tls1.6.1"
+ },
+ {
+ "value": 32,
+ "name": "tnc0.3.0",
+ "path": "Tcl/8.5/tnc0.3.0"
+ },
+ {
+ "value": 120,
+ "name": "Trf2.1.4",
+ "path": "Tcl/8.5/Trf2.1.4"
+ },
+ {
+ "value": 108,
+ "name": "vfs1.4.1",
+ "path": "Tcl/8.5/vfs1.4.1"
+ },
+ {
+ "value": 196,
+ "name": "xotcl1.6.6",
+ "path": "Tcl/8.5/xotcl1.6.6"
+ }
+ ]
+ },
+ {
+ "value": 80,
+ "name": "bin",
+ "path": "Tcl/bin"
+ },
+ {
+ "value": 224,
+ "name": "bwidget1.9.1",
+ "path": "Tcl/bwidget1.9.1",
+ "children": [
+ {
+ "value": 100,
+ "name": "images",
+ "path": "Tcl/bwidget1.9.1/images"
+ },
+ {
+ "value": 0,
+ "name": "lang",
+ "path": "Tcl/bwidget1.9.1/lang"
+ }
+ ]
+ },
+ {
+ "value": 324,
+ "name": "iwidgets4.0.2",
+ "path": "Tcl/iwidgets4.0.2",
+ "children": [
+ {
+ "value": 324,
+ "name": "scripts",
+ "path": "Tcl/iwidgets4.0.2/scripts"
+ }
+ ]
+ },
+ {
+ "value": 40,
+ "name": "sqlite3",
+ "path": "Tcl/sqlite3"
+ },
+ {
+ "value": 1456,
+ "name": "tcllib1.12",
+ "path": "Tcl/tcllib1.12",
+ "children": [
+ {
+ "value": 8,
+ "name": "aes",
+ "path": "Tcl/tcllib1.12/aes"
+ },
+ {
+ "value": 16,
+ "name": "amazon-s3",
+ "path": "Tcl/tcllib1.12/amazon-s3"
+ },
+ {
+ "value": 12,
+ "name": "asn",
+ "path": "Tcl/tcllib1.12/asn"
+ },
+ {
+ "value": 0,
+ "name": "base32",
+ "path": "Tcl/tcllib1.12/base32"
+ },
+ {
+ "value": 0,
+ "name": "base64",
+ "path": "Tcl/tcllib1.12/base64"
+ },
+ {
+ "value": 8,
+ "name": "bee",
+ "path": "Tcl/tcllib1.12/bee"
+ },
+ {
+ "value": 16,
+ "name": "bench",
+ "path": "Tcl/tcllib1.12/bench"
+ },
+ {
+ "value": 8,
+ "name": "bibtex",
+ "path": "Tcl/tcllib1.12/bibtex"
+ },
+ {
+ "value": 12,
+ "name": "blowfish",
+ "path": "Tcl/tcllib1.12/blowfish"
+ },
+ {
+ "value": 0,
+ "name": "cache",
+ "path": "Tcl/tcllib1.12/cache"
+ },
+ {
+ "value": 8,
+ "name": "cmdline",
+ "path": "Tcl/tcllib1.12/cmdline"
+ },
+ {
+ "value": 16,
+ "name": "comm",
+ "path": "Tcl/tcllib1.12/comm"
+ },
+ {
+ "value": 0,
+ "name": "control",
+ "path": "Tcl/tcllib1.12/control"
+ },
+ {
+ "value": 0,
+ "name": "coroutine",
+ "path": "Tcl/tcllib1.12/coroutine"
+ },
+ {
+ "value": 12,
+ "name": "counter",
+ "path": "Tcl/tcllib1.12/counter"
+ },
+ {
+ "value": 8,
+ "name": "crc",
+ "path": "Tcl/tcllib1.12/crc"
+ },
+ {
+ "value": 8,
+ "name": "csv",
+ "path": "Tcl/tcllib1.12/csv"
+ },
+ {
+ "value": 24,
+ "name": "des",
+ "path": "Tcl/tcllib1.12/des"
+ },
+ {
+ "value": 36,
+ "name": "dns",
+ "path": "Tcl/tcllib1.12/dns"
+ },
+ {
+ "value": 0,
+ "name": "docstrip",
+ "path": "Tcl/tcllib1.12/docstrip"
+ },
+ {
+ "value": 44,
+ "name": "doctools",
+ "path": "Tcl/tcllib1.12/doctools"
+ },
+ {
+ "value": 8,
+ "name": "doctools2base",
+ "path": "Tcl/tcllib1.12/doctools2base"
+ },
+ {
+ "value": 12,
+ "name": "doctools2idx",
+ "path": "Tcl/tcllib1.12/doctools2idx"
+ },
+ {
+ "value": 12,
+ "name": "doctools2toc",
+ "path": "Tcl/tcllib1.12/doctools2toc"
+ },
+ {
+ "value": 36,
+ "name": "fileutil",
+ "path": "Tcl/tcllib1.12/fileutil"
+ },
+ {
+ "value": 16,
+ "name": "ftp",
+ "path": "Tcl/tcllib1.12/ftp"
+ },
+ {
+ "value": 16,
+ "name": "ftpd",
+ "path": "Tcl/tcllib1.12/ftpd"
+ },
+ {
+ "value": 84,
+ "name": "fumagic",
+ "path": "Tcl/tcllib1.12/fumagic"
+ },
+ {
+ "value": 0,
+ "name": "gpx",
+ "path": "Tcl/tcllib1.12/gpx"
+ },
+ {
+ "value": 20,
+ "name": "grammar_fa",
+ "path": "Tcl/tcllib1.12/grammar_fa"
+ },
+ {
+ "value": 8,
+ "name": "grammar_me",
+ "path": "Tcl/tcllib1.12/grammar_me"
+ },
+ {
+ "value": 8,
+ "name": "grammar_peg",
+ "path": "Tcl/tcllib1.12/grammar_peg"
+ },
+ {
+ "value": 12,
+ "name": "html",
+ "path": "Tcl/tcllib1.12/html"
+ },
+ {
+ "value": 12,
+ "name": "htmlparse",
+ "path": "Tcl/tcllib1.12/htmlparse"
+ },
+ {
+ "value": 8,
+ "name": "http",
+ "path": "Tcl/tcllib1.12/http"
+ },
+ {
+ "value": 0,
+ "name": "ident",
+ "path": "Tcl/tcllib1.12/ident"
+ },
+ {
+ "value": 12,
+ "name": "imap4",
+ "path": "Tcl/tcllib1.12/imap4"
+ },
+ {
+ "value": 0,
+ "name": "inifile",
+ "path": "Tcl/tcllib1.12/inifile"
+ },
+ {
+ "value": 0,
+ "name": "interp",
+ "path": "Tcl/tcllib1.12/interp"
+ },
+ {
+ "value": 0,
+ "name": "irc",
+ "path": "Tcl/tcllib1.12/irc"
+ },
+ {
+ "value": 0,
+ "name": "javascript",
+ "path": "Tcl/tcllib1.12/javascript"
+ },
+ {
+ "value": 12,
+ "name": "jpeg",
+ "path": "Tcl/tcllib1.12/jpeg"
+ },
+ {
+ "value": 0,
+ "name": "json",
+ "path": "Tcl/tcllib1.12/json"
+ },
+ {
+ "value": 28,
+ "name": "ldap",
+ "path": "Tcl/tcllib1.12/ldap"
+ },
+ {
+ "value": 20,
+ "name": "log",
+ "path": "Tcl/tcllib1.12/log"
+ },
+ {
+ "value": 0,
+ "name": "map",
+ "path": "Tcl/tcllib1.12/map"
+ },
+ {
+ "value": 12,
+ "name": "mapproj",
+ "path": "Tcl/tcllib1.12/mapproj"
+ },
+ {
+ "value": 140,
+ "name": "math",
+ "path": "Tcl/tcllib1.12/math"
+ },
+ {
+ "value": 8,
+ "name": "md4",
+ "path": "Tcl/tcllib1.12/md4"
+ },
+ {
+ "value": 16,
+ "name": "md5",
+ "path": "Tcl/tcllib1.12/md5"
+ },
+ {
+ "value": 0,
+ "name": "md5crypt",
+ "path": "Tcl/tcllib1.12/md5crypt"
+ },
+ {
+ "value": 36,
+ "name": "mime",
+ "path": "Tcl/tcllib1.12/mime"
+ },
+ {
+ "value": 0,
+ "name": "multiplexer",
+ "path": "Tcl/tcllib1.12/multiplexer"
+ },
+ {
+ "value": 0,
+ "name": "namespacex",
+ "path": "Tcl/tcllib1.12/namespacex"
+ },
+ {
+ "value": 12,
+ "name": "ncgi",
+ "path": "Tcl/tcllib1.12/ncgi"
+ },
+ {
+ "value": 0,
+ "name": "nmea",
+ "path": "Tcl/tcllib1.12/nmea"
+ },
+ {
+ "value": 8,
+ "name": "nns",
+ "path": "Tcl/tcllib1.12/nns"
+ },
+ {
+ "value": 8,
+ "name": "nntp",
+ "path": "Tcl/tcllib1.12/nntp"
+ },
+ {
+ "value": 0,
+ "name": "ntp",
+ "path": "Tcl/tcllib1.12/ntp"
+ },
+ {
+ "value": 8,
+ "name": "otp",
+ "path": "Tcl/tcllib1.12/otp"
+ },
+ {
+ "value": 48,
+ "name": "page",
+ "path": "Tcl/tcllib1.12/page"
+ },
+ {
+ "value": 0,
+ "name": "pluginmgr",
+ "path": "Tcl/tcllib1.12/pluginmgr"
+ },
+ {
+ "value": 0,
+ "name": "png",
+ "path": "Tcl/tcllib1.12/png"
+ },
+ {
+ "value": 8,
+ "name": "pop3",
+ "path": "Tcl/tcllib1.12/pop3"
+ },
+ {
+ "value": 8,
+ "name": "pop3d",
+ "path": "Tcl/tcllib1.12/pop3d"
+ },
+ {
+ "value": 8,
+ "name": "profiler",
+ "path": "Tcl/tcllib1.12/profiler"
+ },
+ {
+ "value": 72,
+ "name": "pt",
+ "path": "Tcl/tcllib1.12/pt"
+ },
+ {
+ "value": 0,
+ "name": "rc4",
+ "path": "Tcl/tcllib1.12/rc4"
+ },
+ {
+ "value": 0,
+ "name": "rcs",
+ "path": "Tcl/tcllib1.12/rcs"
+ },
+ {
+ "value": 12,
+ "name": "report",
+ "path": "Tcl/tcllib1.12/report"
+ },
+ {
+ "value": 8,
+ "name": "rest",
+ "path": "Tcl/tcllib1.12/rest"
+ },
+ {
+ "value": 16,
+ "name": "ripemd",
+ "path": "Tcl/tcllib1.12/ripemd"
+ },
+ {
+ "value": 8,
+ "name": "sasl",
+ "path": "Tcl/tcllib1.12/sasl"
+ },
+ {
+ "value": 24,
+ "name": "sha1",
+ "path": "Tcl/tcllib1.12/sha1"
+ },
+ {
+ "value": 0,
+ "name": "simulation",
+ "path": "Tcl/tcllib1.12/simulation"
+ },
+ {
+ "value": 8,
+ "name": "smtpd",
+ "path": "Tcl/tcllib1.12/smtpd"
+ },
+ {
+ "value": 84,
+ "name": "snit",
+ "path": "Tcl/tcllib1.12/snit"
+ },
+ {
+ "value": 0,
+ "name": "soundex",
+ "path": "Tcl/tcllib1.12/soundex"
+ },
+ {
+ "value": 12,
+ "name": "stooop",
+ "path": "Tcl/tcllib1.12/stooop"
+ },
+ {
+ "value": 48,
+ "name": "stringprep",
+ "path": "Tcl/tcllib1.12/stringprep"
+ },
+ {
+ "value": 156,
+ "name": "struct",
+ "path": "Tcl/tcllib1.12/struct"
+ },
+ {
+ "value": 0,
+ "name": "tar",
+ "path": "Tcl/tcllib1.12/tar"
+ },
+ {
+ "value": 24,
+ "name": "tepam",
+ "path": "Tcl/tcllib1.12/tepam"
+ },
+ {
+ "value": 0,
+ "name": "term",
+ "path": "Tcl/tcllib1.12/term"
+ },
+ {
+ "value": 52,
+ "name": "textutil",
+ "path": "Tcl/tcllib1.12/textutil"
+ },
+ {
+ "value": 0,
+ "name": "tie",
+ "path": "Tcl/tcllib1.12/tie"
+ },
+ {
+ "value": 8,
+ "name": "tiff",
+ "path": "Tcl/tcllib1.12/tiff"
+ },
+ {
+ "value": 0,
+ "name": "transfer",
+ "path": "Tcl/tcllib1.12/transfer"
+ },
+ {
+ "value": 0,
+ "name": "treeql",
+ "path": "Tcl/tcllib1.12/treeql"
+ },
+ {
+ "value": 0,
+ "name": "uev",
+ "path": "Tcl/tcllib1.12/uev"
+ },
+ {
+ "value": 8,
+ "name": "units",
+ "path": "Tcl/tcllib1.12/units"
+ },
+ {
+ "value": 8,
+ "name": "uri",
+ "path": "Tcl/tcllib1.12/uri"
+ },
+ {
+ "value": 0,
+ "name": "uuid",
+ "path": "Tcl/tcllib1.12/uuid"
+ },
+ {
+ "value": 0,
+ "name": "virtchannel_base",
+ "path": "Tcl/tcllib1.12/virtchannel_base"
+ },
+ {
+ "value": 0,
+ "name": "virtchannel_core",
+ "path": "Tcl/tcllib1.12/virtchannel_core"
+ },
+ {
+ "value": 0,
+ "name": "virtchannel_transform",
+ "path": "Tcl/tcllib1.12/virtchannel_transform"
+ },
+ {
+ "value": 16,
+ "name": "wip",
+ "path": "Tcl/tcllib1.12/wip"
+ },
+ {
+ "value": 12,
+ "name": "yaml",
+ "path": "Tcl/tcllib1.12/yaml"
+ }
+ ]
+ },
+ {
+ "value": 60,
+ "name": "tclsoap1.6.8",
+ "path": "Tcl/tclsoap1.6.8",
+ "children": [
+ {
+ "value": 0,
+ "name": "interop",
+ "path": "Tcl/tclsoap1.6.8/interop"
+ }
+ ]
+ },
+ {
+ "value": 56,
+ "name": "tkcon2.6",
+ "path": "Tcl/tkcon2.6"
+ },
+ {
+ "value": 412,
+ "name": "tklib0.5",
+ "path": "Tcl/tklib0.5",
+ "children": [
+ {
+ "value": 0,
+ "name": "autoscroll",
+ "path": "Tcl/tklib0.5/autoscroll"
+ },
+ {
+ "value": 8,
+ "name": "canvas",
+ "path": "Tcl/tklib0.5/canvas"
+ },
+ {
+ "value": 8,
+ "name": "chatwidget",
+ "path": "Tcl/tklib0.5/chatwidget"
+ },
+ {
+ "value": 28,
+ "name": "controlwidget",
+ "path": "Tcl/tklib0.5/controlwidget"
+ },
+ {
+ "value": 0,
+ "name": "crosshair",
+ "path": "Tcl/tklib0.5/crosshair"
+ },
+ {
+ "value": 8,
+ "name": "ctext",
+ "path": "Tcl/tklib0.5/ctext"
+ },
+ {
+ "value": 0,
+ "name": "cursor",
+ "path": "Tcl/tklib0.5/cursor"
+ },
+ {
+ "value": 0,
+ "name": "datefield",
+ "path": "Tcl/tklib0.5/datefield"
+ },
+ {
+ "value": 24,
+ "name": "diagrams",
+ "path": "Tcl/tklib0.5/diagrams"
+ },
+ {
+ "value": 0,
+ "name": "getstring",
+ "path": "Tcl/tklib0.5/getstring"
+ },
+ {
+ "value": 0,
+ "name": "history",
+ "path": "Tcl/tklib0.5/history"
+ },
+ {
+ "value": 24,
+ "name": "ico",
+ "path": "Tcl/tklib0.5/ico"
+ },
+ {
+ "value": 8,
+ "name": "ipentry",
+ "path": "Tcl/tklib0.5/ipentry"
+ },
+ {
+ "value": 16,
+ "name": "khim",
+ "path": "Tcl/tklib0.5/khim"
+ },
+ {
+ "value": 20,
+ "name": "menubar",
+ "path": "Tcl/tklib0.5/menubar"
+ },
+ {
+ "value": 16,
+ "name": "ntext",
+ "path": "Tcl/tklib0.5/ntext"
+ },
+ {
+ "value": 48,
+ "name": "plotchart",
+ "path": "Tcl/tklib0.5/plotchart"
+ },
+ {
+ "value": 8,
+ "name": "style",
+ "path": "Tcl/tklib0.5/style"
+ },
+ {
+ "value": 0,
+ "name": "swaplist",
+ "path": "Tcl/tklib0.5/swaplist"
+ },
+ {
+ "value": 148,
+ "name": "tablelist",
+ "path": "Tcl/tklib0.5/tablelist"
+ },
+ {
+ "value": 8,
+ "name": "tkpiechart",
+ "path": "Tcl/tklib0.5/tkpiechart"
+ },
+ {
+ "value": 8,
+ "name": "tooltip",
+ "path": "Tcl/tklib0.5/tooltip"
+ },
+ {
+ "value": 32,
+ "name": "widget",
+ "path": "Tcl/tklib0.5/widget"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 80,
+ "name": "TextEncodings",
+ "path": "TextEncodings",
+ "children": [
+ {
+ "value": 0,
+ "name": "ArabicEncodings.bundle",
+ "path": "TextEncodings/ArabicEncodings.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "TextEncodings/ArabicEncodings.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "CentralEuropean Encodings.bundle",
+ "path": "TextEncodings/CentralEuropean Encodings.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "TextEncodings/CentralEuropean Encodings.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "ChineseEncodings Supplement.bundle",
+ "path": "TextEncodings/ChineseEncodings Supplement.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "TextEncodings/ChineseEncodings Supplement.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "ChineseEncodings.bundle",
+ "path": "TextEncodings/ChineseEncodings.bundle",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "TextEncodings/ChineseEncodings.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "CoreEncodings.bundle",
+ "path": "TextEncodings/CoreEncodings.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "TextEncodings/CoreEncodings.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "CyrillicEncodings.bundle",
+ "path": "TextEncodings/CyrillicEncodings.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "TextEncodings/CyrillicEncodings.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "GreekEncodings.bundle",
+ "path": "TextEncodings/GreekEncodings.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "TextEncodings/GreekEncodings.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "HebrewEncodings.bundle",
+ "path": "TextEncodings/HebrewEncodings.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "TextEncodings/HebrewEncodings.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "IndicEncodings.bundle",
+ "path": "TextEncodings/IndicEncodings.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "TextEncodings/IndicEncodings.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "JapaneseEncodings.bundle",
+ "path": "TextEncodings/JapaneseEncodings.bundle",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "TextEncodings/JapaneseEncodings.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "KoreanEncodings.bundle",
+ "path": "TextEncodings/KoreanEncodings.bundle",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "TextEncodings/KoreanEncodings.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "SymbolEncodings.bundle",
+ "path": "TextEncodings/SymbolEncodings.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "TextEncodings/SymbolEncodings.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "ThaiEncodings.bundle",
+ "path": "TextEncodings/ThaiEncodings.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "TextEncodings/ThaiEncodings.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "TurkishEncodings.bundle",
+ "path": "TextEncodings/TurkishEncodings.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "TextEncodings/TurkishEncodings.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "UnicodeEncodings.bundle",
+ "path": "TextEncodings/UnicodeEncodings.bundle",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "TextEncodings/UnicodeEncodings.bundle/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "WesternLanguage Encodings.bundle",
+ "path": "TextEncodings/WesternLanguage Encodings.bundle",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "TextEncodings/WesternLanguage Encodings.bundle/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 600,
+ "name": "UserEventPlugins",
+ "path": "UserEventPlugins",
+ "children": [
+ {
+ "value": 60,
+ "name": "ACRRDaemon.plugin",
+ "path": "UserEventPlugins/ACRRDaemon.plugin",
+ "children": [
+ {
+ "value": 60,
+ "name": "Contents",
+ "path": "UserEventPlugins/ACRRDaemon.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "AirPortUserAgent.plugin",
+ "path": "UserEventPlugins/AirPortUserAgent.plugin",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "UserEventPlugins/AirPortUserAgent.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "alfUIplugin.plugin",
+ "path": "UserEventPlugins/alfUIplugin.plugin",
+ "children": [
+ {
+ "value": 0,
+ "name": "Contents",
+ "path": "UserEventPlugins/alfUIplugin.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "AppleHIDMouseAgent.plugin",
+ "path": "UserEventPlugins/AppleHIDMouseAgent.plugin",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "UserEventPlugins/AppleHIDMouseAgent.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "AssistantUEA.plugin",
+ "path": "UserEventPlugins/AssistantUEA.plugin",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "UserEventPlugins/AssistantUEA.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "AutoTimeZone.plugin",
+ "path": "UserEventPlugins/AutoTimeZone.plugin",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "UserEventPlugins/AutoTimeZone.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "BluetoothUserAgent-Plugin.plugin",
+ "path": "UserEventPlugins/BluetoothUserAgent-Plugin.plugin",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "UserEventPlugins/BluetoothUserAgent-Plugin.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "BonjourEvents.plugin",
+ "path": "UserEventPlugins/BonjourEvents.plugin",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "UserEventPlugins/BonjourEvents.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "BTMMPortInUseAgent.plugin",
+ "path": "UserEventPlugins/BTMMPortInUseAgent.plugin",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "UserEventPlugins/BTMMPortInUseAgent.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "CalendarMonitor.plugin",
+ "path": "UserEventPlugins/CalendarMonitor.plugin",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "UserEventPlugins/CalendarMonitor.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 88,
+ "name": "CaptiveSystemAgent.plugin",
+ "path": "UserEventPlugins/CaptiveSystemAgent.plugin",
+ "children": [
+ {
+ "value": 88,
+ "name": "Contents",
+ "path": "UserEventPlugins/CaptiveSystemAgent.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "CaptiveUserAgent.plugin",
+ "path": "UserEventPlugins/CaptiveUserAgent.plugin",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "UserEventPlugins/CaptiveUserAgent.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "com.apple.bonjour.plugin",
+ "path": "UserEventPlugins/com.apple.bonjour.plugin",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.bonjour.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "com.apple.cfnotification.plugin",
+ "path": "UserEventPlugins/com.apple.cfnotification.plugin",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.cfnotification.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "com.apple.diskarbitration.plugin",
+ "path": "UserEventPlugins/com.apple.diskarbitration.plugin",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.diskarbitration.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "com.apple.dispatch.vfs.plugin",
+ "path": "UserEventPlugins/com.apple.dispatch.vfs.plugin",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.dispatch.vfs.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "com.apple.fsevents.matching.plugin",
+ "path": "UserEventPlugins/com.apple.fsevents.matching.plugin",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.fsevents.matching.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "com.apple.iokit.matching.plugin",
+ "path": "UserEventPlugins/com.apple.iokit.matching.plugin",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.iokit.matching.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "com.apple.KeyStore.plugin",
+ "path": "UserEventPlugins/com.apple.KeyStore.plugin",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.KeyStore.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "com.apple.launchd.helper.plugin",
+ "path": "UserEventPlugins/com.apple.launchd.helper.plugin",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.launchd.helper.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "com.apple.locationd.events.plugin",
+ "path": "UserEventPlugins/com.apple.locationd.events.plugin",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.locationd.events.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "com.apple.notifyd.matching.plugin",
+ "path": "UserEventPlugins/com.apple.notifyd.matching.plugin",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.notifyd.matching.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "com.apple.opendirectory.matching.plugin",
+ "path": "UserEventPlugins/com.apple.opendirectory.matching.plugin",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.opendirectory.matching.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "com.apple.rcdevent.matching.plugin",
+ "path": "UserEventPlugins/com.apple.rcdevent.matching.plugin",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.rcdevent.matching.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "com.apple.reachability.plugin",
+ "path": "UserEventPlugins/com.apple.reachability.plugin",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.reachability.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "com.apple.systemconfiguration.plugin",
+ "path": "UserEventPlugins/com.apple.systemconfiguration.plugin",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.systemconfiguration.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 44,
+ "name": "com.apple.telemetry.plugin",
+ "path": "UserEventPlugins/com.apple.telemetry.plugin",
+ "children": [
+ {
+ "value": 44,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.telemetry.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 24,
+ "name": "com.apple.time.plugin",
+ "path": "UserEventPlugins/com.apple.time.plugin",
+ "children": [
+ {
+ "value": 24,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.time.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "com.apple.TimeMachine.plugin",
+ "path": "UserEventPlugins/com.apple.TimeMachine.plugin",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.TimeMachine.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 20,
+ "name": "com.apple.TimeMachine.System.plugin",
+ "path": "UserEventPlugins/com.apple.TimeMachine.System.plugin",
+ "children": [
+ {
+ "value": 20,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.TimeMachine.System.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "com.apple.universalaccess.events.plugin",
+ "path": "UserEventPlugins/com.apple.universalaccess.events.plugin",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.universalaccess.events.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "com.apple.usernotificationcenter.matching.plugin",
+ "path": "UserEventPlugins/com.apple.usernotificationcenter.matching.plugin",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.usernotificationcenter.matching.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "com.apple.WorkstationService.plugin",
+ "path": "UserEventPlugins/com.apple.WorkstationService.plugin",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "UserEventPlugins/com.apple.WorkstationService.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 28,
+ "name": "EAPOLMonitor.plugin",
+ "path": "UserEventPlugins/EAPOLMonitor.plugin",
+ "children": [
+ {
+ "value": 28,
+ "name": "Contents",
+ "path": "UserEventPlugins/EAPOLMonitor.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 8,
+ "name": "GSSNotificationForwarder.plugin",
+ "path": "UserEventPlugins/GSSNotificationForwarder.plugin",
+ "children": [
+ {
+ "value": 8,
+ "name": "Contents",
+ "path": "UserEventPlugins/GSSNotificationForwarder.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "LocationMenu.plugin",
+ "path": "UserEventPlugins/LocationMenu.plugin",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "UserEventPlugins/LocationMenu.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 12,
+ "name": "PrinterMonitor.plugin",
+ "path": "UserEventPlugins/PrinterMonitor.plugin",
+ "children": [
+ {
+ "value": 12,
+ "name": "Contents",
+ "path": "UserEventPlugins/PrinterMonitor.plugin/Contents"
+ }
+ ]
+ },
+ {
+ "value": 16,
+ "name": "SCMonitor.plugin",
+ "path": "UserEventPlugins/SCMonitor.plugin",
+ "children": [
+ {
+ "value": 16,
+ "name": "Contents",
+ "path": "UserEventPlugins/SCMonitor.plugin/Contents"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 536,
+ "name": "Video",
+ "path": "Video",
+ "children": [
+ {
+ "value": 536,
+ "name": "Plug-Ins",
+ "path": "Video/Plug-Ins",
+ "children": [
+ {
+ "value": 536,
+ "name": "AppleProResCodec.bundle",
+ "path": "Video/Plug-Ins/AppleProResCodec.bundle"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "value": 272,
+ "name": "WidgetResources",
+ "path": "WidgetResources",
+ "children": [
+ {
+ "value": 16,
+ "name": ".parsers",
+ "path": "WidgetResources/.parsers"
+ },
+ {
+ "value": 172,
+ "name": "AppleClasses",
+ "path": "WidgetResources/AppleClasses",
+ "children": [
+ {
+ "value": 156,
+ "name": "Images",
+ "path": "WidgetResources/AppleClasses/Images"
+ }
+ ]
+ },
+ {
+ "value": 0,
+ "name": "AppleParser",
+ "path": "WidgetResources/AppleParser"
+ },
+ {
+ "value": 48,
+ "name": "button",
+ "path": "WidgetResources/button"
+ },
+ {
+ "value": 32,
+ "name": "ibutton",
+ "path": "WidgetResources/ibutton"
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/test/fixtures/weibo.json b/test/fixtures/weibo.json
new file mode 100644
index 000000000..dde830258
--- /dev/null
+++ b/test/fixtures/weibo.json
@@ -0,0 +1,17974 @@
+[
+ [{
+ "name": "",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "Camel3942",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "Camel3942",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "Christinez",
+ "symbolSize": 13,
+ "draggable": "False",
+ "value": 7,
+ "category": "Christinez",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "JoannaBlue",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "JoannaBlue",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "Michael-Cheung-",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "Michael-Cheung-",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "NKmilitaryStudies",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "NKmilitaryStudies",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "Syfannn",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "Syfannn",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "Tiger公子",
+ "symbolSize": 13,
+ "draggable": "False",
+ "value": 7,
+ "category": "Tiger公子",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "VeryE",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "VeryE",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "X_iao樓",
+ "symbolSize": 12,
+ "draggable": "False",
+ "value": 6,
+ "category": "X_iao樓",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "Xiao-斌杰",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "Xiao-斌杰",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "_nearly转1",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "_nearly转1",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "lfx160219",
+ "symbolSize": 14,
+ "draggable": "False",
+ "value": 8,
+ "category": "lfx160219",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "offfarmworkes2",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "offfarmworkes2",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "sazen",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "sazen",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "stephen1999c",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "stephen1999c",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "w新晴w",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "w新晴w",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "xHao晓灏",
+ "symbolSize": 8,
+ "draggable": "False",
+ "value": 2,
+ "category": "xHao晓灏",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "上局沪段_沪",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "上局沪段_沪",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "中出宪政柏拉图",
+ "symbolSize": 12,
+ "draggable": "False",
+ "value": 5,
+ "category": "中出宪政柏拉图",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "中华龙会",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "中华龙会",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "五十岚空芔",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "五十岚空芔",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "京城吃货日记",
+ "symbolSize": 14,
+ "draggable": "False",
+ "value": 9,
+ "category": "京城吃货日记",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "人形高达奈叶",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "人形高达奈叶",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "优质羊毛",
+ "symbolSize": 8,
+ "draggable": "False",
+ "value": 2,
+ "category": "优质羊毛",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "加菲杰克",
+ "symbolSize": 12,
+ "draggable": "False",
+ "value": 6,
+ "category": "加菲杰克",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "北京金戈戈",
+ "symbolSize": 11,
+ "draggable": "False",
+ "value": 4,
+ "category": "北京金戈戈",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "南迦巴瓦的晨曦",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "南迦巴瓦的晨曦",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "吉四六",
+ "symbolSize": 12,
+ "draggable": "False",
+ "value": 6,
+ "category": "吉四六",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "喷嚏网铂程",
+ "symbolSize": 16,
+ "draggable": "False",
+ "value": 15,
+ "category": "喷嚏网铂程",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "嗨哥苏大少",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "嗨哥苏大少",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "堕落熊猫001",
+ "symbolSize": 13,
+ "draggable": "False",
+ "value": 7,
+ "category": "堕落熊猫001",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "夏至蟲之音",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "夏至蟲之音",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "天天越野跑",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "天天越野跑",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "天水2院张医生",
+ "symbolSize": 9,
+ "draggable": "False",
+ "value": 3,
+ "category": "天水2院张医生",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "天津王麟",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "天津王麟",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "孟加拉虎的BLOG",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "孟加拉虎的BLOG",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "宋燕不v",
+ "symbolSize": 30,
+ "draggable": "False",
+ "value": 319,
+ "category": "宋燕不v",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "尧哥讲笑话",
+ "symbolSize": 9,
+ "draggable": "False",
+ "value": 3,
+ "category": "尧哥讲笑话",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "开老爷车的熊",
+ "symbolSize": 15,
+ "draggable": "False",
+ "value": 10,
+ "category": "开老爷车的熊",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "张晨初艺术空间",
+ "symbolSize": 30,
+ "draggable": "False",
+ "value": 312,
+ "category": "张晨初艺术空间",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "张欧亚",
+ "symbolSize": 30,
+ "draggable": "False",
+ "value": 318,
+ "category": "张欧亚",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "我们认识",
+ "symbolSize": 12,
+ "draggable": "False",
+ "value": 5,
+ "category": "我们认识",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "战争史研究WHS",
+ "symbolSize": 30,
+ "draggable": "False",
+ "value": 291,
+ "category": "战争史研究WHS",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "战争史研究WHS:图片评论 http",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "战争史研究WHS:图片评论 http",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "投行老人",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "投行老人",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "换个名字好累人",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "换个名字好累人",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "新浪体育",
+ "symbolSize": 35,
+ "draggable": "False",
+ "value": 875,
+ "category": "新浪体育",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "方便卫生起效慢",
+ "symbolSize": 15,
+ "draggable": "False",
+ "value": 11,
+ "category": "方便卫生起效慢",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "无心耳语08",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "无心耳语08",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "暗能量泡泡",
+ "symbolSize": 11,
+ "draggable": "False",
+ "value": 4,
+ "category": "暗能量泡泡",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "歌手亚东",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "歌手亚东",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "没籽的葡萄好吃",
+ "symbolSize": 11,
+ "draggable": "False",
+ "value": 4,
+ "category": "没籽的葡萄好吃",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "澳洲李市民",
+ "symbolSize": 8,
+ "draggable": "False",
+ "value": 2,
+ "category": "澳洲李市民",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "灰狼多样性",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "灰狼多样性",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "爱哟快乐",
+ "symbolSize": 9,
+ "draggable": "False",
+ "value": 3,
+ "category": "爱哟快乐",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "猫饭P",
+ "symbolSize": 8,
+ "draggable": "False",
+ "value": 2,
+ "category": "猫饭P",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "猿十三",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "猿十三",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "王唔悦",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "王唔悦",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "相忘于2222",
+ "symbolSize": 11,
+ "draggable": "False",
+ "value": 4,
+ "category": "相忘于2222",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "简木生--包丰瀛",
+ "symbolSize": 18,
+ "draggable": "False",
+ "value": 19,
+ "category": "简木生--包丰瀛",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "紫霄时雨_苍穹要塞难民",
+ "symbolSize": 9,
+ "draggable": "False",
+ "value": 3,
+ "category": "紫霄时雨_苍穹要塞难民",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "紹灝Lam",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "紹灝Lam",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "罗昌平",
+ "symbolSize": 22,
+ "draggable": "False",
+ "value": 58,
+ "category": "罗昌平",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "耳光赵荒唐",
+ "symbolSize": 15,
+ "draggable": "False",
+ "value": 11,
+ "category": "耳光赵荒唐",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "肉食者Play",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "肉食者Play",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "胖猪猪呼呼睡",
+ "symbolSize": 12,
+ "draggable": "False",
+ "value": 6,
+ "category": "胖猪猪呼呼睡",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "花卷沉湎",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "花卷沉湎",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "苗条的小实",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "苗条的小实",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "豆名扬",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "豆名扬",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "过去的老照片",
+ "symbolSize": 8,
+ "draggable": "False",
+ "value": 2,
+ "category": "过去的老照片",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "远古的刀",
+ "symbolSize": 8,
+ "draggable": "False",
+ "value": 2,
+ "category": "远古的刀",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "重工组长于彦舒",
+ "symbolSize": 31,
+ "draggable": "False",
+ "value": 378,
+ "category": "重工组长于彦舒",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "長滒",
+ "symbolSize": 12,
+ "draggable": "False",
+ "value": 5,
+ "category": "長滒",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "陇上优品-陶磊",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "陇上优品-陶磊",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "降夭除魔齐天大圣",
+ "symbolSize": 11,
+ "draggable": "False",
+ "value": 4,
+ "category": "降夭除魔齐天大圣",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "马周扬律师",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "马周扬律师",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "鬼面绣裁",
+ "symbolSize": 9,
+ "draggable": "False",
+ "value": 3,
+ "category": "鬼面绣裁",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "魔都310土匪",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 1,
+ "category": "魔都310土匪",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "麻黑浮云",
+ "symbolSize": 19,
+ "draggable": "False",
+ "value": 29,
+ "category": "麻黑浮云",
+ "label": {
+ "normal": {
+ "show": "True"
+ }
+ }
+ },
+ {
+ "name": "经济学原理0904",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "于余宇",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "落花满衣",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "耳光赵荒唐"
+ },
+ {
+ "name": "破产伍伍陆",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "简木生--包丰瀛"
+ },
+ {
+ "name": "iFandom",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "hai17",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "Gen余根",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "霁月难逢00",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "tingdianle88",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "buyueeeee",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "优质羊毛"
+ },
+ {
+ "name": "7816呵呵",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "绵绵绵绵甜",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "假装仁波切糕",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "专卖好酒",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "鐵騎如水漫山關",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "头条股票",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "游鱼居士",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "耗社会主义股市羊毛",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "我想爬出去",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "月下桃花枝",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "鬼面绣裁"
+ },
+ {
+ "name": "老盆",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "隔岸看风景2016",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "FullMetalLyle",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "POPOVISION",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "皓乙_纯",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "小纯是不穿板甲的狂战",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "成翔-同策咨询",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "X一块红布",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "七親萌貨",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "谷子地Dwane",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "Mitsuhide明智",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "风云路漫漫",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "中华龙会"
+ },
+ {
+ "name": "镜花水月137",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "慈禧在坟墓里笑死",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张欧亚"
+ },
+ {
+ "name": "人生录音",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "猫屎洞",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "宝蛋她娘",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "北京金戈戈"
+ },
+ {
+ "name": "魏屹林",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "LAIZHONGYAO",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "酋长喊我回家吃饭",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "乔那个疯子",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "YM0518",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "一路并肩而行baby",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "静山观海",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "北京利生体育商厦",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "捆着发木ALT",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "只愿岁月不回头",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "撒旦尖角",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "Tiger公子"
+ },
+ {
+ "name": "wu聊a",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "文武书书",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "大雄不太爱说话",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "卓裔人",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "过去的老照片"
+ },
+ {
+ "name": "木_小呆是个死腐宅",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "简木生--包丰瀛"
+ },
+ {
+ "name": "风雨天骄",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "斯坦家汪汪",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "上善若水_waterliker",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "水润嘉华",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "TerryYin_S",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "喷嚏网铂程"
+ },
+ {
+ "name": "天高云淡vvv",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "喷嚏网铂程"
+ },
+ {
+ "name": "减法生活女子减压生活会馆",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": ""
+ },
+ {
+ "name": "吃包子喝水",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "运交华盖2013",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "喷嚏网铂程"
+ },
+ {
+ "name": "牵下水拍照",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "站在天桥数车灯儿",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Ranyuewan",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "钟颙sz",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "刘广赟卍",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "一支钥匙一把锁",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "霍斯勒阿瑟",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "沐之夏吉郎",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "冲浪板007",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "彪悍猫妈",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "小马_1623085",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "不读书的撸舔立",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "Strong明丶",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Jeff-Chang",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "灰狼多样性"
+ },
+ {
+ "name": "兴盛泰",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "生活顺顺利利",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "零崎本心",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "NATUREexploring",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "yx希望",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "大伟MADSam",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "蓝天zjg",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "lfx160219"
+ },
+ {
+ "name": "Daybreak_Canal",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "简木生--包丰瀛"
+ },
+ {
+ "name": "来自TTY",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "喷嚏网铂程"
+ },
+ {
+ "name": "冬马和纱厨",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "地质一郎",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "北大白马96613",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "lfx160219"
+ },
+ {
+ "name": "登州笑笑生",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "铁成的幸福生活",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "耳光赵荒唐"
+ },
+ {
+ "name": "CDJ37",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "湖南省西瓜甜瓜研究所团支部",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "股民资源QQ719554823",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "简木生--包丰瀛"
+ },
+ {
+ "name": "我叫照日格图",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "满清十大酷刑",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "琉烟之烬",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "BooM_讽_刺_",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "agents博",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "NKmilitaryStudies"
+ },
+ {
+ "name": "暮色柳塘",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "黄俄罗斯志愿兵",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "一百五十斤的维洛妮卡",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "厐宇峰",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "宅心似箭",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS:图片评论 http"
+ },
+ {
+ "name": "____-------____________",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "甲壳咪殿下",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "edelman葛",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "stephen1999c"
+ },
+ {
+ "name": "Mirko的blog",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "喷嚏网铂程"
+ },
+ {
+ "name": "仇玲夕",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "柒vidy",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "中出宪政柏拉图"
+ },
+ {
+ "name": "华府骏苑姜熙健",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "lfx160219"
+ },
+ {
+ "name": "锦衣夜行452",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "seven_罗",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "九河下潲-天子渡口",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "bobbeido",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "开大招时会喵喵叫的friend",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "_nearly转1"
+ },
+ {
+ "name": "止于涂",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "zds小懒",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "裸奔老者",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "Tiger公子"
+ },
+ {
+ "name": "这个马叔不太冷",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "paxl",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "TeslaP100",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "鹿允近衛連隊的黑少领要当牛仔了",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "lfx160219"
+ },
+ {
+ "name": "关乎牙齿更关心你",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "Wilson老张",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "花果山水帘洞齐天大圣0_0",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "猫团长没有咸鱼",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "MR-WANGRX",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "国术促进会吴彬",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "三里寻烟",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "东晓0117",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "简木生--包丰瀛"
+ },
+ {
+ "name": "拉拉菲尔尼兹海格",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Howard_Qian",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "WANGJXseEr",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "诶呀妈呀吓我一跳",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "叫个咩faye",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "机智的大帅逼",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "山顶夫子",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "parenthesisZ",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "史小臭迷途中寻觅",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "氮气君NegativelyNorm",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "WJHLMM",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "福州摄影菌",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "bywang1",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "单位传达室老张",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "A优喂",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "廆仆",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "暖色调的海",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "郑顺天",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "硕爱1篮球阿阿",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "永强波家的",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "岁月哥特",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "好想骂你煞笔哦",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "洪涛观点",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "广陵古散",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "lfx160219"
+ },
+ {
+ "name": "韩某89",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "MrBone",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "-胖小子-",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "激素少女陈一水",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "风和日丽1866",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "WeiGuan-Gworld",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "nevermind39",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "夜半幽灵",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "超级马力0",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "孙松AT",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "追风少年何大宝",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "huangky2013",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Tony老铁呀",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "澳洲李市民"
+ },
+ {
+ "name": "Shawn_River",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "HexFireSea",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "浪剑痕_秋水尽洗天下劫",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "walbgt",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "耳光赵荒唐"
+ },
+ {
+ "name": "陈_八怪_",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "WOCHIHUN",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "叶拂衣_",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "鬼面绣裁"
+ },
+ {
+ "name": "醉生梦死的猫食",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "最近很无聊---",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "BluePadge",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "飛過萬水千山",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "jasonma284",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "坚菓青少年俱乐部",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "剡溪山君",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "千与千寻丶隐",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "头喵的妈吃一身",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "原始超越者2016",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "北辰慢慢跑",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "绿绿绿绿绿到发亮",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "蓝风2019",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "David爱美食",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "通古鬼斯",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "来自熊堡",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "北京_彬爷",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "花卷沉湎"
+ },
+ {
+ "name": "噗噜噗噜轰隆隆隆",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "傅生-若梦",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "格瓦拉切糕",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "南部炮兵潘",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "财罗湖",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "北京金戈戈"
+ },
+ {
+ "name": "笑看来者",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "w新晴w"
+ },
+ {
+ "name": "用户6101624258",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "孤单一个人去返工II",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "刘志鲲",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "阿瑟queen",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "耳光赵荒唐"
+ },
+ {
+ "name": "黄一米八二",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "軟Sir你病得不輕為啥還放棄治療",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "捣蛋少年2016",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "lfx160219"
+ },
+ {
+ "name": "watermanlee",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "吉四六"
+ },
+ {
+ "name": "谢龙1洋",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "幸福就是毛毛雪",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "团子桃子的麻麻",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "鋒瘋子",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "没事瞎扑腾_勇敢的乱飞_197",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "降夭除魔齐天大圣"
+ },
+ {
+ "name": "九州纹龙",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "武人影像",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "飛升法皇嬴曌堃",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "隐隐灵音",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "Michael-Cheung-"
+ },
+ {
+ "name": "Petter大俠",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "清者自來",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "Aresous",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "金城白菜斋",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "烈酒清茶",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "喷嚏网铂程"
+ },
+ {
+ "name": "青蛙王子199905",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "NouWl",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "信近言复",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "今天你FGO咸鱼了么",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "和平与蛋黄酱",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "桃子老爹",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Beijingold4",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "D8表情帝",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "换个名字好累人"
+ },
+ {
+ "name": "james7band",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "投行老人"
+ },
+ {
+ "name": "triglyceridecreed",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "东168168168",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "不是宏推大宏推",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "白胖浪浪",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "美丽居曹亮",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "鳯逑凰",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "邓先渝",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "农行小桂圆",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "周伯通说话",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "小弟震",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "饽饽瘦了",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "喷嚏网铂程"
+ },
+ {
+ "name": "西班牙荣",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "卅石矷",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "心若善至",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "stlxmsl",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "原子CaoYuan",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "BiBlBa",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "师律伟王",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "冬风吹不走雾",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "李小宝gg",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "yaozo",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "泥四步撒",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "风清熙",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "旺达不锈钢管道设备",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "小LIU仔",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "古俐特",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "带鸡的少侠a",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "暴君T-233",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "人形高达奈叶"
+ },
+ {
+ "name": "MADAO兽-UP",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "汪俊玲_悦宸",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "坠-绝命大番茄",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "WVA亿境战队李嘉炜",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "LP呆啊呆",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "未文侯",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "我们认识"
+ },
+ {
+ "name": "黄鹤2016",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "终南金刚",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "CCCCRAZYCAT",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "三尺之上有神明",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "避难所小子爱喝核子可乐",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "慈悲为槐",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "Red-or-Black",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "村头蹲点小流氓",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "秋风旅人",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "蒋某people",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "Xiao-斌杰"
+ },
+ {
+ "name": "于贺_",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "bmjj777",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "HS_Hanson",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "叫我驴驴就好了",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "UNIMET",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "罗叉叉",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "方便卫生起效慢"
+ },
+ {
+ "name": "后仓松鼠",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "activegeneral",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "筑城小铃铛",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "功夫查理",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "名字这么难听",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "浪客不行",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "床保社",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "米拉库露",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "换名字也不行",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "监视狂魔沈夜",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "HCHZ2011",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "0ne丶PunCh",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "曜冰",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "千年王国2012",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "dgxbill",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "xbftslh",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "那个叫做光的男人真他妈可爱",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "霹雳球球",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "嬉皮笑脸者说",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "耳光赵荒唐"
+ },
+ {
+ "name": "Justice_Sum",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "吉四六"
+ },
+ {
+ "name": "王大大大安",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "光明家具刘志军",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "洪七公--36",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "不记得今天是礼拜几",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "墨子墨子墨子",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "古城_tma",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "王小硕的小马甲",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Pengtzuchieh",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "就是内个少年",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "瑞新新新新",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "来了来了了了",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "喷嚏网铂程"
+ },
+ {
+ "name": "老海91816",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "清清美美",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "bsr1983",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "澳洲李市民"
+ },
+ {
+ "name": "陪你疯到天涯海角",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "耳光赵荒唐"
+ },
+ {
+ "name": "冷炜",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "饕餮海",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "相忘于2222"
+ },
+ {
+ "name": "RyanTsa0",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "X_iao樓"
+ },
+ {
+ "name": "平生最怕起名字",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "说你酷",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "中出宪政柏拉图"
+ },
+ {
+ "name": "鏡妖星影",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "文话中国",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "短昵称-",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "实用格斗",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "oldharry",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "HBG_喵",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "知白守黑stock",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "醇淨氺",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "铁笛惊龙",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "北京金戈戈"
+ },
+ {
+ "name": "想去看看世界的小猴子",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "风_凌羽",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "喷嚏网铂程"
+ },
+ {
+ "name": "snowpanzer",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "传说中滴临时工",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "喷嚏网铂程"
+ },
+ {
+ "name": "香暗盈袖",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "Gabriel-VN",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "直布罗陀_",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "木子东冉",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "麓林山人",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "大烧饼学炒股",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "架梁公",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "_月亮六便士",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "Anson余生",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "光辉岁月0927",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "飞廉窝在小院子里养老",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "我的牛呢",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "阝东更鑫鑫向荣",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "步行者001",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "艾露恩之光",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "-梦魂舞晶-",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "赵不着调调儿",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "耳光赵荒唐"
+ },
+ {
+ "name": "小德银鳞胸甲",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "薄荷够凉",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "那山杜鹃bj",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "真正的桐柏英雄",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "耳光赵荒唐"
+ },
+ {
+ "name": "秋天的完美生活",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "熬浆糊99",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "李狗嗨ing",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "我与鱼儿",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "章海波",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "雨点儿yang",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "九翼龙皇",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "三口一瓶奶",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "Christinez"
+ },
+ {
+ "name": "呆毛哼",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Augusttin",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "ERLIANGJO",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "160么么哒",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "王师北定FK",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "电击鱼",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "胖得有气质",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "茗品呀茗品",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "tang花_fh7",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "魔蟹0080",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "说说我的丑",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "huaxiawolf",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "aeo000000",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "吴宇森影迷",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "风起来停不下来",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "Syfannn"
+ },
+ {
+ "name": "李曼青sattvaUranus",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "简单感-悟",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "北京金戈戈"
+ },
+ {
+ "name": "拜访者查子",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "伤心云雨8",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Michael刘磊",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "饕餮无厌-半部屠龙之术",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "门后的风铃",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "不動的大圖書館Q",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "在一起的围脖",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "妙我居士",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "米衫儿",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "plud2005",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "JeremyKevin",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "天天越野跑"
+ },
+ {
+ "name": "无穷的探索",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "爱学习的绿叶子",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "tuzixuexi",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "chariotwx",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "取舍时空",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "姚磊-三过七院而不入",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "派大星爱吃锅包肉",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "不如一朵",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "没有烟了",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "入云伤",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "黄禾谷",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "平凡746",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "一头土猪",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "mogu丫头",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "直抵黄龙府与诸君痛饮尔",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "木兰007",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "Tiger公子"
+ },
+ {
+ "name": "大连地果",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "八度鱼77",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "流云涛影的空间",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "BOSS大泡泡",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "MTbuff",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "五只fffff菌",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "降夭除魔齐天大圣"
+ },
+ {
+ "name": "Cindy是我的",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "九門道",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "DaDaDaDaDaDa灰狼",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "努力的萨摩",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "VC火星人",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "奔驰配件只售原厂全新",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "孤独的卧龙",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "MYS_Parker",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "真同你友缘",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "要酒还是要故事",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "飞云乱度_unntopia",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "拖拉机再垃圾也能拖垃圾H",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "ARS_锋线今天补齐了么",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "约伯少木",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "江心洲的石头",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "信仰铮",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "踏古悠悠",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "关东十二郎",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "龍叔論勢",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "小齐与玫瑰",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "阳光的小青年123",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "lionshuang",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "剑雨风竹wzp",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "leo快跑_",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "霄緰鳴",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "清宇建材",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "IHSAKAH",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "景页的彭",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "子非鱼非子vit",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "萨特5243280580",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Unique斯通",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "信仰之魂之根",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "手自栽",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "霞客遗风",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "天心-月圆",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "小凯最爱羊羊",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "穿长靴的柴郡猫",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "看客二两七",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "王小签",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "自古秃顶多薄命",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "陇南老代",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "HERO-熊",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "手机用户2011685586",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "披着虎皮的羊",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "竹林之闲七",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "坦帕湾魔鬼鱼",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "某气又方又圆",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "walmazon",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "RX-78-8",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "balcktomato",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "简木生--包丰瀛"
+ },
+ {
+ "name": "TroubleKid是MADAO",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "爆炸神教唯我独尊",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "一个立派又迷人的营销号手机用户",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "春分大寒",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "上局沪段_沪"
+ },
+ {
+ "name": "曾经依然46",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "柳恒卓",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "适中求对",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "流星弦月",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "黑岛结菜厨",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "鬼男三世",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "牧羽尽人",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "北斗之南V",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "自由知新",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "吉四六"
+ },
+ {
+ "name": "也曾相识0906",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "小鱼妖贤",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "怀风的小号",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "路痴Lee",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "望霆止渴",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "Tiger公子"
+ },
+ {
+ "name": "海獭小元帅",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "梦里自在",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "人总要变僵尸",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "做题做到傻星人",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "不会结网的蜘蛛",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "艾特胖叔叔",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "michelle0706",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "中二有治",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "renaissance325",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "山行者不爬山",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "一只饼干熊",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "Double润-JR",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "海布利的机关枪",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "fhqskwwx",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "虚地天高海底行",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "杨术灵的公司是在香港注册的",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "吉四六"
+ },
+ {
+ "name": "快刀博士",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "阿腿-人活着就是为了式姐",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "李哈喽年抓虫子",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "entaro",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "新型的农村人",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "远古的刀"
+ },
+ {
+ "name": "吴地老高",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "京城吃货日记"
+ },
+ {
+ "name": "只愿华丽一次",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "丁库北",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "猿十三"
+ },
+ {
+ "name": "2x2eyes着装变身",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "小钱钱飞来招财进宝",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "Tiger公子"
+ },
+ {
+ "name": "乐_扬",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "三分音符V",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "喷嚏网铂程"
+ },
+ {
+ "name": "神之佩恩",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "小超-唐新",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "雷焰萌虎",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "五十岚空芔"
+ },
+ {
+ "name": "蓝天白云5888",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "大虾本尊",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "CJ一个微博",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "阿里海牙科维奇",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "中出宪政柏拉图"
+ },
+ {
+ "name": "清古正华",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "八一魄力",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "worisi_na3",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "耳光赵荒唐"
+ },
+ {
+ "name": "用户5989473265",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "沙漠王子82",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "BJ卫东围脖",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "大叔与流浪猫",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "单刀126",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "赵伯安",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "all-time-low",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "凌舒韵",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "笨不傻",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "超昂闪存",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "甲古的时代",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "孙润琦最近有点胖啊",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "会瘦的兔子",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "非典型精彩",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "上海曹凡",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "爱哟快乐"
+ },
+ {
+ "name": "小木木-H",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "曾经日在校园",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "呛呛枪",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "ZY真人吉光片羽",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "M菊花的小GI",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "钟涓之",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "weibuloser",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "潘恩豪啊潘恩豪",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "天枢道",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "穆sir---",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "剑吹白雪喵喵酱",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "淘气的小福儿",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "lfx160219"
+ },
+ {
+ "name": "惊梦时从来不报社",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "成都大河",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "琉璃厂人",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "江巴瓜poi",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "猫饭P"
+ },
+ {
+ "name": "偶尔有点帅1988",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "安庆爱慕摄影师阿文",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "破晓劲风",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "EL-bazinga",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "OP牛牛real",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "田字格大人",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Yoga_雪",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "王唔悦"
+ },
+ {
+ "name": "牛大腕和羊羔肉",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "一路上有你LXING",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "小闫---闫宇航2_167",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "书客的马甲",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "廿五廿六",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "嗷嘚儿刘",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "月想夜雫",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "猫饭P"
+ },
+ {
+ "name": "人生装修中的王白薯",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "老哥哥农农",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "山城球长",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "愚忠不中",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "豆名扬"
+ },
+ {
+ "name": "搞一手",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "用户3639916871",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "杨培军ypj",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "天津王麟"
+ },
+ {
+ "name": "命名馆的故事",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "动物凶猛吗",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "拖大林的斯拉机",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Wcqsoil奇",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "喷嚏网铂程"
+ },
+ {
+ "name": "-隔壁尛王",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "中出宪政柏拉图"
+ },
+ {
+ "name": "jinguokai",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "樱花突击队",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "笑嘻嘻不是孬东西",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "明月照清疯",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "philosophic_philo",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "-_---17---_-",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "于小文很跋扈",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "更木千秋",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "看你妹夫斯基",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "各路英雄我是炮灰",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Panda加速度",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "变态的小幸福",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "京城吃货日记"
+ },
+ {
+ "name": "云信321312747",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "见习魔王",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "山魈屠魔",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "smthpickboy",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "读心术宋_Ssir226",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "糖丶King",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "深圳-0755",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "吹風左",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "霖希默语",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "34X5A7",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "蝶升思26812",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Tony悟空孙",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "山里的孩子去砍柴",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "XTG29",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "血红暴鲤魚",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "傲血困意",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "简木生--包丰瀛"
+ },
+ {
+ "name": "只道是寻常草履虫",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "李家老三是藕霸",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "苍天的渔民饥饿的猫",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "宁紫晗f",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "陇上优品-陶磊"
+ },
+ {
+ "name": "Biu--------------",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "ROCK在民大",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "wwwwwww_W",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "黑羽太太薄爷爷",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "sazen"
+ },
+ {
+ "name": "焖猪脚",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "九又十三分之一",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "耳光赵荒唐"
+ },
+ {
+ "name": "dengliang100",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "慢慢买4j",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "ORANGE_TULIP_2015__盾构工程",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "女汉子只是多了一那份坚强錟",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "赵翼菲",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "balestra",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "西瓜大将",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "毛巾在飞翔",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "青鸟tw",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "卖蟑螂的小男孩XD",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "盖世英雄_i",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "相忘于2222"
+ },
+ {
+ "name": "找北的时光",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "天水2院张医生"
+ },
+ {
+ "name": "片桂hoho嘎",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "雨小农和獭祭鱼",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "子-都",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "哥是厦大的",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "买不起早点的门房郑大爷",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "MrFopenheart",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "梦佳红人",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "JustForFunDude",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "徐冲dy",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "王霸丑",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "已过期的凤梨罐头",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "果果的妈妈",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "lfx160219"
+ },
+ {
+ "name": "被阳光点燃的小雏菊",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "SOLOWINGROCKY",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "不吃萝卜的野生鱼",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "Urnotprepared",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "北大十五",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "大漠孤烟平凉",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "messenger16",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "-逐梦令-",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "寒木9740",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "冯某钊",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "大眼李",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "吉四六"
+ },
+ {
+ "name": "阿特兰蒂斯的飞鸟",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "无心耳语08"
+ },
+ {
+ "name": "顺手牵杨扬",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "Hu_子叔叔",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "67年生人的记忆碎片",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "苗条的小实"
+ },
+ {
+ "name": "千手捉鸡_",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "降夭除魔齐天大圣"
+ },
+ {
+ "name": "pmzqld",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "喷嚏网铂程"
+ },
+ {
+ "name": "我可以咬一口耶",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "浪里秤砣",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "SofayW",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "Very流浪的小拖鞋",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "LSX_N欣",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "降夭除魔齐天大圣"
+ },
+ {
+ "name": "偏不见就叫偏不见",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "castle84",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "IceE_U",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "燃满愿",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "风花雪月去",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "开拓者3569",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "一小撮别有用心的小猪在跳舞",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "简木生--包丰瀛"
+ },
+ {
+ "name": "波灵谷",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "饱饱的酸菜君",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "Tiger公子"
+ },
+ {
+ "name": "关洪导演",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "相忘于2222"
+ },
+ {
+ "name": "人一定要靠自己",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "老师教案的宝宝",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "中出宪政柏拉图"
+ },
+ {
+ "name": "毛i台钧",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "时间苍窮",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "刘海哲",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "君王板甲胡屠户",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "富怡-宝盈-盈瑞恒",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "嗨哥苏大少"
+ },
+ {
+ "name": "周氏豆沙",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "远古的刀"
+ },
+ {
+ "name": "赵毫毛",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "刺猬-的生活",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Digital蚊子",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "简木生--包丰瀛"
+ },
+ {
+ "name": "烈日下的森岛",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "鋈圆",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "纪岚挺",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "ParPar2011",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "谁执流素舞青月",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "七绪平门",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "苏乄小溪",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "flowtime",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "丿胡丶半仙",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "Cal_liu",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "玉米皮多多",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "二只只",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "長滒"
+ },
+ {
+ "name": "坚心耐苦",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "金粉洒家",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "吉原嗷子手中一碗张屏的面",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "大风起兮谣言飞",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "上下天光一碧万顷",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "弗温居士",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "小小真菌",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "万言不值一杯酒",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "雷电看风云",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "喷嚏网铂程"
+ },
+ {
+ "name": "江南岸1217",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "柳培卿",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "马里亚纳的沟",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "DR-pepper大魔王",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "奔跑在路上的小猪哥哥",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "于明乐81489",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "肉食者Play"
+ },
+ {
+ "name": "吃鲸_满脑子打牌",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "流竜馬",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "心雨3266917092",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "歌手亚东"
+ },
+ {
+ "name": "铁的男",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "顺势旺",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "若渝与若耶",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "栖凤山D",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "给美希庆生的P_卡卡",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "鱼丸粗面",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "谢乘月",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "鬼面绣裁"
+ },
+ {
+ "name": "Tachikoma1990",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "吉四六"
+ },
+ {
+ "name": "东瓜_DONGGUA",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "秃秃小嘎",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "曲儿wq",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "云自在_安平太",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "萧月御诸",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "茜akane茜",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "南迦巴瓦的晨曦"
+ },
+ {
+ "name": "丘八帮高级会员",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "刘大来律师",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "马周扬律师"
+ },
+ {
+ "name": "李白起",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "zzz洋仔",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "竹园纤圆",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "FLAX_圩田经济学安心种地",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "人民舆论V",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "佬俚伺",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "孟加拉虎的BLOG"
+ },
+ {
+ "name": "freeeeekick",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "healt",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "猪头三小队长",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "喷嚏网铂程"
+ },
+ {
+ "name": "小骉007",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "曾经莱克今星敦",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "my686",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "sekino",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "幽径不再悲剧",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "zine692008991",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "JoKer__x1",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "艹丶LOVE丨霸道灬88",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "WS_WBZ",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "MKIII_TROMBE",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "ABCDEFGWA",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "markxhuang",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "何鑫JO",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "可爱卫东",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Sher-Conan",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "简木生--包丰瀛"
+ },
+ {
+ "name": "TreeHole2017",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "深度脸盲症",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "苍玖染月",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "魔都310土匪"
+ },
+ {
+ "name": "saxon-90",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "苍狼小幻_",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "低碳George",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "一任年华度如禅",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "屯里NNRT",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "黑贝的米兔",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "小葱花饼香辣子",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "JoannaBlue"
+ },
+ {
+ "name": "鑦赟驜鶴",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "罗比巴吉奥",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "耳光赵荒唐"
+ },
+ {
+ "name": "Mr-LeeZL",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "村长一路走好cl",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "阿根廷人小马",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "魔都百姓海幽",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "竹林风雨来了",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "肺想说话",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "AFC-ARS-FANS",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "風痕2017",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "红藕香残玉簟秋allaboutyou",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Eye2eyes",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "重工组长于彦舒"
+ },
+ {
+ "name": "英雄爱听故事",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "起士林不是我开的",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "麻黑浮云"
+ },
+ {
+ "name": "hk2008abc",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "张晨初艺术空间"
+ },
+ {
+ "name": "2017-5serieS",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "showdfg",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "Camel3942"
+ },
+ {
+ "name": "o0勇敢的心0o",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "我是伍味子",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "熊宝-咪",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "简木生--包丰瀛"
+ },
+ {
+ "name": "花贰街",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "Infi2015",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "garfield007",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "爱家庭教师爱篮球爱科比",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "赵家周报",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "罗昌平"
+ },
+ {
+ "name": "海中的小白鲨",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "恩里克",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "西单骆驼",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "Tiger公子"
+ },
+ {
+ "name": "强强187",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "战争史研究WHS"
+ },
+ {
+ "name": "我的威海",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "过去的老照片"
+ },
+ {
+ "name": "吴足道-alaya",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ },
+ {
+ "name": "喜欢YY的城墙鸡",
+ "symbolSize": 5,
+ "draggable": "False",
+ "value": 0,
+ "category": "新浪体育"
+ }
+ ],
+ [{
+ "source": "新浪体育",
+ "target": "阿根廷人小马"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Beijingold4"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "X一块红布"
+ },
+ {
+ "source": "胖猪猪呼呼睡",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "胖猪猪呼呼睡"
+ },
+ {
+ "source": "新浪体育",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "小齐与玫瑰"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "陇南老代"
+ },
+ {
+ "source": "新浪体育",
+ "target": "triglyceridecreed"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "孤独的卧龙"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "赵翼菲"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "蓝风2019"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "ABCDEFGWA"
+ },
+ {
+ "source": "澳洲李市民",
+ "target": "Tony老铁呀"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "澳洲李市民"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "中出宪政柏拉图",
+ "target": "老师教案的宝宝"
+ },
+ {
+ "source": "加菲杰克",
+ "target": "中出宪政柏拉图"
+ },
+ {
+ "source": "堕落熊猫001",
+ "target": "加菲杰克"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "堕落熊猫001"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "冬风吹不走雾"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "山行者不爬山"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "栖凤山D"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "孤独的卧龙"
+ },
+ {
+ "source": "吉四六",
+ "target": "watermanlee"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "吉四六"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "那山杜鹃bj"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "陇上优品-陶磊",
+ "target": "宁紫晗f"
+ },
+ {
+ "source": "天水2院张医生",
+ "target": "陇上优品-陶磊"
+ },
+ {
+ "source": "暗能量泡泡",
+ "target": "天水2院张医生"
+ },
+ {
+ "source": "X_iao樓",
+ "target": "暗能量泡泡"
+ },
+ {
+ "source": "新浪体育",
+ "target": "X_iao樓"
+ },
+ {
+ "source": "新浪体育",
+ "target": "只愿岁月不回头"
+ },
+ {
+ "source": "喷嚏网铂程",
+ "target": "天高云淡vvv"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "罗昌平",
+ "target": "tingdianle88"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "中华龙会",
+ "target": "风云路漫漫"
+ },
+ {
+ "source": "新浪体育",
+ "target": "中华龙会"
+ },
+ {
+ "source": "罗昌平",
+ "target": "专卖好酒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "X_iao樓",
+ "target": "RyanTsa0"
+ },
+ {
+ "source": "新浪体育",
+ "target": "X_iao樓"
+ },
+ {
+ "source": "新浪体育",
+ "target": "小木木-H"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "鐵騎如水漫山關"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "BluePadge"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "曲儿wq"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "风和日丽1866"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "w新晴w",
+ "target": "笑看来者"
+ },
+ {
+ "source": "xHao晓灏",
+ "target": "w新晴w"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "xHao晓灏"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "山行者不爬山"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "南部炮兵潘"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "千年王国2012"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "新浪体育",
+ "target": "中华龙会"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "旺达不锈钢管道设备"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "降夭除魔齐天大圣",
+ "target": "LSX_N欣"
+ },
+ {
+ "source": "新浪体育",
+ "target": "降夭除魔齐天大圣"
+ },
+ {
+ "source": "新浪体育",
+ "target": "蓝天白云5888"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "玉米皮多多"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "小鱼妖贤"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "markxhuang"
+ },
+ {
+ "source": "新浪体育",
+ "target": "这个马叔不太冷"
+ },
+ {
+ "source": "新浪体育",
+ "target": "David爱美食"
+ },
+ {
+ "source": "新浪体育",
+ "target": "柳培卿"
+ },
+ {
+ "source": "新浪体育",
+ "target": "地质一郎"
+ },
+ {
+ "source": "耳光赵荒唐",
+ "target": "worisi_na3"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "耳光赵荒唐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "philosophic_philo"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "饕餮无厌-半部屠龙之术"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "jasonma284"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "fhqskwwx"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "王大大大安"
+ },
+ {
+ "source": "天水2院张医生",
+ "target": "陇上优品-陶磊"
+ },
+ {
+ "source": "暗能量泡泡",
+ "target": "天水2院张医生"
+ },
+ {
+ "source": "X_iao樓",
+ "target": "暗能量泡泡"
+ },
+ {
+ "source": "新浪体育",
+ "target": "X_iao樓"
+ },
+ {
+ "source": "新浪体育",
+ "target": "直布罗陀_"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "虚地天高海底行"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "曾经日在校园"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "新浪体育",
+ "target": "messenger16"
+ },
+ {
+ "source": "耳光赵荒唐",
+ "target": "铁成的幸福生活"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "耳光赵荒唐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "Biu--------------"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "冲浪板007"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "罗昌平",
+ "target": "心若善至"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "NKmilitaryStudies",
+ "target": "agents博"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "NKmilitaryStudies"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "风花雪月去"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "小LIU仔"
+ },
+ {
+ "source": "投行老人",
+ "target": "james7band"
+ },
+ {
+ "source": "新浪体育",
+ "target": "投行老人"
+ },
+ {
+ "source": "喷嚏网铂程",
+ "target": "pmzqld"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "步行者001"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "降夭除魔齐天大圣",
+ "target": "千手捉鸡_"
+ },
+ {
+ "source": "新浪体育",
+ "target": "降夭除魔齐天大圣"
+ },
+ {
+ "source": "Tiger公子",
+ "target": "撒旦尖角"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "Tiger公子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "新浪体育",
+ "target": "浪客不行"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Unique斯通"
+ },
+ {
+ "source": "新浪体育",
+ "target": "岁月哥特"
+ },
+ {
+ "source": "新浪体育",
+ "target": "呆毛哼"
+ },
+ {
+ "source": "新浪体育",
+ "target": "史小臭迷途中寻觅"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "entaro"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "xbftslh"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "洪七公--36"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "约伯少木"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "吉四六",
+ "target": "自由知新"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "吉四六"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "红藕香残玉簟秋allaboutyou"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "邓先渝"
+ },
+ {
+ "source": "京城吃货日记",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "方便卫生起效慢",
+ "target": "京城吃货日记"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "方便卫生起效慢"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "邓先渝"
+ },
+ {
+ "source": "胖猪猪呼呼睡",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "胖猪猪呼呼睡"
+ },
+ {
+ "source": "新浪体育",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "我与鱼儿"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "耳光赵荒唐",
+ "target": "陪你疯到天涯海角"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "耳光赵荒唐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "秋天的完美生活"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "村长一路走好cl"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "今天你FGO咸鱼了么"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "北大十五"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "-胖小子-"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "Tiger公子",
+ "target": "小钱钱飞来招财进宝"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "Tiger公子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "见习魔王"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "农行小桂圆"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "马周扬律师",
+ "target": "刘大来律师"
+ },
+ {
+ "source": "新浪体育",
+ "target": "马周扬律师"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "邓先渝"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "国术促进会吴彬"
+ },
+ {
+ "source": "新浪体育",
+ "target": "一个立派又迷人的营销号手机用户"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "霄緰鳴"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "parenthesisZ"
+ },
+ {
+ "source": "新浪体育",
+ "target": "POPOVISION"
+ },
+ {
+ "source": "新浪体育",
+ "target": "快刀博士"
+ },
+ {
+ "source": "喷嚏网铂程",
+ "target": "猪头三小队长"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "bobbeido"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "oldharry"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "罗昌平",
+ "target": "江心洲的石头"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "吉四六",
+ "target": "Tachikoma1990"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "吉四六"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "木子东冉"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "Infi2015"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "lfx160219",
+ "target": "北大白马96613"
+ },
+ {
+ "source": "开老爷车的熊",
+ "target": "lfx160219"
+ },
+ {
+ "source": "新浪体育",
+ "target": "开老爷车的熊"
+ },
+ {
+ "source": "",
+ "target": "减法生活女子减压生活会馆"
+ },
+ {
+ "source": "新浪体育",
+ "target": ""
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "大雄不太爱说话"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "关乎牙齿更关心你"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "降夭除魔齐天大圣",
+ "target": "没事瞎扑腾_勇敢的乱飞_197"
+ },
+ {
+ "source": "新浪体育",
+ "target": "降夭除魔齐天大圣"
+ },
+ {
+ "source": "新浪体育",
+ "target": "通古鬼斯"
+ },
+ {
+ "source": "天水2院张医生",
+ "target": "找北的时光"
+ },
+ {
+ "source": "暗能量泡泡",
+ "target": "天水2院张医生"
+ },
+ {
+ "source": "X_iao樓",
+ "target": "暗能量泡泡"
+ },
+ {
+ "source": "新浪体育",
+ "target": "X_iao樓"
+ },
+ {
+ "source": "罗昌平",
+ "target": "坚心耐苦"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "HS_Hanson"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "降夭除魔齐天大圣",
+ "target": "五只fffff菌"
+ },
+ {
+ "source": "新浪体育",
+ "target": "降夭除魔齐天大圣"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "登州笑笑生"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "北斗之南V"
+ },
+ {
+ "source": "吉四六",
+ "target": "大眼李"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "吉四六"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "吉四六",
+ "target": "杨术灵的公司是在香港注册的"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "吉四六"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "Petter大俠"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "新浪体育",
+ "target": "用户6101624258"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "BOSS大泡泡"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "降夭除魔齐天大圣"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "michelle0706"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "止于涂"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "已过期的凤梨罐头"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "吉四六",
+ "target": "Justice_Sum"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "吉四六"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "流云涛影的空间"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "和平与蛋黄酱"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "赵家周报"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "NKmilitaryStudies"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "偏不见就叫偏不见"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "新浪体育",
+ "target": "軟Sir你病得不輕為啥還放棄治療"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "一路上有你LXING"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "萨特5243280580"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "吉四六"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "避难所小子爱喝核子可乐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "在一起的围脖"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "夜半幽灵"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "会瘦的兔子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Tony悟空孙"
+ },
+ {
+ "source": "罗昌平",
+ "target": "2017-5serieS"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "新浪体育",
+ "target": "zds小懒"
+ },
+ {
+ "source": "耳光赵荒唐",
+ "target": "九又十三分之一"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "耳光赵荒唐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "喷嚏网铂程",
+ "target": "运交华盖2013"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "西瓜大将"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "无心耳语08",
+ "target": "阿特兰蒂斯的飞鸟"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "无心耳语08"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "歌手亚东",
+ "target": "心雨3266917092"
+ },
+ {
+ "source": "新浪体育",
+ "target": "歌手亚东"
+ },
+ {
+ "source": "Tiger公子",
+ "target": "饱饱的酸菜君"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "Tiger公子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "阿特兰蒂斯的飞鸟"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "曾经莱克今星敦"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "Camel3942",
+ "target": "showdfg"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "Camel3942"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "孟加拉虎的BLOG",
+ "target": "佬俚伺"
+ },
+ {
+ "source": "新浪体育",
+ "target": "孟加拉虎的BLOG"
+ },
+ {
+ "source": "相忘于2222",
+ "target": "盖世英雄_i"
+ },
+ {
+ "source": "新浪体育",
+ "target": "相忘于2222"
+ },
+ {
+ "source": "新浪体育",
+ "target": "坦帕湾魔鬼鱼"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Strong明丶"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "TreeHole2017"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "dgxbill"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "王霸丑"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "甲古的时代"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "huangky2013"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "于小文很跋扈"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "LAIZHONGYAO"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "大连地果"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "暮色柳塘"
+ },
+ {
+ "source": "上局沪段_沪",
+ "target": "春分大寒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "上局沪段_沪"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "猫饭P",
+ "target": "月想夜雫"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "猫饭P"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "醇淨氺"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "李白起"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "北京金戈戈",
+ "target": "财罗湖"
+ },
+ {
+ "source": "新浪体育",
+ "target": "北京金戈戈"
+ },
+ {
+ "source": "新浪体育",
+ "target": "兴盛泰"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "金粉洒家"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "光辉岁月0927"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "大烧饼学炒股"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "喷嚏网铂程",
+ "target": "Wcqsoil奇"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "新浪体育",
+ "target": "站在天桥数车灯儿"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "RX-78-8"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "喷嚏网铂程",
+ "target": "来自TTY"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "新浪体育",
+ "target": "终南金刚"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "烈日下的森岛"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "一任年华度如禅"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "鑦赟驜鶴"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "片桂hoho嘎"
+ },
+ {
+ "source": "新浪体育",
+ "target": "各路英雄我是炮灰"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "阿腿-人活着就是为了式姐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "my686"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "乔那个疯子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "Very流浪的小拖鞋"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "鬼面绣裁",
+ "target": "叶拂衣_"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "鬼面绣裁"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "阿腿-人活着就是为了式姐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "北京利生体育商厦"
+ },
+ {
+ "source": "相忘于2222",
+ "target": "饕餮海"
+ },
+ {
+ "source": "新浪体育",
+ "target": "相忘于2222"
+ },
+ {
+ "source": "新浪体育",
+ "target": "锦衣夜行452"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "ARS_锋线今天补齐了么"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "新浪体育",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "呛呛枪"
+ },
+ {
+ "source": "胖猪猪呼呼睡",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "胖猪猪呼呼睡"
+ },
+ {
+ "source": "新浪体育",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "架梁公"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "绵绵绵绵甜"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "TroubleKid是MADAO"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "新浪体育",
+ "target": "冷炜"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "信近言复"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "武人影像"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "ZY真人吉光片羽"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "ROCK在民大"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "钟涓之"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "DR-pepper大魔王"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "剡溪山君"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "顺势旺"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "优质羊毛",
+ "target": "buyueeeee"
+ },
+ {
+ "source": "紫霄时雨_苍穹要塞难民",
+ "target": "优质羊毛"
+ },
+ {
+ "source": "長滒",
+ "target": "紫霄时雨_苍穹要塞难民"
+ },
+ {
+ "source": "新浪体育",
+ "target": "長滒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "喜欢YY的城墙鸡"
+ },
+ {
+ "source": "鬼面绣裁",
+ "target": "月下桃花枝"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "鬼面绣裁"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "师律伟王"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "新浪体育",
+ "target": "郑顺天"
+ },
+ {
+ "source": "新浪体育",
+ "target": "路痴Lee"
+ },
+ {
+ "source": "罗昌平",
+ "target": "小小真菌"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "Xiao-斌杰",
+ "target": "蒋某people"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "Xiao-斌杰"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "ParPar2011"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "北京金戈戈",
+ "target": "简单感-悟"
+ },
+ {
+ "source": "新浪体育",
+ "target": "北京金戈戈"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "aeo000000"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "优质羊毛",
+ "target": "buyueeeee"
+ },
+ {
+ "source": "紫霄时雨_苍穹要塞难民",
+ "target": "优质羊毛"
+ },
+ {
+ "source": "長滒",
+ "target": "紫霄时雨_苍穹要塞难民"
+ },
+ {
+ "source": "新浪体育",
+ "target": "長滒"
+ },
+ {
+ "source": "暗能量泡泡",
+ "target": "天水2院张医生"
+ },
+ {
+ "source": "X_iao樓",
+ "target": "暗能量泡泡"
+ },
+ {
+ "source": "新浪体育",
+ "target": "X_iao樓"
+ },
+ {
+ "source": "苗条的小实",
+ "target": "67年生人的记忆碎片"
+ },
+ {
+ "source": "新浪体育",
+ "target": "苗条的小实"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "苏乄小溪"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "黄俄罗斯志愿兵"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "WeiGuan-Gworld"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "阳光的小青年123"
+ },
+ {
+ "source": "喷嚏网铂程",
+ "target": "TerryYin_S"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "新浪体育",
+ "target": "某气又方又圆"
+ },
+ {
+ "source": "北京金戈戈",
+ "target": "宝蛋她娘"
+ },
+ {
+ "source": "新浪体育",
+ "target": "北京金戈戈"
+ },
+ {
+ "source": "新浪体育",
+ "target": "WS_WBZ"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "鳯逑凰"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "刘海哲"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "纪岚挺"
+ },
+ {
+ "source": "Syfannn",
+ "target": "风起来停不下来"
+ },
+ {
+ "source": "罗昌平",
+ "target": "Syfannn"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "耳光赵荒唐",
+ "target": "赵不着调调儿"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "耳光赵荒唐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "满清十大酷刑"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "东168168168"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "_nearly转1",
+ "target": "开大招时会喵喵叫的friend"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "_nearly转1"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "VC火星人"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "换名字也不行"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "流星弦月"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Howard_Qian"
+ },
+ {
+ "source": "紹灝Lam",
+ "target": "流星弦月"
+ },
+ {
+ "source": "新浪体育",
+ "target": "紹灝Lam"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "成都大河"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "大漠孤烟平凉"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "新浪体育",
+ "target": "原始超越者2016"
+ },
+ {
+ "source": "罗昌平",
+ "target": "人生录音"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "中出宪政柏拉图",
+ "target": "柒vidy"
+ },
+ {
+ "source": "加菲杰克",
+ "target": "中出宪政柏拉图"
+ },
+ {
+ "source": "堕落熊猫001",
+ "target": "加菲杰克"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "堕落熊猫001"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "硕爱1篮球阿阿"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "新浪体育",
+ "target": "马周扬律师"
+ },
+ {
+ "source": "耳光赵荒唐",
+ "target": "嬉皮笑脸者说"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "耳光赵荒唐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "三尺之上有神明"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "谁执流素舞青月"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "耳光赵荒唐",
+ "target": "落花满衣"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "耳光赵荒唐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "手机用户2011685586"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "乐_扬"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "用户5989473265"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "Aresous"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "清者自來"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "霁月难逢00"
+ },
+ {
+ "source": "人形高达奈叶",
+ "target": "暴君T-233"
+ },
+ {
+ "source": "新浪体育",
+ "target": "人形高达奈叶"
+ },
+ {
+ "source": "新浪体育",
+ "target": "姚磊-三过七院而不入"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "yx希望"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "喷嚏网铂程",
+ "target": "烈酒清茶"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "魔都百姓海幽"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "伤心云雨8"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "清清美美"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "老海91816"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "不是宏推大宏推"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "Gabriel-VN"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "飞廉窝在小院子里养老"
+ },
+ {
+ "source": "喷嚏网铂程",
+ "target": "雷电看风云"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "苍天的渔民饥饿的猫"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "天心-月圆"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "起士林不是我开的"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "雨小农和獭祭鱼"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "搞一手"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "水润嘉华"
+ },
+ {
+ "source": "新浪体育",
+ "target": "彪悍猫妈"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "海獭小元帅"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "老盆"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "万言不值一杯酒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "-逐梦令-"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "踏古悠悠"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "笨不傻"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "我的牛呢"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "关东十二郎"
+ },
+ {
+ "source": "喷嚏网铂程",
+ "target": "来了来了了了"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "嗨哥苏大少",
+ "target": "富怡-宝盈-盈瑞恒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "嗨哥苏大少"
+ },
+ {
+ "source": "罗昌平",
+ "target": "于余宇"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "监视狂魔沈夜"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "MrBone"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "好想骂你煞笔哦"
+ },
+ {
+ "source": "京城吃货日记",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "方便卫生起效慢",
+ "target": "京城吃货日记"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "方便卫生起效慢"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "新浪体育",
+ "target": "命名馆的故事"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "黄鹤2016"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "韩某89"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "谢龙1洋"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "屯里NNRT"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "OP牛牛real"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "喷嚏网铂程",
+ "target": "Mirko的blog"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "stephen1999c",
+ "target": "edelman葛"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "stephen1999c"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "艾露恩之光"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "上局沪段_沪"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "小德银鳞胸甲"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "格瓦拉切糕"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "JoannaBlue",
+ "target": "小葱花饼香辣子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "JoannaBlue"
+ },
+ {
+ "source": "sazen",
+ "target": "黑羽太太薄爷爷"
+ },
+ {
+ "source": "新浪体育",
+ "target": "sazen"
+ },
+ {
+ "source": "新浪体育",
+ "target": "鋒瘋子"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "氮气君NegativelyNorm"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "YM0518"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "喷嚏网铂程",
+ "target": "风_凌羽"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "新浪体育",
+ "target": "JustForFunDude"
+ },
+ {
+ "source": "南迦巴瓦的晨曦",
+ "target": "茜akane茜"
+ },
+ {
+ "source": "新浪体育",
+ "target": "南迦巴瓦的晨曦"
+ },
+ {
+ "source": "新浪体育",
+ "target": "WOCHIHUN"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "手自栽"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "大风起兮谣言飞"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "豆名扬",
+ "target": "愚忠不中"
+ },
+ {
+ "source": "罗昌平",
+ "target": "豆名扬"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "M菊花的小GI"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "北京金戈戈",
+ "target": "铁笛惊龙"
+ },
+ {
+ "source": "新浪体育",
+ "target": "北京金戈戈"
+ },
+ {
+ "source": "新浪体育",
+ "target": "功夫查理"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "努力的萨摩"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "相忘于2222",
+ "target": "关洪导演"
+ },
+ {
+ "source": "新浪体育",
+ "target": "相忘于2222"
+ },
+ {
+ "source": "中出宪政柏拉图",
+ "target": "-隔壁尛王"
+ },
+ {
+ "source": "加菲杰克",
+ "target": "中出宪政柏拉图"
+ },
+ {
+ "source": "堕落熊猫001",
+ "target": "加菲杰克"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "堕落熊猫001"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "沙漠王子82"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "经济学原理0904"
+ },
+ {
+ "source": "胖猪猪呼呼睡",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "胖猪猪呼呼睡"
+ },
+ {
+ "source": "新浪体育",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "罗昌平",
+ "target": "Syfannn"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "喷嚏网铂程",
+ "target": "传说中滴临时工"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "风雨天骄"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "喷嚏网铂程",
+ "target": "饽饽瘦了"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "新浪体育",
+ "target": "三里寻烟"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "更木千秋"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "魔蟹0080"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "X_iao樓",
+ "target": "暗能量泡泡"
+ },
+ {
+ "source": "新浪体育",
+ "target": "X_iao樓"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "鏡妖星影"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "用户3639916871"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "带鸡的少侠a"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "竹林风雨来了"
+ },
+ {
+ "source": "罗昌平",
+ "target": "山魈屠魔"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "魔都310土匪",
+ "target": "苍玖染月"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "魔都310土匪"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "开老爷车的熊",
+ "target": "暗能量泡泡"
+ },
+ {
+ "source": "新浪体育",
+ "target": "开老爷车的熊"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "_nearly转1"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "zine692008991"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "Tiger公子",
+ "target": "木兰007"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "Tiger公子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "snowpanzer"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "吹風左"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "小弟震"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "耳光赵荒唐",
+ "target": "walbgt"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "耳光赵荒唐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "MTbuff"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "曾经依然46"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "huaxiawolf"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "天津王麟",
+ "target": "杨培军ypj"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "天津王麟"
+ },
+ {
+ "source": "张欧亚",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "成翔-同策咨询"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "新浪体育",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "hk2008abc"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "HCHZ2011"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "Xiao-斌杰"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "田字格大人"
+ },
+ {
+ "source": "中出宪政柏拉图",
+ "target": "说你酷"
+ },
+ {
+ "source": "加菲杰克",
+ "target": "中出宪政柏拉图"
+ },
+ {
+ "source": "堕落熊猫001",
+ "target": "加菲杰克"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "堕落熊猫001"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "蝶升思26812"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "剑吹白雪喵喵酱"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "换个名字好累人",
+ "target": "D8表情帝"
+ },
+ {
+ "source": "新浪体育",
+ "target": "换个名字好累人"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "_月亮六便士"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "适中求对"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "dengliang100"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "徐冲dy"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "喷嚏网铂程",
+ "target": "三分音符V"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "潘恩豪啊潘恩豪"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "被阳光点燃的小雏菊"
+ },
+ {
+ "source": "新浪体育",
+ "target": "投行老人"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "WJHLMM"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "孟加拉虎的BLOG"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "chariotwx"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "人一定要靠自己"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "东晓0117"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "耳光赵荒唐",
+ "target": "罗比巴吉奥"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "耳光赵荒唐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "说说我的丑"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "卖蟑螂的小男孩XD"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "喷嚏网铂程"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "新浪体育",
+ "target": "桃子老爹"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "幸福就是毛毛雪"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "绿绿绿绿绿到发亮"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "金城白菜斋"
+ },
+ {
+ "source": "鬼面绣裁",
+ "target": "谢乘月"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "鬼面绣裁"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "披着虎皮的羊"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "薄荷够凉"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "飛升法皇嬴曌堃"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "魏屹林"
+ },
+ {
+ "source": "五十岚空芔",
+ "target": "雷焰萌虎"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "五十岚空芔"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "叫我驴驴就好了"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "爆炸神教唯我独尊"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "雨点儿yang"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "lionshuang"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "李小宝gg"
+ },
+ {
+ "source": "中出宪政柏拉图",
+ "target": "阿里海牙科维奇"
+ },
+ {
+ "source": "加菲杰克",
+ "target": "中出宪政柏拉图"
+ },
+ {
+ "source": "堕落熊猫001",
+ "target": "加菲杰克"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "堕落熊猫001"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "activegeneral"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "UNIMET"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "超级马力0"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "Tiger公子",
+ "target": "西单骆驼"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "Tiger公子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "加菲杰克",
+ "target": "中出宪政柏拉图"
+ },
+ {
+ "source": "堕落熊猫001",
+ "target": "加菲杰克"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "堕落熊猫001"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "山城球长"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "新浪体育",
+ "target": "人民舆论V"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "风清熙"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "诶呀妈呀吓我一跳"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "也曾相识0906"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "魔都310土匪"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "smthpickboy"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "耳光赵荒唐",
+ "target": "阿瑟queen"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "耳光赵荒唐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "九州纹龙"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "仇玲夕"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "云自在_安平太"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "tuzixuexi"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "耳光赵荒唐",
+ "target": "真正的桐柏英雄"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "耳光赵荒唐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "青鸟tw"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "方便卫生起效慢",
+ "target": "罗叉叉"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "方便卫生起效慢"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "信仰之魂之根"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "WANGJXseEr"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "冬马和纱厨"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "取舍时空"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "香暗盈袖"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "歌手亚东"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "肺想说话"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "人形高达奈叶"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "书客的马甲"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "弗温居士"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "IHSAKAH"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "哥是厦大的"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "凌舒韵"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "景页的彭"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "paxl"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "澳洲李市民",
+ "target": "bsr1983"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "澳洲李市民"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "孙润琦最近有点胖啊"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "一头土猪"
+ },
+ {
+ "source": "新浪体育",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "若渝与若耶"
+ },
+ {
+ "source": "京城吃货日记",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "方便卫生起效慢",
+ "target": "京城吃货日记"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "方便卫生起效慢"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "新浪体育",
+ "target": "zzz洋仔"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "耳光赵荒唐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "牛大腕和羊羔肉"
+ },
+ {
+ "source": "远古的刀",
+ "target": "新型的农村人"
+ },
+ {
+ "source": "张欧亚",
+ "target": "远古的刀"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "京城吃货日记",
+ "target": "哥是厦大的"
+ },
+ {
+ "source": "方便卫生起效慢",
+ "target": "京城吃货日记"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "方便卫生起效慢"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "廿五廿六"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "隔岸看风景2016"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "天枢道"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "Augusttin"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS:图片评论 http",
+ "target": "宅心似箭"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS:图片评论 http"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "wwwwwww_W"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "毛巾在飞翔"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "WVA亿境战队李嘉炜"
+ },
+ {
+ "source": "京城吃货日记",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "方便卫生起效慢",
+ "target": "京城吃货日记"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "方便卫生起效慢"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "钟颙sz"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "長滒",
+ "target": "二只只"
+ },
+ {
+ "source": "新浪体育",
+ "target": "長滒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "飛過萬水千山"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "破晓劲风"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "相忘于2222",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "相忘于2222"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "竹园纤圆"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "古俐特"
+ },
+ {
+ "source": "新浪体育",
+ "target": "古城_tma"
+ },
+ {
+ "source": "新浪体育",
+ "target": "拖大林的斯拉机"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "浪里秤砣"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "堕落熊猫001",
+ "target": "加菲杰克"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "堕落熊猫001"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "秋风旅人"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "CDJ37"
+ },
+ {
+ "source": "新浪体育",
+ "target": "低碳George"
+ },
+ {
+ "source": "Tiger公子",
+ "target": "望霆止渴"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "Tiger公子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "新浪体育",
+ "target": "mogu丫头"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "游鱼居士"
+ },
+ {
+ "source": "胖猪猪呼呼睡",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "胖猪猪呼呼睡"
+ },
+ {
+ "source": "新浪体育",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "罗昌平",
+ "target": "yaozo"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "新浪体育",
+ "target": "plud2005"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "李家老三是藕霸"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "上下天光一碧万顷"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "肉食者Play",
+ "target": "于明乐81489"
+ },
+ {
+ "source": "新浪体育",
+ "target": "肉食者Play"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "电击鱼"
+ },
+ {
+ "source": "京城吃货日记",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "方便卫生起效慢",
+ "target": "京城吃货日记"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "方便卫生起效慢"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "新浪体育",
+ "target": "于贺_"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "Wilson老张"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "胖猪猪呼呼睡",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "胖猪猪呼呼睡"
+ },
+ {
+ "source": "新浪体育",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "顺手牵杨扬"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "garfield007"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "单位传达室老张"
+ },
+ {
+ "source": "新浪体育",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "毛i台钧"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "黄一米八二"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "穿长靴的柴郡猫"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "子-都"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "南迦巴瓦的晨曦"
+ },
+ {
+ "source": "新浪体育",
+ "target": "八一魄力"
+ },
+ {
+ "source": "罗昌平",
+ "target": "卅石矷"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "王唔悦",
+ "target": "Yoga_雪"
+ },
+ {
+ "source": "新浪体育",
+ "target": "王唔悦"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "黑岛结菜厨"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "肉食者Play"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "風痕2017"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "Tiger公子",
+ "target": "裸奔老者"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "Tiger公子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "罗昌平",
+ "target": "hai17"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "京城吃货日记",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "方便卫生起效慢",
+ "target": "京城吃货日记"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "方便卫生起效慢"
+ },
+ {
+ "source": "新浪体育",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "新浪体育",
+ "target": "0ne丶PunCh"
+ },
+ {
+ "source": "新浪体育",
+ "target": "AFC-ARS-FANS"
+ },
+ {
+ "source": "新浪体育",
+ "target": "嗨哥苏大少"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "Tiger公子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "XTG29"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "BJ卫东围脖"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "TeslaP100"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "千与千寻丶隐"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "知白守黑stock"
+ },
+ {
+ "source": "新浪体育",
+ "target": "爱学习的绿叶子"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "一只饼干熊"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "京城吃货日记",
+ "target": "变态的小幸福"
+ },
+ {
+ "source": "方便卫生起效慢",
+ "target": "京城吃货日记"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "方便卫生起效慢"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "丘八帮高级会员"
+ },
+ {
+ "source": "远古的刀",
+ "target": "周氏豆沙"
+ },
+ {
+ "source": "张欧亚",
+ "target": "远古的刀"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "花果山水帘洞齐天大圣0_0"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "福州摄影菌"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "醉生梦死的猫食"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "刘广赟卍"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "offfarmworkes2",
+ "target": "offfarmworkes2"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "offfarmworkes2"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "墨子墨子墨子"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "琉璃厂人"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "DaDaDaDaDaDa灰狼"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "麓林山人"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "叫个咩faye"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "healt"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "山里的孩子去砍柴"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "DaDaDaDaDaDa灰狼"
+ },
+ {
+ "source": "新浪体育",
+ "target": "我可以咬一口耶"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "Shawn_River"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "7816呵呵"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "平生最怕起名字"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "柳恒卓"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "京城吃货日记",
+ "target": "吴地老高"
+ },
+ {
+ "source": "方便卫生起效慢",
+ "target": "京城吃货日记"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "方便卫生起效慢"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "买不起早点的门房郑大爷"
+ },
+ {
+ "source": "罗昌平",
+ "target": "不吃萝卜的野生鱼"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "xHao晓灏",
+ "target": "w新晴w"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "xHao晓灏"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "SofayW"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "燃满愿"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "怀风的小号"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "龍叔論勢"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "offfarmworkes2"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "天津王麟"
+ },
+ {
+ "source": "张欧亚",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "酋长喊我回家吃饭"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "麻黑浮云",
+ "target": "英雄爱听故事"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "showdfg"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "可爱卫东"
+ },
+ {
+ "source": "新浪体育",
+ "target": "文话中国"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "暖色调的海"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "nevermind39"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "小凯最爱羊羊"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "不读书的撸舔立"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "seven_罗"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "强强187"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "铁的男"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "balestra"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "吴宇森影迷"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "阝东更鑫鑫向荣"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "吃包子喝水"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "方便卫生起效慢",
+ "target": "京城吃货日记"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "方便卫生起效慢"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "ORANGE_TULIP_2015__盾构工程"
+ },
+ {
+ "source": "罗昌平",
+ "target": "NATUREexploring"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "鋈圆"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "澳洲李市民"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "灰狼多样性",
+ "target": "Jeff-Chang"
+ },
+ {
+ "source": "新浪体育",
+ "target": "灰狼多样性"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "leo快跑_"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "慈悲为槐"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "王师北定FK"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "JoKer__x1"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "冯某钊"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "猫团长没有咸鱼"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "wu聊a"
+ },
+ {
+ "source": "罗昌平",
+ "target": "豆名扬"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "DaDaDaDaDaDa灰狼"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "北京金戈戈"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "清古正华"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "Anson余生"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "Pengtzuchieh"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "麻黑浮云"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "stephen1999c"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "无穷的探索"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "xHao晓灏"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "renaissance325"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "陈_八怪_"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "惊梦时从来不报社"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "茗品呀茗品"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "马里亚纳的沟"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "方便卫生起效慢"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "做题做到傻星人"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "罗昌平",
+ "target": "我是伍味子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "新浪体育",
+ "target": "流竜馬"
+ },
+ {
+ "source": "新浪体育",
+ "target": "海布利的机关枪"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "五十岚空芔"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "深度脸盲症"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "永强波家的"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "湖南省西瓜甜瓜研究所团支部"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "胖得有气质"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "过去的老照片",
+ "target": "卓裔人"
+ },
+ {
+ "source": "尧哥讲笑话",
+ "target": "过去的老照片"
+ },
+ {
+ "source": "没籽的葡萄好吃",
+ "target": "尧哥讲笑话"
+ },
+ {
+ "source": "新浪体育",
+ "target": "没籽的葡萄好吃"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "-_---17---_-"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "tang花_fh7"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "血红暴鲤魚"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "女汉子只是多了一那份坚强錟"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "村头蹲点小流氓"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "飞云乱度_unntopia"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "bmjj777"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "walmazon"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "来自熊堡"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "假装仁波切糕"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "罗昌平"
+ },
+ {
+ "source": "新浪体育",
+ "target": "我想爬出去"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "周伯通说话"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "九門道"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "猫屎洞"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "毛i台钧"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "CCCCRAZYCAT"
+ },
+ {
+ "source": "战争史研究WHS",
+ "target": "米拉库露"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "战争史研究WHS"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "stlxmsl"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "深圳-0755"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "老哥哥农农"
+ },
+ {
+ "source": "新浪体育",
+ "target": "筑城小铃铛"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "Red-or-Black"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "坚菓青少年俱乐部"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "追风少年何大宝"
+ },
+ {
+ "source": "新浪体育",
+ "target": "派大星爱吃锅包肉"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "大叔与流浪猫"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "SOLOWINGROCKY"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "weibuloser"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张晨初艺术空间",
+ "target": "汪俊玲_悦宸"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "傅生-若梦"
+ },
+ {
+ "source": "我们认识",
+ "target": "未文侯"
+ },
+ {
+ "source": "Christinez",
+ "target": "我们认识"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Christinez"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "秃秃小嘎"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "灰狼多样性"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "艾特胖叔叔"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张欧亚",
+ "target": "张晨初艺术空间"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "白胖浪浪"
+ },
+ {
+ "source": "新浪体育",
+ "target": "厐宇峰"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "Gen余根"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "梦佳红人"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "一小撮别有用心的小猪在跳舞"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "新浪体育",
+ "target": "原子CaoYuan"
+ },
+ {
+ "source": "新浪体育",
+ "target": "机智的大帅逼"
+ },
+ {
+ "source": "新浪体育",
+ "target": "李曼青sattvaUranus"
+ },
+ {
+ "source": "新浪体育",
+ "target": "何鑫JO"
+ },
+ {
+ "source": "lfx160219",
+ "target": "果果的妈妈"
+ },
+ {
+ "source": "开老爷车的熊",
+ "target": "lfx160219"
+ },
+ {
+ "source": "新浪体育",
+ "target": "开老爷车的熊"
+ },
+ {
+ "source": "新浪体育",
+ "target": "吴足道-alaya"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Urnotprepared"
+ },
+ {
+ "source": "新浪体育",
+ "target": "糖丶King"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "苍狼小幻_"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "静山观海"
+ },
+ {
+ "source": "新浪体育",
+ "target": "七親萌貨"
+ },
+ {
+ "source": "猫饭P",
+ "target": "江巴瓜poi"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "猫饭P"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "静山观海"
+ },
+ {
+ "source": "新浪体育",
+ "target": "A优喂"
+ },
+ {
+ "source": "新浪体育",
+ "target": "清宇建材"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "泥四步撒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张欧亚",
+ "target": "远古的刀"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "猿十三",
+ "target": "丁库北"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "猿十三"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "江南岸1217"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "看你妹夫斯基"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "廆仆"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "160么么哒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "洪涛观点"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "曜冰"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "张欧亚",
+ "target": "慈禧在坟墓里笑死"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "宋燕不v",
+ "target": "张欧亚"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "平凡746"
+ },
+ {
+ "source": "新浪体育",
+ "target": "嗷嘚儿刘"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "Sher-Conan"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "BiBlBa"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "jinguokai"
+ },
+ {
+ "source": "新浪体育",
+ "target": "九河下潲-天子渡口"
+ },
+ {
+ "source": "新浪体育",
+ "target": "霍斯勒阿瑟"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "噗噜噗噜轰隆隆隆"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "小闫---闫宇航2_167"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "拉拉菲尔尼兹海格"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "萧月御诸"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "黑贝的米兔"
+ },
+ {
+ "source": "新浪体育",
+ "target": "西班牙荣"
+ },
+ {
+ "source": "新浪体育",
+ "target": "那个叫做光的男人真他妈可爱"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Panda加速度"
+ },
+ {
+ "source": "新浪体育",
+ "target": "慢慢买4j"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "坠-绝命大番茄"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "鬼男三世"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "castle84"
+ },
+ {
+ "source": "紫霄时雨_苍穹要塞难民",
+ "target": "优质羊毛"
+ },
+ {
+ "source": "長滒",
+ "target": "紫霄时雨_苍穹要塞难民"
+ },
+ {
+ "source": "新浪体育",
+ "target": "長滒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "saxon-90"
+ },
+ {
+ "source": "新浪体育",
+ "target": "大虾本尊"
+ },
+ {
+ "source": "新浪体育",
+ "target": "拜访者查子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "赵毫毛"
+ },
+ {
+ "source": "新浪体育",
+ "target": "单刀126"
+ },
+ {
+ "source": "新浪体育",
+ "target": "霖希默语"
+ },
+ {
+ "source": "新浪体育",
+ "target": "艹丶LOVE丨霸道灬88"
+ },
+ {
+ "source": "新浪体育",
+ "target": "爱家庭教师爱篮球爱科比"
+ },
+ {
+ "source": "新浪体育",
+ "target": "小骉007"
+ },
+ {
+ "source": "lfx160219",
+ "target": "蓝天zjg"
+ },
+ {
+ "source": "开老爷车的熊",
+ "target": "lfx160219"
+ },
+ {
+ "source": "新浪体育",
+ "target": "开老爷车的熊"
+ },
+ {
+ "source": "新浪体育",
+ "target": "青蛙王子199905"
+ },
+ {
+ "source": "新浪体育",
+ "target": "生活顺顺利利"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "2x2eyes着装变身"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "____-------____________"
+ },
+ {
+ "source": "新浪体育",
+ "target": "信仰铮"
+ },
+ {
+ "source": "新浪体育",
+ "target": "sekino"
+ },
+ {
+ "source": "新浪体育",
+ "target": "HexFireSea"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "猫饭P"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "Digital蚊子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "神之佩恩"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "宋燕不v"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Double润-JR"
+ },
+ {
+ "source": "新浪体育",
+ "target": "NouWl"
+ },
+ {
+ "source": "新浪体育",
+ "target": "IceE_U"
+ },
+ {
+ "source": "新浪体育",
+ "target": "一支钥匙一把锁"
+ },
+ {
+ "source": "新浪体育",
+ "target": "浪剑痕_秋水尽洗天下劫"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "甲壳咪殿下"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "牧羽尽人"
+ },
+ {
+ "source": "新浪体育",
+ "target": "米衫儿"
+ },
+ {
+ "source": "花卷沉湎",
+ "target": "北京_彬爷"
+ },
+ {
+ "source": "新浪体育",
+ "target": "花卷沉湎"
+ },
+ {
+ "source": "新浪体育",
+ "target": "MYS_Parker"
+ },
+ {
+ "source": "新浪体育",
+ "target": "直抵黄龙府与诸君痛饮尔"
+ },
+ {
+ "source": "新浪体育",
+ "target": "名字这么难听"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "MKIII_TROMBE"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "吃鲸_满脑子打牌"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "李哈喽年抓虫子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "吉原嗷子手中一碗张屏的面"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "不会结网的蜘蛛"
+ },
+ {
+ "source": "新浪体育",
+ "target": "小超-唐新"
+ },
+ {
+ "source": "新浪体育",
+ "target": "CJ一个微博"
+ },
+ {
+ "source": "lfx160219",
+ "target": "华府骏苑姜熙健"
+ },
+ {
+ "source": "开老爷车的熊",
+ "target": "lfx160219"
+ },
+ {
+ "source": "新浪体育",
+ "target": "开老爷车的熊"
+ },
+ {
+ "source": "新浪体育",
+ "target": "剑雨风竹wzp"
+ },
+ {
+ "source": "新浪体育",
+ "target": "刺猬-的生活"
+ },
+ {
+ "source": "新浪体育",
+ "target": "EL-bazinga"
+ },
+ {
+ "source": "Michael-Cheung-",
+ "target": "隐隐灵音"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Michael-Cheung-"
+ },
+ {
+ "source": "lfx160219",
+ "target": "捣蛋少年2016"
+ },
+ {
+ "source": "开老爷车的熊",
+ "target": "lfx160219"
+ },
+ {
+ "source": "新浪体育",
+ "target": "开老爷车的熊"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "琉烟之烬"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "头条股票"
+ },
+ {
+ "source": "新浪体育",
+ "target": "八度鱼77"
+ },
+ {
+ "source": "新浪体育",
+ "target": "bywang1"
+ },
+ {
+ "source": "新浪体育",
+ "target": "寒木9740"
+ },
+ {
+ "source": "新浪体育",
+ "target": "不如一朵"
+ },
+ {
+ "source": "新浪体育",
+ "target": "牵下水拍照"
+ },
+ {
+ "source": "新浪体育",
+ "target": "实用格斗"
+ },
+ {
+ "source": "新浪体育",
+ "target": "焖猪脚"
+ },
+ {
+ "source": "新浪体育",
+ "target": "奔驰配件只售原厂全新"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "七绪平门"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "动物凶猛吗"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "皓乙_纯"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "lfx160219",
+ "target": "鹿允近衛連隊的黑少领要当牛仔了"
+ },
+ {
+ "source": "开老爷车的熊",
+ "target": "lfx160219"
+ },
+ {
+ "source": "新浪体育",
+ "target": "开老爷车的熊"
+ },
+ {
+ "source": "新浪体育",
+ "target": "真同你友缘"
+ },
+ {
+ "source": "新浪体育",
+ "target": "黄禾谷"
+ },
+ {
+ "source": "新浪体育",
+ "target": "刘志鲲"
+ },
+ {
+ "source": "lfx160219",
+ "target": "淘气的小福儿"
+ },
+ {
+ "source": "开老爷车的熊",
+ "target": "lfx160219"
+ },
+ {
+ "source": "新浪体育",
+ "target": "开老爷车的熊"
+ },
+ {
+ "source": "爱哟快乐",
+ "target": "上海曹凡"
+ },
+ {
+ "source": "我们认识",
+ "target": "爱哟快乐"
+ },
+ {
+ "source": "Christinez",
+ "target": "我们认识"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Christinez"
+ },
+ {
+ "source": "新浪体育",
+ "target": "云信321312747"
+ },
+ {
+ "source": "新浪体育",
+ "target": "樱花突击队"
+ },
+ {
+ "source": "夏至蟲之音",
+ "target": "原始超越者2016"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "夏至蟲之音"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "長滒",
+ "target": "紫霄时雨_苍穹要塞难民"
+ },
+ {
+ "source": "新浪体育",
+ "target": "長滒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "iFandom"
+ },
+ {
+ "source": "新浪体育",
+ "target": "自古秃顶多薄命"
+ },
+ {
+ "source": "VeryE",
+ "target": "上海曹凡"
+ },
+ {
+ "source": "爱哟快乐",
+ "target": "VeryE"
+ },
+ {
+ "source": "我们认识",
+ "target": "爱哟快乐"
+ },
+ {
+ "source": "Christinez",
+ "target": "我们认识"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Christinez"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "木_小呆是个死腐宅"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "小马_1623085"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "读心术宋_Ssir226"
+ },
+ {
+ "source": "lfx160219",
+ "target": "广陵古散"
+ },
+ {
+ "source": "开老爷车的熊",
+ "target": "lfx160219"
+ },
+ {
+ "source": "新浪体育",
+ "target": "开老爷车的熊"
+ },
+ {
+ "source": "新浪体育",
+ "target": "赵伯安"
+ },
+ {
+ "source": "新浪体育",
+ "target": "非典型精彩"
+ },
+ {
+ "source": "新浪体育",
+ "target": "沐之夏吉郎"
+ },
+ {
+ "source": "新浪体育",
+ "target": "-梦魂舞晶-"
+ },
+ {
+ "source": "新浪体育",
+ "target": "子非鱼非子vit"
+ },
+ {
+ "source": "过去的老照片",
+ "target": "我的威海"
+ },
+ {
+ "source": "尧哥讲笑话",
+ "target": "过去的老照片"
+ },
+ {
+ "source": "没籽的葡萄好吃",
+ "target": "尧哥讲笑话"
+ },
+ {
+ "source": "新浪体育",
+ "target": "没籽的葡萄好吃"
+ },
+ {
+ "source": "新浪体育",
+ "target": "要酒还是要故事"
+ },
+ {
+ "source": "开老爷车的熊",
+ "target": "lfx160219"
+ },
+ {
+ "source": "新浪体育",
+ "target": "开老爷车的熊"
+ },
+ {
+ "source": "新浪体育",
+ "target": "FullMetalLyle"
+ },
+ {
+ "source": "新浪体育",
+ "target": "开拓者3569"
+ },
+ {
+ "source": "新浪体育",
+ "target": "斯坦家汪汪"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "丿胡丶半仙"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "破产伍伍陆"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "爱哟快乐",
+ "target": "VeryE"
+ },
+ {
+ "source": "我们认识",
+ "target": "爱哟快乐"
+ },
+ {
+ "source": "Christinez",
+ "target": "我们认识"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Christinez"
+ },
+ {
+ "source": "新浪体育",
+ "target": "一路并肩而行baby"
+ },
+ {
+ "source": "我们认识",
+ "target": "爱哟快乐"
+ },
+ {
+ "source": "Christinez",
+ "target": "我们认识"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Christinez"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "短昵称-"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "JoannaBlue"
+ },
+ {
+ "source": "新浪体育",
+ "target": "o0勇敢的心0o"
+ },
+ {
+ "source": "新浪体育",
+ "target": "没有烟了"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "傲血困意"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "新浪体育",
+ "target": "人生装修中的王白薯"
+ },
+ {
+ "source": "新浪体育",
+ "target": "妙我居士"
+ },
+ {
+ "source": "新浪体育",
+ "target": "freeeeekick"
+ },
+ {
+ "source": "新浪体育",
+ "target": "不動的大圖書館Q"
+ },
+ {
+ "source": "新浪体育",
+ "target": "瑞新新新新"
+ },
+ {
+ "source": "新浪体育",
+ "target": "霹雳球球"
+ },
+ {
+ "source": "新浪体育",
+ "target": "山顶夫子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "長滒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "九翼龙皇"
+ },
+ {
+ "source": "Christinez",
+ "target": "我们认识"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Christinez"
+ },
+ {
+ "source": "新浪体育",
+ "target": "就是内个少年"
+ },
+ {
+ "source": "新浪体育",
+ "target": "MrFopenheart"
+ },
+ {
+ "source": "新浪体育",
+ "target": "梦里自在"
+ },
+ {
+ "source": "新浪体育",
+ "target": "文武书书"
+ },
+ {
+ "source": "天天越野跑",
+ "target": "JeremyKevin"
+ },
+ {
+ "source": "新浪体育",
+ "target": "天天越野跑"
+ },
+ {
+ "source": "新浪体育",
+ "target": "看客二两七"
+ },
+ {
+ "source": "尧哥讲笑话",
+ "target": "过去的老照片"
+ },
+ {
+ "source": "没籽的葡萄好吃",
+ "target": "尧哥讲笑话"
+ },
+ {
+ "source": "新浪体育",
+ "target": "没籽的葡萄好吃"
+ },
+ {
+ "source": "新浪体育",
+ "target": "笑嘻嘻不是孬东西"
+ },
+ {
+ "source": "新浪体育",
+ "target": "奔跑在路上的小猪哥哥"
+ },
+ {
+ "source": "新浪体育",
+ "target": "明月照清疯"
+ },
+ {
+ "source": "新浪体育",
+ "target": "波灵谷"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "零崎本心"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "人总要变僵尸"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "股民资源QQ719554823"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "新浪体育",
+ "target": "海中的小白鲨"
+ },
+ {
+ "source": "新浪体育",
+ "target": "小纯是不穿板甲的狂战"
+ },
+ {
+ "source": "新浪体育",
+ "target": "孙松AT"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "猿十三"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "中二有治"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "幽径不再悲剧"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "Daybreak_Canal"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "新浪体育",
+ "target": "门后的风铃"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "头喵的妈吃一身"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "花卷沉湎"
+ },
+ {
+ "source": "新浪体育",
+ "target": "flowtime"
+ },
+ {
+ "source": "没籽的葡萄好吃",
+ "target": "尧哥讲笑话"
+ },
+ {
+ "source": "新浪体育",
+ "target": "没籽的葡萄好吃"
+ },
+ {
+ "source": "新浪体育",
+ "target": "我叫照日格图"
+ },
+ {
+ "source": "新浪体育",
+ "target": "穆sir---"
+ },
+ {
+ "source": "新浪体育",
+ "target": "竹林之闲七"
+ },
+ {
+ "source": "新浪体育",
+ "target": "想去看看世界的小猴子"
+ },
+ {
+ "source": "新浪体育",
+ "target": "时间苍窮"
+ },
+ {
+ "source": "新浪体育",
+ "target": "入云伤"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Ranyuewan"
+ },
+ {
+ "source": "新浪体育",
+ "target": "只愿华丽一次"
+ },
+ {
+ "source": "新浪体育",
+ "target": "一百五十斤的维洛妮卡"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "熊宝-咪"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "夏至蟲之音"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "鱼丸粗面"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "团子桃子的麻麻"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "简木生--包丰瀛",
+ "target": "balcktomato"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "新浪体育",
+ "target": "熬浆糊99"
+ },
+ {
+ "source": "新浪体育",
+ "target": "安庆爱慕摄影师阿文"
+ },
+ {
+ "source": "新浪体育",
+ "target": "章海波"
+ },
+ {
+ "source": "新浪体育",
+ "target": "熬浆糊99"
+ },
+ {
+ "source": "新浪体育",
+ "target": "霞客遗风"
+ },
+ {
+ "source": "新浪体育",
+ "target": "34X5A7"
+ },
+ {
+ "source": "新浪体育",
+ "target": "简木生--包丰瀛"
+ },
+ {
+ "source": "新浪体育",
+ "target": "花贰街"
+ },
+ {
+ "source": "新浪体育",
+ "target": "孤单一个人去返工II"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Cindy是我的"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Hu_子叔叔"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "东瓜_DONGGUA"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "BooM_讽_刺_"
+ },
+ {
+ "source": "新浪体育",
+ "target": "all-time-low"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "LP呆啊呆"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Michael刘磊"
+ },
+ {
+ "source": "新浪体育",
+ "target": "君王板甲胡屠户"
+ },
+ {
+ "source": "新浪体育",
+ "target": "光明家具刘志军"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "MADAO兽-UP"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "Cal_liu"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "镜花水月137"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "上善若水_waterliker"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "FLAX_圩田经济学安心种地"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "王小签"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "MR-WANGRX"
+ },
+ {
+ "source": "新浪体育",
+ "target": "美丽居曹亮"
+ },
+ {
+ "source": "新浪体育",
+ "target": "拖拉机再垃圾也能拖垃圾H"
+ },
+ {
+ "source": "新浪体育",
+ "target": "只道是寻常草履虫"
+ },
+ {
+ "source": "新浪体育",
+ "target": "最近很无聊---"
+ },
+ {
+ "source": "新浪体育",
+ "target": "HERO-熊"
+ },
+ {
+ "source": "新浪体育",
+ "target": "床保社"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "超昂闪存"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "天天越野跑"
+ },
+ {
+ "source": "新浪体育",
+ "target": "大伟MADSam"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "谷子地Dwane"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "王小硕的小马甲"
+ },
+ {
+ "source": "Christinez",
+ "target": "三口一瓶奶"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Christinez"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "HBG_喵"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "李狗嗨ing"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "Eye2eyes"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "后仓松鼠"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "ERLIANGJO"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "捆着发木ALT"
+ },
+ {
+ "source": "重工组长于彦舒",
+ "target": "激素少女陈一水"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ },
+ {
+ "source": "新浪体育",
+ "target": "恩里克"
+ },
+ {
+ "source": "新浪体育",
+ "target": "没籽的葡萄好吃"
+ },
+ {
+ "source": "新浪体育",
+ "target": "偶尔有点帅1988"
+ },
+ {
+ "source": "新浪体育",
+ "target": "开老爷车的熊"
+ },
+ {
+ "source": "新浪体育",
+ "target": "北辰慢慢跑"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Mitsuhide明智"
+ },
+ {
+ "source": "新浪体育",
+ "target": "不记得今天是礼拜几"
+ },
+ {
+ "source": "新浪体育",
+ "target": "耗社会主义股市羊毛"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Christinez"
+ },
+ {
+ "source": "新浪体育",
+ "target": "Mr-LeeZL"
+ },
+ {
+ "source": "新浪体育",
+ "target": "给美希庆生的P_卡卡"
+ },
+ {
+ "source": "新浪体育",
+ "target": "重工组长于彦舒"
+ }
+ ],
+ [{
+ "name": ""
+ },
+ {
+ "name": "Camel3942"
+ },
+ {
+ "name": "Christinez"
+ },
+ {
+ "name": "JoannaBlue"
+ },
+ {
+ "name": "Michael-Cheung-"
+ },
+ {
+ "name": "NKmilitaryStudies"
+ },
+ {
+ "name": "Syfannn"
+ },
+ {
+ "name": "Tiger公子"
+ },
+ {
+ "name": "VeryE"
+ },
+ {
+ "name": "X_iao樓"
+ },
+ {
+ "name": "Xiao-斌杰"
+ },
+ {
+ "name": "_nearly转1"
+ },
+ {
+ "name": "lfx160219"
+ },
+ {
+ "name": "offfarmworkes2"
+ },
+ {
+ "name": "sazen"
+ },
+ {
+ "name": "stephen1999c"
+ },
+ {
+ "name": "w新晴w"
+ },
+ {
+ "name": "xHao晓灏"
+ },
+ {
+ "name": "上局沪段_沪"
+ },
+ {
+ "name": "中出宪政柏拉图"
+ },
+ {
+ "name": "中华龙会"
+ },
+ {
+ "name": "五十岚空芔"
+ },
+ {
+ "name": "京城吃货日记"
+ },
+ {
+ "name": "人形高达奈叶"
+ },
+ {
+ "name": "优质羊毛"
+ },
+ {
+ "name": "加菲杰克"
+ },
+ {
+ "name": "北京金戈戈"
+ },
+ {
+ "name": "南迦巴瓦的晨曦"
+ },
+ {
+ "name": "吉四六"
+ },
+ {
+ "name": "喷嚏网铂程"
+ },
+ {
+ "name": "嗨哥苏大少"
+ },
+ {
+ "name": "堕落熊猫001"
+ },
+ {
+ "name": "夏至蟲之音"
+ },
+ {
+ "name": "天天越野跑"
+ },
+ {
+ "name": "天水2院张医生"
+ },
+ {
+ "name": "天津王麟"
+ },
+ {
+ "name": "孟加拉虎的BLOG"
+ },
+ {
+ "name": "宋燕不v"
+ },
+ {
+ "name": "尧哥讲笑话"
+ },
+ {
+ "name": "开老爷车的熊"
+ },
+ {
+ "name": "张晨初艺术空间"
+ },
+ {
+ "name": "张欧亚"
+ },
+ {
+ "name": "我们认识"
+ },
+ {
+ "name": "战争史研究WHS"
+ },
+ {
+ "name": "战争史研究WHS:图片评论 http"
+ },
+ {
+ "name": "投行老人"
+ },
+ {
+ "name": "换个名字好累人"
+ },
+ {
+ "name": "新浪体育"
+ },
+ {
+ "name": "方便卫生起效慢"
+ },
+ {
+ "name": "无心耳语08"
+ },
+ {
+ "name": "暗能量泡泡"
+ },
+ {
+ "name": "歌手亚东"
+ },
+ {
+ "name": "没籽的葡萄好吃"
+ },
+ {
+ "name": "澳洲李市民"
+ },
+ {
+ "name": "灰狼多样性"
+ },
+ {
+ "name": "爱哟快乐"
+ },
+ {
+ "name": "猫饭P"
+ },
+ {
+ "name": "猿十三"
+ },
+ {
+ "name": "王唔悦"
+ },
+ {
+ "name": "相忘于2222"
+ },
+ {
+ "name": "简木生--包丰瀛"
+ },
+ {
+ "name": "紫霄时雨_苍穹要塞难民"
+ },
+ {
+ "name": "紹灝Lam"
+ },
+ {
+ "name": "罗昌平"
+ },
+ {
+ "name": "耳光赵荒唐"
+ },
+ {
+ "name": "肉食者Play"
+ },
+ {
+ "name": "胖猪猪呼呼睡"
+ },
+ {
+ "name": "花卷沉湎"
+ },
+ {
+ "name": "苗条的小实"
+ },
+ {
+ "name": "豆名扬"
+ },
+ {
+ "name": "过去的老照片"
+ },
+ {
+ "name": "远古的刀"
+ },
+ {
+ "name": "重工组长于彦舒"
+ },
+ {
+ "name": "長滒"
+ },
+ {
+ "name": "陇上优品-陶磊"
+ },
+ {
+ "name": "降夭除魔齐天大圣"
+ },
+ {
+ "name": "马周扬律师"
+ },
+ {
+ "name": "鬼面绣裁"
+ },
+ {
+ "name": "魔都310土匪"
+ },
+ {
+ "name": "麻黑浮云"
+ }
+ ],
+ "#搏击VS太极# 近日武林不是很太平,争论也很多[思考]有网友翻出前全运会武术冠军、著名演员@李连杰 接受杨澜专访时说的话,李连杰认为武术套路就是花架子——“当然\n了”,不是杀人的功夫。因为现在不再需要真功夫了,所谓的真功夫就是杀人最快的方法。 http://t.cn/RXgIUxg . ",
+ "4102228300324979",
+ "新浪体育"
+]
\ No newline at end of file
diff --git a/test/requirements.txt b/test/requirements.txt
new file mode 100644
index 000000000..563f81bee
--- /dev/null
+++ b/test/requirements.txt
@@ -0,0 +1,11 @@
+nose
+codecov
+coverage
+pandas
+numpy
+jupyter
+flake8
+mock;python_version<"3"
+echarts-countries-pypkg
+echarts-china-cities-pypkg
+echarts-china-provinces-pypkg
diff --git a/test/test.py b/test/test.py
deleted file mode 100644
index e5a4b14f5..000000000
--- a/test/test.py
+++ /dev/null
@@ -1,15 +0,0 @@
-
-from .test_bar import test_bar
-from .test_effectscatter import test_effectscatter
-from .test_funnel import test_funnel
-from .test_gauge import test_gague
-from .test_geo import test_geo
-from .test_graph import test_graph
-from .test_line import test_line
-from .test_map import test_map
-from .test_parallel import test_parallel
-from .test_pie import test_pie
-from .test_polar import test_polar
-from .test_radar import test_radar
-from .test_scatter import test_scatter
-from .test_wordcloud import test_wordcloud
diff --git a/test/test_bar.py b/test/test_bar.py
index d996f2020..cd6d68c5c 100644
--- a/test/test_bar.py
+++ b/test/test_bar.py
@@ -1,16 +1,111 @@
-from pyecharts import Bar, Line
-
-def test_bar():
- attr = ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
- v1 = [5, 20, 36, 10, 75, 90]
- v2 = [10, 25, 8, 60, 20, 80]
- v3 = [first + second + 35 for first, second in zip(v1, v2)]
-
- bar = Bar("TITLE", "SUBTITLE")
- bar.add("B", attr, v2, isstack=True)
- bar.add("A", attr, v1, label_text_size=20, isstack=True)
- line = Line()
- line.add("C", attr, v3, label_text_size=20)
- bar.custom(line.get_series())
- bar.show_config()
- bar.render("e:/xx.html")
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
+
+import random
+
+from pyecharts import Bar
+from test.constants import CLOTHES
+
+clothes_v1 = [5, 20, 36, 10, 75, 90]
+clothes_v2 = [10, 25, 8, 60, 20, 80]
+
+
+def test_bar_stack():
+ bar = Bar("柱状图数据堆叠示例")
+ bar.add("商家A", CLOTHES, clothes_v1, is_stack=True)
+ bar.add("商家B", CLOTHES, clothes_v2, is_stack=True)
+ bar.chart_id = 'id_chart_id'
+ html_content = bar._repr_html_()
+ assert 'id_chart_id' == bar.chart_id
+ assert "dataZoom" not in html_content
+ assert "stack_" in html_content
+
+
+def test_bar_marks():
+ bar = Bar("标记线和标记点示例")
+ bar.add("商家A", CLOTHES, clothes_v1, mark_point=["average"])
+ bar.add("商家B", CLOTHES, clothes_v2, mark_line=["min", "max"])
+ assert '"average"' in bar._repr_html_()
+
+
+def test_bar_convert_xy_axis():
+ bar = Bar("x 轴和 y 轴交换")
+ bar.add("商家A", CLOTHES, clothes_v1)
+ bar.add("商家B", CLOTHES, clothes_v2, is_convert=True)
+ assert "average" not in bar._repr_html_()
+
+
+def test_bar_histogram():
+ bar = Bar("直方图示例")
+ bar.add("", CLOTHES * 2, clothes_v1 + clothes_v2, bar_category_gap=0)
+ bar.render()
+
+
+def test_bar_rotate_label():
+ days = ["{}天".format(i) for i in range(20)]
+ days_v1 = [random.randint(1, 20) for _ in range(20)]
+ bar = Bar("坐标轴标签旋转示例")
+ bar.add("", days, days_v1, xaxis_interval=0, xaxis_rotate=30,
+ yaxis_rotate=30)
+ assert "stack_" not in bar._repr_html_()
+
+
+def test_bar_waterfall():
+ months = ["{}月".format(i) for i in range(1, 8)]
+ months_v1 = [0, 100, 200, 300, 400, 220, 250]
+ months_v2 = [1000, 800, 600, 500, 450, 400, 300]
+ bar = Bar("瀑布图示例")
+ bar.add("", months, months_v1, label_color=['rgba(0,0,0,0)'],
+ is_stack=True)
+ bar.add("月份", months, months_v2, is_label_show=True, is_stack=True,
+ label_pos='inside')
+ bar.render()
+
+
+def test_bar_datazoom_undefined():
+ days = ["{}天".format(i) for i in range(30)]
+ days_v1 = [random.randint(1, 30) for _ in range(30)]
+ bar = Bar("Bar - datazoom 默认 示例")
+ bar.add("", days, days_v1, is_label_show=True, is_datazoom_show=True)
+ html_content = bar._repr_html_()
+ assert "dataZoom" in html_content
+ assert ': "slider"' in html_content
+ assert ': "inside"' not in html_content
+
+
+def test_bar_datazoom_slider():
+ days = ["{}天".format(i) for i in range(30)]
+ days_v1 = [random.randint(1, 30) for _ in range(30)]
+ bar = Bar("Bar - datazoom 示例")
+ bar.add("", days, days_v1, is_datazoom_show=True,
+ datazoom_type='slider', datazoom_range=[10, 25])
+ html_content = bar._repr_html_()
+ assert "dataZoom" in html_content
+ assert ': "slider"' in html_content
+ assert ': "inside"' not in html_content
+
+
+def test_bar_datazoom_inside():
+ days = ["{}天".format(i) for i in range(30)]
+ days_v1 = [random.randint(1, 30) for _ in range(30)]
+ bar = Bar("Bar - datazoom - inside 示例")
+ bar.add("", days, days_v1, is_datazoom_show=True,
+ datazoom_type='inside', datazoom_range=[10, 25])
+ html_content = bar._repr_html_()
+ assert "dataZoom" in html_content
+ assert ': "inside"' in html_content
+ assert ': "slider"' not in html_content
+
+
+def test_bar_datazoom_both():
+ days = ["{}天".format(i) for i in range(30)]
+ days_v1 = [random.randint(1, 30) for _ in range(30)]
+ bar = Bar("Bar - datazoom - both 示例")
+ bar.add("", days, days_v1, is_datazoom_show=True,
+ datazoom_type='both', datazoom_range=[10, 25],
+ is_toolbox_show=False)
+ html_content = bar._repr_html_()
+ assert "dataZoom" in html_content
+ assert ': "inside"' in html_content
+ assert ': "slider"' in html_content
diff --git a/test/test_bar3D.py b/test/test_bar3D.py
new file mode 100644
index 000000000..7e3e88ce3
--- /dev/null
+++ b/test/test_bar3D.py
@@ -0,0 +1,81 @@
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
+
+from pyecharts import Bar3D
+from nose.tools import eq_
+from test.constants import RANGE_COLOR, X_TIME, Y_WEEK
+
+
+data = [
+ [0, 0, 5], [0, 1, 1], [0, 2, 0], [0, 3, 0], [0, 4, 0], [0, 5, 0],
+ [0, 6, 0], [0, 7, 0], [0, 8, 0], [0, 9, 0], [0, 10, 0], [0, 11, 2],
+ [0, 12, 4], [0, 13, 1], [0, 14, 1], [0, 15, 3], [0, 16, 4], [0, 17, 6],
+ [0, 18, 4], [0, 19, 4], [0, 20, 3], [0, 21, 3], [0, 22, 2], [0, 23, 5],
+ [1, 0, 7], [1, 1, 0], [1, 2, 0], [1, 3, 0], [1, 4, 0], [1, 5, 0],
+ [1, 6, 0], [1, 7, 0], [1, 8, 0], [1, 9, 0], [1, 10, 5], [1, 11, 2],
+ [1, 12, 2], [1, 13, 6], [1, 14, 9], [1, 15, 11], [1, 16, 6], [1, 17, 7],
+ [1, 18, 8], [1, 19, 12], [1, 20, 5], [1, 21, 5], [1, 22, 7], [1, 23, 2],
+ [2, 0, 1], [2, 1, 1], [2, 2, 0], [2, 3, 0], [2, 4, 0], [2, 5, 0],
+ [2, 6, 0], [2, 7, 0], [2, 8, 0], [2, 9, 0], [2, 10, 3], [2, 11, 2],
+ [2, 12, 1], [2, 13, 9], [2, 14, 8], [2, 15, 10], [2, 16, 6], [2, 17, 5],
+ [2, 18, 5], [2, 19, 5], [2, 20, 7], [2, 21, 4], [2, 22, 2], [2, 23, 4],
+ [3, 0, 7], [3, 1, 3], [3, 2, 0], [3, 3, 0], [3, 4, 0], [3, 5, 0],
+ [3, 6, 0], [3, 7, 0], [3, 8, 1], [3, 9, 0], [3, 10, 5], [3, 11, 4],
+ [3, 12, 7], [3, 13, 14], [3, 14, 13], [3, 15, 12], [3, 16, 9], [3, 17, 5],
+ [3, 18, 5], [3, 19, 10], [3, 20, 6], [3, 21, 4], [3, 22, 4], [3, 23, 1],
+ [4, 0, 1], [4, 1, 3], [4, 2, 0], [4, 3, 0], [4, 4, 0], [4, 5, 1],
+ [4, 6, 0], [4, 7, 0], [4, 8, 0], [4, 9, 2], [4, 10, 4], [4, 11, 4],
+ [4, 12, 2], [4, 13, 4], [4, 14, 4], [4, 15, 14], [4, 16, 12], [4, 17, 1],
+ [4, 18, 8], [4, 19, 5], [4, 20, 3], [4, 21, 7], [4, 22, 3], [4, 23, 0],
+ [5, 0, 2], [5, 1, 1], [5, 2, 0], [5, 3, 3], [5, 4, 0], [5, 5, 0],
+ [5, 6, 0], [5, 7, 0], [5, 8, 2], [5, 9, 0], [5, 10, 4], [5, 11, 1],
+ [5, 12, 5], [5, 13, 10], [5, 14, 5], [5, 15, 7], [5, 16, 11], [5, 17, 6],
+ [5, 18, 0], [5, 19, 5], [5, 20, 3], [5, 21, 4], [5, 22, 2], [5, 23, 0],
+ [6, 0, 1], [6, 1, 0], [6, 2, 0], [6, 3, 0], [6, 4, 0], [6, 5, 0],
+ [6, 6, 0], [6, 7, 0], [6, 8, 0], [6, 9, 0], [6, 10, 1], [6, 11, 0],
+ [6, 12, 2], [6, 13, 1], [6, 14, 3], [6, 15, 4], [6, 16, 0], [6, 17, 0],
+ [6, 18, 0], [6, 19, 0], [6, 20, 1], [6, 21, 2], [6, 22, 2], [6, 23, 6]
+]
+
+
+def test_bar3d_default():
+ bar3d = Bar3D("3D 柱状图示例", width=1200, height=600)
+ bar3d.add("", X_TIME, Y_WEEK, [[d[1], d[0], d[2]] for d in data],
+ is_visualmap=True, visual_range=[0, 20],
+ visual_range_color=RANGE_COLOR,
+ grid3d_width=200, grid3d_depth=80)
+ assert "lambert" not in bar3d._repr_html_()
+
+
+def test_bar3d_shading_lambert():
+ bar3d = Bar3D("3D 柱状图示例", width=1200, height=600)
+ bar3d.add("", X_TIME, Y_WEEK, [[d[1], d[0], d[2]] for d in data],
+ is_visualmap=True, visual_range=[0, 20],
+ visual_range_color=RANGE_COLOR, grid3d_width=200,
+ grid3d_depth=80, grid3d_shading='lambert')
+ assert "lambert" in bar3d._repr_html_()
+
+
+def test_bar3d_rotate_automatically():
+ bar3d = Bar3D("3D 柱状图示例", width=1200, height=600)
+ bar3d.add("", X_TIME, Y_WEEK, [[d[1], d[0], d[2]] for d in data],
+ is_visualmap=True, visual_range=[0, 20],
+ visual_range_color=RANGE_COLOR, grid3d_width=200,
+ grid3d_depth=80, is_grid3d_rotate=True)
+ bar3d.render()
+
+
+def test_bar3d_rotate_automatically_speedup():
+ bar3d = Bar3D("3D 柱状图示例", width=1200, height=600)
+ bar3d.add("", X_TIME, Y_WEEK, [[d[1], d[0], d[2]] for d in data],
+ is_visualmap=True, visual_range=[0, 20],
+ visual_range_color=RANGE_COLOR, grid3d_width=200,
+ grid3d_depth=80, is_grid3d_rotate=True,
+ grid3d_rotate_speed=180)
+ bar3d.render()
+
+
+def test_bar3d_must_use_canvas():
+ bar3d = Bar3D("3D 柱状图示例", width=1200, height=600)
+ eq_(bar3d.renderer, 'canvas')
diff --git a/test/test_base.py b/test/test_base.py
new file mode 100644
index 000000000..ff6b52297
--- /dev/null
+++ b/test/test_base.py
@@ -0,0 +1,137 @@
+# coding=utf-8
+from __future__ import unicode_literals
+
+import os
+import sys
+import json
+
+import pandas as pd
+import numpy as np
+
+from nose.tools import eq_
+from pyecharts import Bar, Map
+from test.constants import CLOTHES
+from test.utils import get_default_rendering_file_content
+
+TITLE = "柱状图数据堆叠示例"
+
+
+def create_a_bar(title, renderer='canvas'):
+ v1 = [5, 20, 36, 10, 75, 90]
+ v2 = [10, 25, 8, 60, 20, 80]
+ bar = Bar(title, renderer=renderer)
+ bar.add("商家A", CLOTHES, v1, is_stack=True)
+ bar.add("商家B", CLOTHES, v2, is_stack=True)
+ return bar
+
+
+def test_svg_option():
+ bar = create_a_bar(TITLE, renderer='svg')
+ html = bar.render_embed()
+ assert "{renderer: 'svg'}" in html
+
+
+def test_svg_option_in_note_book():
+ bar = create_a_bar(TITLE, renderer='svg')
+ html = bar._repr_html_()
+ assert "{renderer: 'svg'}" in html
+
+
+def test_canvas_option():
+ bar = create_a_bar(TITLE)
+ html = bar.render_embed()
+ assert "{renderer: 'canvas'}" in html
+
+
+def test_canvas_option_in_notebook():
+ bar = create_a_bar(TITLE)
+ html = bar._repr_html_()
+ assert "{renderer: 'canvas'}" in html
+
+
+def test_embed_option():
+ bar = create_a_bar(TITLE)
+ html = bar.render_embed()
+ json_encoded_title = json.dumps(TITLE)
+ assert json_encoded_title in html
+ assert "" not in html
+ assert "" not in html
+
+
+def test_base_get_js_dependencies():
+ bar = create_a_bar(TITLE)
+ dependencies = bar.get_js_dependencies()
+ expected = ['echarts.min']
+ eq_(dependencies, expected)
+
+
+def test_numpy_array():
+ v1 = np.array([5, 20, 36, 10, 75, 90])
+ bar = Bar(TITLE)
+ bar.add("商家A", CLOTHES, v1, is_stack=True)
+ html = bar.render_embed()
+ json_encoded_title = json.dumps(TITLE)
+ assert json_encoded_title in html
+
+
+def test_pandas_dataframe():
+ title = 'bar chart'
+ index = pd.date_range('3/8/2017', periods=6, freq='M')
+ df1 = pd.DataFrame(np.random.randn(6), index=index)
+ df2 = pd.DataFrame(np.random.randn(6), index=index)
+
+ dtvalue1 = [i[0] for i in df1.values]
+ dtvalue2 = [i[0] for i in df2.values]
+ _index = [i for i in df1.index.format()]
+
+ bar = Bar(title, 'Profit and loss situation')
+ bar.add('profit', _index, dtvalue1)
+ bar.add('loss', _index, dtvalue2)
+ html = bar.render_embed()
+ assert title in html
+
+
+def test_echarts_position_in_render_html():
+ value = [20, 190, 253, 77, 65]
+ attr = ['汕头市', '汕尾市', '揭阳市', '阳江市', '肇庆市']
+ map = Map("广东地图示例", width=1200, height=600, page_title=TITLE)
+ map.add("", attr, value, maptype='广东',
+ is_visualmap=True, visual_text_color='#000')
+ map.render()
+ actual_content = get_default_rendering_file_content()
+ assert TITLE in actual_content
+
+
+def test_show_config():
+ stdout_ = sys.stdout
+ captured_stdout = 'stdout.txt'
+ try:
+ with open(captured_stdout, 'w') as f:
+ sys.stdout = f
+ bar = create_a_bar("new")
+ bar.print_echarts_options()
+ except Exception as e:
+ # whatever happens, continue and restore stdout
+ print(e)
+ sys.stdout = stdout_
+ with open(captured_stdout, 'r') as f:
+ content = f.read()
+ assert 'None' not in content
+ assert 'null' in content
+ assert 'false' in content
+ assert 'False' not in content
+ os.unlink(captured_stdout)
+
+
+def test_base_cast_records():
+ records = [{"key": 1}, {"value": 2}]
+ keys, values = Bar.cast(records)
+ eq_(keys, ["key", "value"])
+ eq_(values, [1, 2])
+
+
+def test_base_cast_dict():
+ adict = {"key": 1, "value": 2}
+ keys, values = Bar.cast(adict)
+ eq_(keys, ["key", "value"])
+ eq_(values, [1, 2])
diff --git a/test/test_boxplot.py b/test/test_boxplot.py
new file mode 100644
index 000000000..dccdadeb6
--- /dev/null
+++ b/test/test_boxplot.py
@@ -0,0 +1,47 @@
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
+
+from pyecharts import Boxplot
+
+
+def test_boxplot_one_legend():
+ boxplot = Boxplot("箱形图")
+ x_axis = ['expr1', 'expr2', 'expr3', 'expr4', 'expr5']
+ y_axis = [
+ [850, 740, 900, 1070, 930, 850, 950, 980, 980, 880,
+ 1000, 980, 930, 650, 760, 810, 1000, 1000, 960, 960],
+ [960, 940, 960, 940, 880, 800, 850, 880, 900, 840,
+ 830, 790, 810, 880, 880, 830, 800, 790, 760, 800],
+ [880, 880, 880, 860, 720, 720, 620, 860, 970, 950,
+ 880, 910, 850, 870, 840, 840, 850, 840, 840, 840],
+ [890, 810, 810, 820, 800, 770, 760, 740, 750, 760,
+ 910, 920, 890, 860, 880, 720, 840, 850, 850, 780],
+ [890, 840, 780, 810, 760, 810, 790, 810, 820, 850,
+ 870, 870, 810, 740, 810, 940, 950, 800, 810, 870]
+ ]
+ _yaxis = boxplot.prepare_data(y_axis)
+ boxplot.add("boxplot", x_axis, _yaxis)
+ boxplot.render()
+
+
+def test_boxplot_two_legend():
+ boxplot = Boxplot("箱形图")
+ x_axis = ['expr1', 'expr2']
+ y_axis1 = [
+ [850, 740, 900, 1070, 930, 850, 950, 980, 980, 880,
+ 1000, 980, 930, 650, 760, 810, 1000, 1000, 960, 960],
+ [960, 940, 960, 940, 880, 800, 850, 880, 900, 840,
+ 830, 790, 810, 880, 880, 830, 800, 790, 760, 800],
+ ]
+ y_axis2 = [
+ [890, 810, 810, 820, 800, 770, 760, 740, 750, 760,
+ 910, 920, 890, 860, 880, 720, 840, 850, 850, 780],
+ [890, 840, 780, 810, 760, 810, 790, 810, 820, 850,
+ 870, 870, 810, 740, 810, 940, 950, 800, 810, 870]
+ ]
+ boxplot.add("category1", x_axis, boxplot.prepare_data(y_axis1))
+ boxplot.add("category2", x_axis, boxplot.prepare_data(y_axis2))
+ html_content = boxplot._repr_html_()
+ assert "category1" in html_content
+ assert "category2" in html_content
diff --git a/test/test_chart_properties.py b/test/test_chart_properties.py
new file mode 100644
index 000000000..04952367b
--- /dev/null
+++ b/test/test_chart_properties.py
@@ -0,0 +1,57 @@
+#!/usr/bin/env python
+# coding=utf-8
+
+from __future__ import unicode_literals
+
+from pyecharts.base import Base
+from pyecharts import Bar, Line, Grid
+from test.constants import CLOTHES, WEEK
+from nose.tools import eq_
+
+UUID_HEX_LENGTH = 32
+
+
+def test_base_properties():
+ b = Base()
+ eq_(len(b.chart_id), UUID_HEX_LENGTH)
+ eq_(b.width, 800)
+ eq_(b.height, 400)
+ eq_(len(b.options), 0) # empty
+ assert ('echarts' in b.js_dependencies) or \
+ ('echarts.min' in b.js_dependencies)
+
+
+def test_chart_properties():
+ v1 = [5, 20, 36, 10, 75, 90]
+ v2 = [10, 25, 8, 60, 20, 80]
+ bar = Bar("柱状图-数据堆叠示例", width=900, height=500)
+ bar.add("商家A", CLOTHES, v1, is_stack=True)
+ bar.add("商家B", CLOTHES, v2, is_stack=True)
+
+ eq_(len(bar.chart_id), UUID_HEX_LENGTH)
+ eq_(bar.width, 900)
+ eq_(bar.height, 500)
+ assert ('echarts' in bar.js_dependencies) or \
+ ('echarts.min' in bar.js_dependencies)
+
+
+def test_grid_properties():
+ v1 = [5, 20, 36, 10, 75, 90]
+ v2 = [10, 25, 8, 60, 20, 80]
+ bar = Bar("柱状图示例", height=720)
+ bar.add("商家A", CLOTHES, v1, is_stack=True)
+ bar.add("商家B", CLOTHES, v2, is_stack=True)
+ line = Line("折线图示例", title_top="50%")
+ line.add("最高气温", WEEK, [11, 11, 15, 13, 12, 13, 10],
+ mark_point=["max", "min"], mark_line=["average"])
+ line.add("最低气温", WEEK, [1, -2, 2, 5, 3, 2, 0],
+ mark_point=["max", "min"], mark_line=["average"],
+ legend_top="50%")
+
+ grid = Grid(width=1024, height=768)
+ grid.add(bar, grid_bottom="60%")
+ grid.add(line, grid_top="60%")
+ eq_(grid.width, 1024)
+ eq_(grid.height, 768)
+ assert ('echarts' in bar.js_dependencies) or \
+ ('echarts.min' in bar.js_dependencies)
diff --git a/test/test_conf.py b/test/test_conf.py
new file mode 100644
index 000000000..473d38f32
--- /dev/null
+++ b/test/test_conf.py
@@ -0,0 +1,59 @@
+# coding=utf8
+"""
+Test Cases for jshost.
+Input:a PyEchartsConfg object with cusom jshost and force_embed flag by user.
+Test Target: js_embed (should render ') == 2
+ assert html.count('
') == 3
+ assert html.count("require.config") == html.count("function(echarts)") == 1
+ # Test some chart attributes
+ json_encoded_title = json.dumps(TITLE)
+ assert json_encoded_title in html
+ assert "nbextensions/echarts" in html # default jshost
+ assert html.count("height:400px") == 3
+ assert html.count('width:600px') == 1
+ assert html.count("width:800px") == 2
+ assert html.count("id_my_cell_line") == 6
+
+
+def test_online_feature():
+ online()
+ bar = create_a_bar(TITLE)
+ html = bar._repr_html_()
+ expected_jshost = 'https://pyecharts.github.io/jupyter-echarts/echarts'
+ assert expected_jshost in html
+
+
+def test_online_with_custom_jshost():
+ online(host='https://my-site.com/js')
+ bar = create_a_bar(TITLE)
+ html = bar._repr_html_()
+ expected_jshost = 'https://my-site.com/js'
+ assert expected_jshost in html
diff --git a/test/test_overlap.py b/test/test_overlap.py
new file mode 100644
index 000000000..d58f4f1e8
--- /dev/null
+++ b/test/test_overlap.py
@@ -0,0 +1,121 @@
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
+
+from pyecharts import Bar, Line, Scatter, EffectScatter, Kline
+from pyecharts import Overlap
+from test.constants import CLOTHES
+
+
+def test_overlap_bar_line():
+ attr = ['A', 'B', 'C', 'D', 'E', 'F']
+ v1 = [10, 20, 30, 40, 50, 60]
+ v2 = [38, 28, 58, 48, 78, 68]
+ bar = Bar("Line-Bar 示例")
+ bar.add("bar", attr, v1)
+ line = Line()
+ line.add("line", attr, v2)
+
+ overlap = Overlap()
+ overlap.add(bar)
+ overlap.add(line)
+ overlap.render()
+
+
+def test_overlap_es_scatter():
+ v1 = [10, 20, 30, 40, 50, 60]
+ v2 = [30, 30, 30, 30, 30, 30]
+ v3 = [50, 50, 50, 50, 50, 50]
+ v4 = [10, 10, 10, 10, 10, 10]
+ es = EffectScatter("Scatter-EffectScatter 示例")
+ es.add("es", v1, v2)
+ scatter = Scatter()
+ scatter.add("scatter", v1, v3)
+ es_1 = EffectScatter()
+ es_1.add("es_1", v1, v4, symbol='pin', effect_scale=5)
+
+ overlap = Overlap()
+ overlap.add(es)
+ overlap.add(scatter)
+ overlap.add(es_1)
+ overlap.render()
+
+
+def test_overlap_kline_line():
+ import random
+ v1 = [[2320.26, 2320.26, 2287.3, 2362.94],
+ [2300, 2291.3, 2288.26, 2308.38],
+ [2295.35, 2346.5, 2295.35, 2345.92],
+ [2347.22, 2358.98, 2337.35, 2363.8],
+ [2360.75, 2382.48, 2347.89, 2383.76],
+ [2383.43, 2385.42, 2371.23, 2391.82],
+ [2377.41, 2419.02, 2369.57, 2421.15],
+ [2425.92, 2428.15, 2417.58, 2440.38],
+ [2411, 2433.13, 2403.3, 2437.42],
+ [2432.68, 2334.48, 2427.7, 2441.73],
+ [2430.69, 2418.53, 2394.22, 2433.89],
+ [2416.62, 2432.4, 2414.4, 2443.03],
+ [2441.91, 2421.56, 2418.43, 2444.8],
+ [2420.26, 2382.91, 2373.53, 2427.07],
+ [2383.49, 2397.18, 2370.61, 2397.94],
+ [2378.82, 2325.95, 2309.17, 2378.82],
+ [2322.94, 2314.16, 2308.76, 2330.88],
+ [2320.62, 2325.82, 2315.01, 2338.78],
+ [2313.74, 2293.34, 2289.89, 2340.71],
+ [2297.77, 2313.22, 2292.03, 2324.63],
+ [2322.32, 2365.59, 2308.92, 2366.16],
+ [2364.54, 2359.51, 2330.86, 2369.65],
+ [2332.08, 2273.4, 2259.25, 2333.54],
+ [2274.81, 2326.31, 2270.1, 2328.14],
+ [2333.61, 2347.18, 2321.6, 2351.44],
+ [2340.44, 2324.29, 2304.27, 2352.02],
+ [2326.42, 2318.61, 2314.59, 2333.67],
+ [2314.68, 2310.59, 2296.58, 2320.96],
+ [2309.16, 2286.6, 2264.83, 2333.29],
+ [2282.17, 2263.97, 2253.25, 2286.33],
+ [2255.77, 2270.28, 2253.31, 2276.22]]
+ attr = ["2017/7/{}".format(i + 1) for i in range(31)]
+ kline = Kline("Kline-Line 示例")
+ kline.add("日K", attr, v1)
+ line_1 = Line()
+ line_1.add("line-1", attr, [random.randint(2400, 2500) for _ in range(31)])
+ line_2 = Line()
+ line_2.add("line-2", attr, [random.randint(2400, 2500) for _ in range(31)])
+
+ overlap = Overlap()
+ overlap.add(kline)
+ overlap.add(line_1)
+ overlap.add(line_2)
+ overlap.render()
+
+
+def test_overlap_two_yaxis():
+ attr = ["{}月".format(i) for i in range(1, 13)]
+ v1 = [2.0, 4.9, 7.0, 23.2, 25.6, 76.7, 135.6, 162.2, 32.6, 20.0, 6.4, 3.3]
+ v2 = [2.6, 5.9, 9.0, 26.4, 28.7, 70.7, 175.6, 182.2, 48.7, 18.8, 6.0, 2.3]
+ v3 = [2.0, 2.2, 3.3, 4.5, 6.3, 10.2, 20.3, 23.4, 23.0, 16.5, 12.0, 6.2]
+
+ bar = Bar(width=1200, height=600)
+ bar.add("蒸发量", attr, v1)
+ bar.add("降水量", attr, v2, yaxis_formatter=" ml", yaxis_max=250)
+
+ line = Line()
+ line.add("平均温度", attr, v3, yaxis_formatter=" °C")
+
+ overlap = Overlap()
+ overlap.add(bar)
+ overlap.add(line, yaxis_index=1, is_add_yaxis=True)
+ overlap.render()
+
+
+def test_line_es():
+ v1 = [5, 20, 36, 10, 10, 100]
+ line = Line("line-EffectScatter 示例")
+ line.add("", CLOTHES, v1, is_random=True)
+ es = EffectScatter()
+ es.add("", CLOTHES, v1, effect_scale=8)
+
+ overlap = Overlap()
+ overlap.add(line)
+ overlap.add(es)
+ overlap.render()
diff --git a/test/test_page.py b/test/test_page.py
new file mode 100644
index 000000000..139650441
--- /dev/null
+++ b/test/test_page.py
@@ -0,0 +1,201 @@
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
+
+import json
+import codecs
+from test.constants import RANGE_COLOR, CLOTHES, WEEK
+from pyecharts import (
+ Bar, Scatter3D, Line, Pie, Map,
+ Kline, Radar, WordCloud, Liquid)
+from pyecharts import Page
+from nose.tools import eq_
+
+TEST_PAGE_TITLE = "my awesome chart"
+
+
+def create_three():
+ page = Page(page_title=TEST_PAGE_TITLE)
+
+ # bar
+ v1 = [5, 20, 36, 10, 75, 90]
+ v2 = [10, 25, 8, 60, 20, 80]
+ bar = Bar("柱状图数据堆叠示例")
+ bar.add("商家A", CLOTHES, v1, is_stack=True)
+ bar.add("商家B", CLOTHES, v2, is_stack=True)
+ page.add(bar)
+
+ # scatter3D
+ import random
+ data = [
+ [random.randint(0, 100),
+ random.randint(0, 100),
+ random.randint(0, 100)] for _ in range(80)
+ ]
+ scatter3d = Scatter3D("3D 散点图示例", width=1200, height=600)
+ scatter3d.add("", data, is_visualmap=True, visual_range_color=RANGE_COLOR)
+ page.add(scatter3d)
+
+ # guangdong
+ value = [20, 190, 253, 77, 65]
+ attr = ['汕头市', '汕尾市', '揭阳市', '阳江市', '肇庆市']
+ map = Map("广东地图示例", width=1200, height=600)
+ map.add("", attr, value, maptype='广东', is_visualmap=True,
+ visual_text_color='#000')
+ page.add(map)
+
+ return page
+
+
+def test_two_bars():
+ page = create_three()
+ page.render()
+ with codecs.open('render.html', 'r', 'utf-8') as f:
+ actual_content = f.read()
+ assert json.dumps("柱状图数据堆叠示例") in actual_content
+ assert "" in actual_content
+ assert TEST_PAGE_TITLE in actual_content
+ # test the optimization
+ assert "registerMap('china'," not in actual_content
+ assert "registerMap('world'," not in actual_content
+ echarts_position = actual_content.find('exports.echarts')
+ guangdong_position = actual_content.find(json.dumps('广东'))
+ assert echarts_position < guangdong_position
+
+
+def test_page_get_js_dependencies():
+ page = create_three()
+ dependencies = page.get_js_dependencies()
+ eq_(dependencies[0], 'echarts.min')
+ assert 'guangdong' in dependencies
+ assert 'echarts-gl.min' in dependencies
+ eq_(len(dependencies), 3)
+
+
+def test_page_embed():
+ page = create_three()
+ html = page.render_embed()
+ assert '' not in html
+ assert json.dumps("柱状图数据堆叠示例") in html
+
+
+def test_page_in_notebook():
+ page = create_three()
+ html = page._repr_html_()
+
+ assert 'echartsgl' in html
+ assert 'echarts' in html
+ assert 'guangdong' in html
+ # find the appearing postion of echarts.min in html
+ echarts_position = html.find('echarts.min')
+ # find the appearing postion of guangdong in html
+ guangdong_position = html.find('guangdong')
+ assert echarts_position < guangdong_position
+
+
+def test_more():
+ page = Page()
+
+ # line
+ line = Line("折线图示例")
+ line.add("最高气温", WEEK, [11, 11, 15, 13, 12, 13, 10],
+ mark_point=["max", "min"], mark_line=["average"])
+ line.add("最低气温", WEEK, [1, -2, 2, 5, 3, 2, 0],
+ mark_point=["max", "min"], mark_line=["average"])
+
+ # pie
+ v1 = [11, 12, 13, 10, 10, 10]
+ pie = Pie("饼图-圆环图示例", title_pos='center')
+ pie.add("", CLOTHES, v1, radius=[40, 75], label_text_color=None,
+ is_label_show=True, legend_orient='vertical', legend_pos='left')
+
+ page.add([line, pie])
+
+ # kline
+ v1 = [[2320.26, 2320.26, 2287.3, 2362.94],
+ [2300, 2291.3, 2288.26, 2308.38],
+ [2295.35, 2346.5, 2295.35, 2345.92],
+ [2347.22, 2358.98, 2337.35, 2363.8],
+ [2360.75, 2382.48, 2347.89, 2383.76],
+ [2383.43, 2385.42, 2371.23, 2391.82],
+ [2377.41, 2419.02, 2369.57, 2421.15],
+ [2425.92, 2428.15, 2417.58, 2440.38],
+ [2411, 2433.13, 2403.3, 2437.42],
+ [2432.68, 2334.48, 2427.7, 2441.73],
+ [2430.69, 2418.53, 2394.22, 2433.89],
+ [2416.62, 2432.4, 2414.4, 2443.03],
+ [2441.91, 2421.56, 2418.43, 2444.8],
+ [2420.26, 2382.91, 2373.53, 2427.07],
+ [2383.49, 2397.18, 2370.61, 2397.94],
+ [2378.82, 2325.95, 2309.17, 2378.82],
+ [2322.94, 2314.16, 2308.76, 2330.88],
+ [2320.62, 2325.82, 2315.01, 2338.78],
+ [2313.74, 2293.34, 2289.89, 2340.71],
+ [2297.77, 2313.22, 2292.03, 2324.63],
+ [2322.32, 2365.59, 2308.92, 2366.16],
+ [2364.54, 2359.51, 2330.86, 2369.65],
+ [2332.08, 2273.4, 2259.25, 2333.54],
+ [2274.81, 2326.31, 2270.1, 2328.14],
+ [2333.61, 2347.18, 2321.6, 2351.44],
+ [2340.44, 2324.29, 2304.27, 2352.02],
+ [2326.42, 2318.61, 2314.59, 2333.67],
+ [2314.68, 2310.59, 2296.58, 2320.96],
+ [2309.16, 2286.6, 2264.83, 2333.29],
+ [2282.17, 2263.97, 2253.25, 2286.33],
+ [2255.77, 2270.28, 2253.31, 2276.22]]
+ kline = Kline("K 线图示例")
+ kline.add("日K", ["2017/7/{}".format(i + 1) for i in range(31)],
+ v1, is_datazoom_show=True)
+ page.add(kline)
+
+ # radar
+ schema = [
+ ("销售", 6500), ("管理", 16000), ("信息技术", 30000),
+ ("客服", 38000), ("研发", 52000), ("市场", 25000)
+ ]
+ v1 = [[4300, 10000, 28000, 35000, 50000, 19000]]
+ v2 = [[5000, 14000, 28000, 31000, 42000, 21000]]
+ radar = Radar("雷达图示例")
+ radar.config(schema)
+ radar.add("预算分配", v1, is_splitline=True, is_axisline_show=True)
+ radar.add("实际开销", v2, label_color=["#4e79a7"], is_area_show=False,
+ legend_selectedmode='single')
+ page.add(radar)
+
+ # scatter3d
+ import random
+ data = [
+ [random.randint(0, 100),
+ random.randint(0, 100),
+ random.randint(0, 100)] for _ in range(80)
+ ]
+ scatter3D = Scatter3D("3D 散点图示例", width=1200, height=600)
+ scatter3D.add("", data, is_visualmap=True, visual_range_color=RANGE_COLOR)
+ page.add(scatter3D)
+
+ # wordcloud
+ name = [
+ 'Sam S Club', 'Macys', 'Amy Schumer', 'Jurassic World',
+ 'Charter Communications', 'Chick Fil A', 'Planet Fitness',
+ 'Pitch Perfect', 'Express', 'Home', 'Johnny Depp', 'Lena Dunham',
+ 'Lewis Hamilton', 'KXAN', 'Mary Ellen Mark', 'Farrah Abraham',
+ 'Rita Ora', 'Serena Williams', 'NCAA baseball tournament',
+ 'Point Break'
+ ]
+ value = [
+ 10000, 6181, 4386, 4055, 2467, 2244, 1898, 1484, 1112,
+ 965, 847, 582, 555, 550, 462, 366, 360, 282, 273, 265
+ ]
+ wordcloud = WordCloud(width=1300, height=620)
+ wordcloud.add("", name, value, word_size_range=[30, 100], rotate_step=66)
+ page.add(wordcloud)
+
+ # liquid
+ liquid = Liquid("水球图示例")
+ liquid.add("Liquid", [0.6])
+ page.add(liquid)
+ assert len(page) == 7
+ assert isinstance(page[0], Line)
+ assert (('echarts' in page.js_dependencies) or
+ ('echarts.min' in page.js_dependencies))
+ page.render()
diff --git a/test/test_parallel.py b/test/test_parallel.py
index 58482e9c7..63f91e949 100644
--- a/test/test_parallel.py
+++ b/test/test_parallel.py
@@ -1,7 +1,32 @@
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
+
from pyecharts import Parallel
-def test_parallel():
- schema = ["data", "AQI", "PM2.5", "PM10", "CO", "NO2", "SO2", "等级"]
+
+def test_parallel_default():
+ schema = ["data", "AQI", "PM2.5", "PM10", "CO", "NO2"]
+ data = [
+ [1, 91, 45, 125, 0.82, 34],
+ [2, 65, 27, 78, 0.86, 45, ],
+ [3, 83, 60, 84, 1.09, 73],
+ [4, 109, 81, 121, 1.28, 68],
+ [5, 106, 77, 114, 1.07, 55],
+ [6, 109, 81, 121, 1.28, 68],
+ [7, 106, 77, 114, 1.07, 55],
+ [8, 89, 65, 78, 0.86, 51, 26],
+ [9, 53, 33, 47, 0.64, 50, 17],
+ [10, 80, 55, 80, 1.01, 75, 24],
+ [11, 117, 81, 124, 1.03, 45]
+ ]
+ parallel = Parallel("平行坐标系-默认指示器")
+ parallel.config(schema)
+ parallel.add("parallel", data, is_random=True)
+ parallel.render()
+
+
+def test_parallel_user_define():
c_schema = [
{"dim": 0, "name": "data"},
{"dim": 1, "name": "AQI"},
@@ -10,7 +35,9 @@ def test_parallel():
{"dim": 4, "name": "CO"},
{"dim": 5, "name": "NO2"},
{"dim": 6, "name": "CO2"},
- {"dim": 7, "name": "等级", "type": "category", "data": ['优', '良', '轻度污染', '中度污染', '重度污染', '严重污染']},
+ {"dim": 7, "name": "等级",
+ "type": "category",
+ "data": ['优', '良', '轻度污染', '中度污染', '重度污染', '严重污染']}
]
data = [
[1, 91, 45, 125, 0.82, 34, 23, "良"],
@@ -27,11 +54,21 @@ def test_parallel():
[12, 99, 71, 142, 1.1, 62, 42, "良"],
[13, 95, 69, 130, 1.28, 74, 50, "良"],
[14, 116, 87, 131, 1.47, 84, 40, "轻度污染"]
-
]
- parallel = Parallel("平行坐标系")
- # parallel.config(schema)
+ parallel = Parallel("平行坐标系-用户自定义指示器")
parallel.config(c_schema=c_schema)
parallel.add("parallel", data)
- parallel.show_config()
- parallel.render()
\ No newline at end of file
+ parallel.render()
+
+
+def test_parallel_line_style():
+ schema = ["data", "AQI", "PM2.5", "PM10", "CO", "NO2"]
+ data = [
+ [1, 91, 45, 125, 0.82, 34],
+ ]
+ parallel = Parallel()
+ parallel.config(schema)
+ parallel.add("parallel", data, line_width=20, line_opacity=0.5)
+ html_content = parallel._repr_html_()
+ assert '"width": 20' in html_content
+ assert '"opacity": 0.5' in html_content
diff --git a/test/test_pie.py b/test/test_pie.py
index 840702b11..5d84afd70 100644
--- a/test/test_pie.py
+++ b/test/test_pie.py
@@ -1,12 +1,89 @@
-from pyecharts import Pie
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
-def test_pie():
- attr = ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
+from pyecharts import Pie, Style
+from test.constants import CLOTHES
+
+
+def test_pie_default():
+ v1 = [11, 12, 13, 10, 10, 10]
+ pie = Pie("饼图示例")
+ pie.add("", CLOTHES, v1, is_label_show=True)
+ pie.render()
+
+
+def test_pie_legend():
+ v1 = [11, 12, 13, 10, 10, 10]
+ pie = Pie("饼图-圆环图示例", title_pos='center')
+ pie.add("", CLOTHES, v1, radius=[40, 75], label_text_color=None,
+ is_label_show=True, legend_orient='vertical', legend_pos='left')
+ pie.render()
+
+
+def test_pie_type_rose():
v1 = [11, 12, 13, 10, 10, 10]
v2 = [19, 21, 32, 20, 20, 33]
+ pie = Pie("饼图-玫瑰图示例", title_pos='center', width=900)
+ pie.add("商品A", CLOTHES, v1, center=[25, 50], is_random=True,
+ radius=[30, 75], rosetype='radius')
+ pie.add("商品B", CLOTHES, v2, center=[75, 50], is_random=True,
+ radius=[30, 75], rosetype='area',
+ is_legend_show=False, is_label_show=True)
+ pie.render()
+
+
+def test_pie_type_radius():
+ pie = Pie("饼图示例", title_pos='center', width=1000, height=600)
+ pie.add("", ['A', 'B', 'C', 'D', 'E', 'F'], [335, 321, 234, 135, 251, 148],
+ radius=[40, 55], is_label_show=True)
+ pie.add("", ['H', 'I', 'J'], [335, 679, 204], radius=[0, 30],
+ legend_orient='vertical', legend_pos='left')
+ pie.render()
+
+
+def test_pie_multiple():
+ import random
+ attr = ['A', 'B', 'C', 'D', 'E', 'F']
+ pie = Pie("饼图示例", width=1000, height=600)
+ pie.add("", attr, [random.randint(0, 100) for _ in range(6)],
+ radius=[50, 55], center=[25, 50], is_random=True)
+ pie.add("", attr, [random.randint(20, 100) for _ in range(6)],
+ radius=[0, 45], center=[25, 50], rosetype='area')
+ pie.add("", attr, [random.randint(0, 100) for _ in range(6)],
+ radius=[50, 55], center=[65, 50], is_random=True)
+ pie.add("", attr, [random.randint(20, 100) for _ in range(6)],
+ radius=[0, 45], center=[65, 50], rosetype='radius')
+ pie.render()
+
+
+def test_pie_multiple_movie():
+ pie = Pie('各类电影中"好片"所占的比例', "数据来着豆瓣", title_pos='center')
+ style = Style()
+ pie_style = style.add(
+ label_pos="center",
+ is_label_show=True,
+ label_text_color=None
+ )
- pie = Pie()
- # pie.add("商品A", attr, v1, center=[25, 50], is_random=True, radius=[30, 75], rosetype=True, is_label_show=True)
- pie.add("商品B", attr, v2, center=[75, 50], is_random=True, radius=[30, 75], rosetype=True, is_legend_show=False)
- pie.show_config()
- pie.render()
\ No newline at end of file
+ pie.add("", ["剧情", ""], [25, 75], center=[10, 30],
+ radius=[18, 24], **pie_style)
+ pie.add("", ["奇幻", ""], [24, 76], center=[30, 30],
+ radius=[18, 24], **pie_style)
+ pie.add("", ["爱情", ""], [14, 86], center=[50, 30],
+ radius=[18, 24], **pie_style)
+ pie.add("", ["惊悚", ""], [11, 89], center=[70, 30],
+ radius=[18, 24], **pie_style)
+ pie.add("", ["冒险", ""], [27, 73], center=[90, 30],
+ radius=[18, 24], **pie_style)
+ pie.add("", ["动作", ""], [15, 85], center=[10, 70],
+ radius=[18, 24], **pie_style)
+ pie.add("", ["喜剧", ""], [54, 46], center=[30, 70],
+ radius=[18, 24], **pie_style)
+ pie.add("", ["科幻", ""], [26, 74], center=[50, 70],
+ radius=[18, 24], **pie_style)
+ pie.add("", ["悬疑", ""], [25, 75], center=[70, 70],
+ radius=[18, 24], **pie_style)
+ pie.add("", ["犯罪", ""], [28, 72], center=[90, 70],
+ radius=[18, 24], legend_top="center", **pie_style)
+ pie.render()
diff --git a/test/test_polar.py b/test/test_polar.py
index 842828b84..bc33f800f 100644
--- a/test/test_polar.py
+++ b/test/test_polar.py
@@ -1,14 +1,108 @@
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
+
+import math
+import random
+
from pyecharts import Polar
+from test.constants import WEEK
+
+
+def test_polar_type_scatter_one():
+ data = [(i, random.randint(1, 100)) for i in range(101)]
+ polar = Polar("极坐标系-散点图示例")
+ polar.add("", data, boundary_gap=False, type='scatter',
+ is_splitline_show=False, is_axisline_show=True)
+ assert '"type": "scatter"' in polar._repr_html_()
+
+
+def test_polar_type_scatter_more():
+ data_1 = [(10, random.randint(1, 100)) for i in range(300)]
+ data_2 = [(11, random.randint(1, 100)) for i in range(300)]
+ polar = Polar("极坐标系-散点图示例", width=1200, height=600)
+ polar.add("", data_1, type='scatter')
+ polar.add("", data_2, type='scatter')
+ polar.render()
+
+
+def test_polar_type_effectscatter():
+ data = [(i, random.randint(1, 100)) for i in range(10)]
+ polar = Polar("极坐标系-动态散点图示例", width=1200, height=600)
+ polar.add("", data, type='effectScatter', effect_scale=10,
+ effect_period=5)
+ assert '"type": "effectScatter"' in polar._repr_html_()
+
+
+def test_polar_type_barradius():
+ polar = Polar("极坐标系-堆叠柱状图示例", width=1200, height=600)
+ polar.add("A", [1, 2, 3, 4, 3, 5, 1], radius_data=WEEK,
+ type='barRadius', is_stack=True)
+ polar.add("B", [2, 4, 6, 1, 2, 3, 1], radius_data=WEEK,
+ type='barRadius', is_stack=True)
+ polar.add("C", [1, 2, 3, 4, 1, 2, 5], radius_data=WEEK,
+ type='barRadius', is_stack=True)
+ polar.render()
+
+
+def test_polar_type_barangle():
+ polar = Polar("极坐标系-堆叠柱状图示例", width=1200, height=600)
+ polar.add("", [1, 2, 3, 4, 3, 5, 1], radius_data=WEEK,
+ type='barAngle', is_stack=True)
+ polar.add("", [2, 4, 6, 1, 2, 3, 1], radius_data=WEEK,
+ type='barAngle', is_stack=True)
+ polar.add("", [1, 2, 3, 4, 1, 2, 5], radius_data=WEEK,
+ type='barAngle', is_stack=True)
+ polar.render()
+
-def test_polar():
- import math
+def test_polar_draw_love():
data = []
for i in range(101):
theta = i / 100 * 360
r = 5 * (1 + math.sin(theta / 180 * math.pi))
data.append([r, theta])
hour = [i for i in range(1, 25)]
- polar = Polar(width=1200, height=600)
- polar.add("For my honey", data, angle_data=hour, boundary_gap=False)
- polar.show_config()
+ polar = Polar("极坐标系示例", width=1200, height=600)
+ polar.add("Love", data, angle_data=hour,
+ boundary_gap=False, start_angle=0)
+ polar.render()
+
+
+def test_polar_draw_flower():
+ data = []
+ for i in range(361):
+ t = i / 180 * math.pi
+ r = math.sin(2 * t) * math.cos(2 * t)
+ data.append([r, i])
+ polar = Polar("极坐标系示例", width=1200, height=600)
+ polar.add("Flower", data, start_angle=0,
+ symbol=None, axis_range=[0, None])
+ polar.render()
+
+
+def test_polar_draw_color_flower():
+ data = []
+ for i in range(361):
+ t = i / 180 * math.pi
+ r = math.sin(2 * t) * math.cos(2 * t)
+ data.append([r, i])
+ polar = Polar("极坐标系示例", width=1200, height=600)
+ polar.add("Color-Flower", data, start_angle=0, symbol=None,
+ axis_range=[0, None], area_color="#f71f24", area_opacity=0.6)
+ polar.render()
+
+
+def test_polar_draw_snail():
+ data = []
+ for i in range(5):
+ for j in range(101):
+ theta = j / 100 * 360
+ alpha = i * 360 + theta
+ r = math.pow(math.e, 0.003 * alpha)
+ data.append([r, theta])
+ polar = Polar("极坐标系示例")
+ polar.add("", data, symbol_size=0, symbol='circle', start_angle=-25,
+ is_radiusaxis_show=False, area_color="#f3c5b3",
+ area_opacity=0.5, is_angleaxis_show=False)
polar.render()
diff --git a/test/test_radar.py b/test/test_radar.py
index 24abb98ed..00ef13938 100644
--- a/test/test_radar.py
+++ b/test/test_radar.py
@@ -1,95 +1,119 @@
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
+
from pyecharts import Radar
-def test_radar():
+
+def test_radar_default_schema():
schema = [
- ("销售", 6500),
- ("管理", 16000),
- ("信息技术", 30000),
- ("客服", 38000),
- ("研发", 52000),
- ("市场", 25000)
+ ("销售", 6500), ("管理", 16000), ("信息技术", 30000),
+ ("客服", 38000), ("研发", 52000), ("市场", 25000)
]
v1 = [[4300, 10000, 28000, 35000, 50000, 19000]]
v2 = [[5000, 14000, 28000, 31000, 42000, 21000]]
-
- radar = Radar()
- radar.config(schema, split_area_show=True)
- radar.add("预算分配", v1, label_color=["#000"])
- radar.add("实际开销", v2, label_color=["#4e79a7"])
- radar.show_config()
+ radar = Radar("雷达图示例")
+ radar.config(schema)
+ radar.add("预算分配", v1, is_splitline=True, is_axisline_show=True)
+ radar.add("实际开销", v2, label_color=["#4e79a7"], is_area_show=False,
+ legend_selectedmode='single')
radar.render()
- value_bj = [
- [55, 9, 56, 0.46, 18, 6, 1],
- [25, 11, 21, 0.65, 34, 9, 2],
- [56, 7, 63, 0.3, 14, 5, 3],
- [33, 7, 29, 0.33, 16, 6, 4],
- [42, 24, 44, 0.76, 40, 16, 5],
- [82, 58, 90, 1.77, 68, 33, 6],
- [74, 49, 77, 1.46, 48, 27, 7],
- [78, 55, 80, 1.29, 59, 29, 8],
- [267, 216, 280, 4.8, 108, 64, 9],
- [185, 127, 216, 2.52, 61, 27, 10],
- [39, 19, 38, 0.57, 31, 15, 11],
- [41, 11, 40, 0.43, 21, 7, 12],
- [64, 38, 74, 1.04, 46, 22, 13],
- [108, 79, 120, 1.7, 75, 41, 14],
- [108, 63, 116, 1.48, 44, 26, 15],
- [33, 6, 29, 0.34, 13, 5, 16],
- [94, 66, 110, 1.54, 62, 31, 17],
- [186, 142, 192, 3.88, 93, 79, 18],
- [57, 31, 54, 0.96, 32, 14, 19],
- [22, 8, 17, 0.48, 23, 10, 20],
- [39, 15, 36, 0.61, 29, 13, 21],
- [94, 69, 114, 2.08, 73, 39, 22],
- [99, 73, 110, 2.43, 76, 48, 23],
- [31, 12, 30, 0.5, 32, 16, 24],
- [42, 27, 43, 1, 53, 22, 25],
- [154, 117, 157, 3.05, 92, 58, 26],
- [234, 185, 230, 4.09, 123, 69, 27],
- [160, 120, 186, 2.77, 91, 50, 28],
- [134, 96, 165, 2.76, 83, 41, 29],
- [52, 24, 60, 1.03, 50, 21, 30],
- [46, 5, 49, 0.28, 10, 6, 31]
- ]
- value_sh = [
- [91, 45, 125, 0.82, 34, 23, 1],
- [65, 27, 78, 0.86, 45, 29, 2],
- [83, 60, 84, 1.09, 73, 27, 3],
- [109, 81, 121, 1.28, 68, 51, 4],
- [106, 77, 114, 1.07, 55, 51, 5],
- [109, 81, 121, 1.28, 68, 51, 6],
- [106, 77, 114, 1.07, 55, 51, 7],
- [89, 65, 78, 0.86, 51, 26, 8],
- [53, 33, 47, 0.64, 50, 17, 9],
- [80, 55, 80, 1.01, 75, 24, 10],
- [117, 81, 124, 1.03, 45, 24, 11],
- [99, 71, 142, 1.1, 62, 42, 12],
- [95, 69, 130, 1.28, 74, 50, 13],
- [116, 87, 131, 1.47, 84, 40, 14],
- [108, 80, 121, 1.3, 85, 37, 15],
- [134, 83, 167, 1.16, 57, 43, 16],
- [79, 43, 107, 1.05, 59, 37, 17],
- [71, 46, 89, 0.86, 64, 25, 18],
- [97, 71, 113, 1.17, 88, 31, 19],
- [84, 57, 91, 0.85, 55, 31, 20],
- [87, 63, 101, 0.9, 56, 41, 21],
- [104, 77, 119, 1.09, 73, 48, 22],
- [87, 62, 100, 1, 72, 28, 23],
- [168, 128, 172, 1.49, 97, 56, 24],
- [65, 45, 51, 0.74, 39, 17, 25],
- [39, 24, 38, 0.61, 47, 17, 26],
- [39, 24, 39, 0.59, 50, 19, 27],
- [93, 68, 96, 1.05, 79, 29, 28],
- [188, 143, 197, 1.66, 99, 51, 29],
- [174, 131, 174, 1.55, 108, 50, 30],
- [187, 143, 201, 1.39, 89, 53, 31]
- ]
- schema = [("AQI", 300), ("PM2.5", 250), ("PM10", 300), ("CO", 5), ("NO2", 200), ("SO2", 100)]
- radar2 = Radar()
- radar2.config(schema)
- radar2.add("北京", value_bj, item_color="#f9713c", symbol=None)
- radar2.add("上海", value_sh, item_color="#b3e4a1", symbol=None)
- radar2.show_config()
- radar2.render()
\ No newline at end of file
+value_bj = [
+ [55, 9, 56, 0.46, 18, 6, 1],
+ [25, 11, 21, 0.65, 34, 9, 2],
+ [56, 7, 63, 0.3, 14, 5, 3],
+ [33, 7, 29, 0.33, 16, 6, 4],
+ [42, 24, 44, 0.76, 40, 16, 5],
+ [82, 58, 90, 1.77, 68, 33, 6],
+ [74, 49, 77, 1.46, 48, 27, 7],
+ [78, 55, 80, 1.29, 59, 29, 8],
+ [267, 216, 280, 4.8, 108, 64, 9],
+ [185, 127, 216, 2.52, 61, 27, 10],
+ [39, 19, 38, 0.57, 31, 15, 11],
+ [41, 11, 40, 0.43, 21, 7, 12],
+ [64, 38, 74, 1.04, 46, 22, 13],
+ [108, 79, 120, 1.7, 75, 41, 14],
+ [108, 63, 116, 1.48, 44, 26, 15],
+ [33, 6, 29, 0.34, 13, 5, 16],
+ [94, 66, 110, 1.54, 62, 31, 17],
+ [186, 142, 192, 3.88, 93, 79, 18],
+ [57, 31, 54, 0.96, 32, 14, 19],
+ [22, 8, 17, 0.48, 23, 10, 20],
+ [39, 15, 36, 0.61, 29, 13, 21],
+ [94, 69, 114, 2.08, 73, 39, 22],
+ [99, 73, 110, 2.43, 76, 48, 23],
+ [31, 12, 30, 0.5, 32, 16, 24],
+ [42, 27, 43, 1, 53, 22, 25],
+ [154, 117, 157, 3.05, 92, 58, 26],
+ [234, 185, 230, 4.09, 123, 69, 27],
+ [160, 120, 186, 2.77, 91, 50, 28],
+ [134, 96, 165, 2.76, 83, 41, 29],
+ [52, 24, 60, 1.03, 50, 21, 30],
+ [46, 5, 49, 0.28, 10, 6, 31]
+ ]
+
+value_sh = [
+ [91, 45, 125, 0.82, 34, 23, 1],
+ [65, 27, 78, 0.86, 45, 29, 2],
+ [83, 60, 84, 1.09, 73, 27, 3],
+ [109, 81, 121, 1.28, 68, 51, 4],
+ [106, 77, 114, 1.07, 55, 51, 5],
+ [109, 81, 121, 1.28, 68, 51, 6],
+ [106, 77, 114, 1.07, 55, 51, 7],
+ [89, 65, 78, 0.86, 51, 26, 8],
+ [53, 33, 47, 0.64, 50, 17, 9],
+ [80, 55, 80, 1.01, 75, 24, 10],
+ [117, 81, 124, 1.03, 45, 24, 11],
+ [99, 71, 142, 1.1, 62, 42, 12],
+ [95, 69, 130, 1.28, 74, 50, 13],
+ [116, 87, 131, 1.47, 84, 40, 14],
+ [108, 80, 121, 1.3, 85, 37, 15],
+ [134, 83, 167, 1.16, 57, 43, 16],
+ [79, 43, 107, 1.05, 59, 37, 17],
+ [71, 46, 89, 0.86, 64, 25, 18],
+ [97, 71, 113, 1.17, 88, 31, 19],
+ [84, 57, 91, 0.85, 55, 31, 20],
+ [87, 63, 101, 0.9, 56, 41, 21],
+ [104, 77, 119, 1.09, 73, 48, 22],
+ [87, 62, 100, 1, 72, 28, 23],
+ [168, 128, 172, 1.49, 97, 56, 24],
+ [65, 45, 51, 0.74, 39, 17, 25],
+ [39, 24, 38, 0.61, 47, 17, 26],
+ [39, 24, 39, 0.59, 50, 19, 27],
+ [93, 68, 96, 1.05, 79, 29, 28],
+ [188, 143, 197, 1.66, 99, 51, 29],
+ [174, 131, 174, 1.55, 108, 50, 30],
+ [187, 143, 201, 1.39, 89, 53, 31]
+ ]
+
+c_schema = [
+ {"name": "AQI", "max": 300, "min": 5},
+ {"name": "PM2.5", "max": 250, "min": 20},
+ {"name": "PM10", "max": 300, "min": 5},
+ {"name": "CO", "max": 5},
+ {"name": "NO2", "max": 200},
+ {"name": "SO2", "max": 100}
+ ]
+
+
+def test_radar_user_define_schema_single():
+ radar = Radar("雷达图示例")
+ radar.config(c_schema=c_schema, shape='circle')
+ radar.add("北京", value_bj, item_color="#f9713c", symbol=None)
+ radar.add("上海", value_sh, item_color="#b3e4a1", symbol=None,
+ legend_selectedmode='single')
+ html_content = radar._repr_html_()
+ assert 'single' in html_content
+ assert 'multiple' not in html_content
+
+
+def test_radar_user_define_schema_multiple():
+ radar = Radar("雷达图示例")
+ radar.config(c_schema=c_schema, shape='circle')
+ radar.add("北京", value_bj, item_color="#f9713c", symbol=None)
+ radar.add("上海", value_sh, item_color="#b3e4a1", symbol=None)
+ html_content = radar._repr_html_()
+ assert 'multiple' in html_content
+ assert 'single' not in html_content
diff --git a/test/test_sankey.py b/test/test_sankey.py
new file mode 100644
index 000000000..a95befd84
--- /dev/null
+++ b/test/test_sankey.py
@@ -0,0 +1,38 @@
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
+import sys
+import os
+import codecs
+import json
+from pyecharts import Sankey
+
+PY2 = sys.version_info[0] == 2
+
+
+def test_sankey_default():
+ nodes = [
+ {'name': 'category1'}, {'name': 'category2'}, {'name': 'category3'},
+ {'name': 'category4'}, {'name': 'category5'}, {'name': 'category6'},
+ ]
+
+ links = [
+ {'source': 'category1', 'target': 'category2', 'value': 10},
+ {'source': 'category2', 'target': 'category3', 'value': 15},
+ {'source': 'category3', 'target': 'category4', 'value': 20},
+ {'source': 'category5', 'target': 'category6', 'value': 25}
+ ]
+ sankey = Sankey("桑基图示例", width=1200, height=600)
+ sankey.add("sankey", nodes, links, line_opacity=0.2,
+ line_curve=0.5, line_color='source', is_label_show=True,
+ label_pos='right')
+ sankey.render()
+
+ with codecs.open(os.path.join("fixtures", "energy.json"), "r",
+ encoding='utf-8') as f:
+ j = json.load(f)
+ sankey = Sankey("桑基图示例", width=1200, height=600)
+ sankey.add("sankey", nodes=j['nodes'], links=j['links'], line_opacity=0.2,
+ line_curve=0.5, line_color='source',
+ is_label_show=True, label_pos='right')
+ sankey.render()
diff --git a/test/test_scatter.py b/test/test_scatter.py
index 1c2ab1ece..f2ba724e9 100644
--- a/test/test_scatter.py
+++ b/test/test_scatter.py
@@ -1,13 +1,94 @@
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
+
from pyecharts import Scatter
-def test_scatter():
- v1 = [10, 20, 30, 40, 50, 60]
- v2 = [10, 20, 30, 40, 50, 60]
-
- scatter = Scatter()
- # v1, v2 = scatter.draw(r"e:\python\pyecharts\_images\boy.png")
- scatter.add("boy", v1, v2)
- # scatter.add("a", v1, v2)
- # scatter.add("b", v1[::-1], v2)
- scatter.show_config()
- scatter.render()
\ No newline at end of file
+
+v1 = [10, 20, 30, 40, 50, 60]
+v2 = [10, 20, 30, 40, 50, 60]
+
+
+def test_scatter_defualt():
+ scatter = Scatter("散点图示例")
+ scatter.add("A", v1, v2)
+ scatter.add("B", v1[::-1], v2)
+ html_content = scatter._repr_html_()
+ assert '"type": "value"' in html_content
+ assert '"type": "category"' not in html_content
+
+
+def test_scatter_xaxis_type_category():
+ scatter = Scatter("散点图示例")
+ scatter.add("A", ["a", "b", "c", "d", "e", "f"], v2)
+ scatter.add("B", ["a", "b", "c", "d", "e", "f"], v1[::-1],
+ xaxis_type="category")
+ assert '"type": "category"' in scatter._repr_html_()
+
+
+def test_scatter_visualmap_default():
+ scatter = Scatter("散点图示例")
+ scatter.add("A", v1, v2)
+ scatter.add("B", v1[::-1], v2, is_visualmap=True)
+ scatter.render()
+
+
+def test_scatter_visualmap_type_size():
+ scatter = Scatter("散点图示例")
+ scatter.add("B", v1[::-1], v2, is_visualmap=True, visual_type='size',
+ visual_range_size=[20, 80])
+ scatter.render()
+
+
+def test_scatter_draw_love():
+ scatter = Scatter("散点图示例", width=800, height=480)
+ v1, v2 = scatter.draw("../images/love.png")
+ scatter.add("Love", v1, v2)
+ scatter.render()
+
+
+def test_scatter_draw__hot_red_bra():
+ scatter = Scatter("散点图示例", width=1000, height=480)
+ v1, v2 = scatter.draw("../images/cup.png")
+ scatter.add("Cup", v1, v2)
+ scatter.render()
+
+
+def test_scatter_multi_dimension():
+ data = [
+ [28604, 77, 17096869],
+ [31163, 77.4, 27662440],
+ [1516, 68, 1154605773],
+ [13670, 74.7, 10582082],
+ [28599, 75, 4986705],
+ [29476, 77.1, 56943299],
+ [31476, 75.4, 78958237],
+ [28666, 78.1, 254830],
+ [1777, 57.7, 870601776],
+ [29550, 79.1, 122249285],
+ [2076, 67.9, 20194354],
+ [12087, 72, 42972254],
+ [24021, 75.4, 3397534],
+ [43296, 76.8, 4240375],
+ [10088, 70.8, 38195258],
+ [19349, 69.6, 147568552],
+ [10670, 67.3, 53994605],
+ [26424, 75.7, 57110117],
+ [37062, 75.4, 252847810]
+ ]
+
+ x_lst = [v[0] for v in data]
+ y_lst = [v[1] for v in data]
+ extra_data = [v[2] for v in data]
+ sc = Scatter()
+ sc.add("scatter", x_lst, y_lst, extra_data=extra_data, is_visualmap=True,
+ visual_dimension=2, visual_orient='horizontal',
+ visual_type='size', visual_range=[254830, 1154605773],
+ visual_text_color='#000')
+ sc.render()
+
+
+def test_scatter_markline_coords():
+ scatter = Scatter("散点图示例")
+ scatter.add("A", v1, v2, mark_line_coords=[[10, 10], [30, 30]])
+ assert '"coord": [' in scatter._repr_html_()
diff --git a/test/test_scatter3D.py b/test/test_scatter3D.py
new file mode 100644
index 000000000..5a4e77f97
--- /dev/null
+++ b/test/test_scatter3D.py
@@ -0,0 +1,25 @@
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
+
+from pyecharts import Scatter3D
+from test.constants import RANGE_COLOR
+from nose.tools import eq_
+
+
+def test_scatter3d():
+ import random
+ data = [
+ [random.randint(0, 100),
+ random.randint(0, 100),
+ random.randint(0, 100)] for _ in range(80)
+ ]
+ scatter3d = Scatter3D("3D 散点图示例", width=1200, height=600)
+ scatter3d.add("", data, is_visualmap=True,
+ visual_range_color=RANGE_COLOR)
+ scatter3d.render()
+
+
+def test_scatter3d_must_use_canvas():
+ scatter3d = Scatter3D("3D 散点图示例", width=1200, height=600)
+ eq_(scatter3d.renderer, 'canvas')
diff --git a/test/test_style.py b/test/test_style.py
new file mode 100644
index 000000000..73e6510ac
--- /dev/null
+++ b/test/test_style.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
+
+from pyecharts import Style
+
+
+def test_style():
+ style = Style(title_pos="center")
+ s1 = style.add(is_random=True, label_pos="top")
+ assert style.init_style['title_pos'] == "center"
+ assert style.init_style.get('title', None) is None
+ assert s1['is_random'] is True
+ assert s1['label_pos'] == "top"
diff --git a/test/test_template_function.py b/test/test_template_function.py
new file mode 100644
index 000000000..07d82a2ab
--- /dev/null
+++ b/test/test_template_function.py
@@ -0,0 +1,107 @@
+# coding=utf8
+"""
+Test cases for jinja2 template functions
+"""
+
+from __future__ import unicode_literals
+from nose.tools import raises
+
+from pyecharts.utils import get_resource_dir
+from pyecharts import Bar, Map
+from pyecharts.engine import BaseEnvironment, EchartsEnvironment
+from pyecharts.conf import PyEchartsConfig
+
+ECHARTS_ENV = EchartsEnvironment()
+
+
+def create_demo_bar(chart_id_demo=None):
+ attr = ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
+ v1 = [5, 20, 36, 10, 75, 90]
+ v2 = [10, 25, 8, 60, 20, 80]
+ bar = Bar("柱状图数据堆叠示例")
+ bar.add("商家A", attr, v1, is_stack=True)
+ bar.add("商家B", attr, v2, is_stack=True)
+ if chart_id_demo:
+ bar._chart_id = chart_id_demo
+ return bar
+
+
+def test_echarts_js_dependencies():
+ env = EchartsEnvironment(
+ pyecharts_config=PyEchartsConfig(jshost='http://localhost/echarts')
+ )
+ tpl = env.from_string('{{ echarts_js_dependencies(bar) }}')
+ bar = create_demo_bar()
+ html = tpl.render(bar=bar)
+ assert '' == html # flake8: noqa
+
+
+def test_echarts_js_dependencies_embed():
+ env = EchartsEnvironment(
+ pyecharts_config=PyEchartsConfig(
+ jshost=get_resource_dir('templates', 'js', 'echarts')
+ )
+ )
+ tpl = env.from_string('{{ echarts_js_dependencies_embed("echarts") }}')
+ bar = create_demo_bar()
+ html = tpl.render(bar=bar)
+ assert len(html) > 0
+
+ # no longer echarts_js_dependencies equals echarts_js_dependencies_
+ # embed when use local host.
+ # because the js files is either in python path or user path
+ # hence it could not be simply judged.
+
+
+def test_echarts_js_container():
+ tpl = ECHARTS_ENV.from_string('{{ echarts_container(bar) }}')
+ bar = create_demo_bar('id_demo_chart')
+ html = tpl.render(bar=bar)
+ assert '
' == html # flake8: noqa
+
+ bar.width = 1024
+ bar.height = 768
+ html = tpl.render(bar=bar)
+ assert '
' == html # flake8: noqa
+
+ bar.width = '1024px'
+ bar.height = '768px'
+ html = tpl.render(bar=bar)
+ assert '
' == html # flake8: noqa
+
+
+def test_echarts_js_content():
+ tpl = ECHARTS_ENV.from_string('{{ echarts_js_content(bar) }}')
+ bar = create_demo_bar()
+ html = tpl.render(bar=bar)
+ assert len(html) > 0
+
+
+def test_echarts_js_content_wrap():
+ tpl = ECHARTS_ENV.from_string('{{ echarts_js_content_wrap(bar) }}')
+ bar = create_demo_bar()
+ html = tpl.render(bar=bar)
+ assert len(html) > 0
+
+
+@raises(TypeError)
+def test_create_environment_without_config():
+ be = BaseEnvironment()
+
+
+def test_echarts_js_in_first():
+ value = [20, 190, 253, 77, 65]
+ attr = ['汕头市', '汕尾市', '揭阳市', '阳江市', '肇庆市']
+ map = Map("广东地图示例", width=1200, height=600)
+ map.add("", attr, value, maptype='广东', is_visualmap=True,
+ visual_text_color='#000')
+ env = EchartsEnvironment(
+ pyecharts_config=PyEchartsConfig(jshost='http://localhost/echarts')
+ )
+ tpl = env.from_string('{{ echarts_js_dependencies(m) }}')
+ html = tpl.render(m=map)
+ echarts_js_pos = html.find('echarts.min.js')
+ guangdong_js_pos = html.find('guangdong.js')
+ assert echarts_js_pos > -1
+ assert guangdong_js_pos > -1
+ assert echarts_js_pos < guangdong_js_pos
diff --git a/test/test_themeriver.py b/test/test_themeriver.py
new file mode 100644
index 000000000..a6625b8a3
--- /dev/null
+++ b/test/test_themeriver.py
@@ -0,0 +1,66 @@
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
+
+from pyecharts import ThemeRiver
+
+
+def test_themeriver():
+ data = [
+ ['2015/11/08', 10, 'DQ'], ['2015/11/09', 15, 'DQ'],
+ ['2015/11/10', 35, 'DQ'], ['2015/11/14', 7, 'DQ'],
+ ['2015/11/15', 2, 'DQ'], ['2015/11/16', 17, 'DQ'],
+ ['2015/11/17', 33, 'DQ'], ['2015/11/18', 40, 'DQ'],
+ ['2015/11/19', 32, 'DQ'], ['2015/11/20', 26, 'DQ'],
+ ['2015/11/21', 35, 'DQ'], ['2015/11/22', 40, 'DQ'],
+ ['2015/11/23', 32, 'DQ'], ['2015/11/24', 26, 'DQ'],
+ ['2015/11/25', 22, 'DQ'], ['2015/11/08', 35, 'TY'],
+ ['2015/11/09', 36, 'TY'], ['2015/11/10', 37, 'TY'],
+ ['2015/11/11', 22, 'TY'], ['2015/11/12', 24, 'TY'],
+ ['2015/11/13', 26, 'TY'], ['2015/11/14', 34, 'TY'],
+ ['2015/11/15', 21, 'TY'], ['2015/11/16', 18, 'TY'],
+ ['2015/11/17', 45, 'TY'], ['2015/11/18', 32, 'TY'],
+ ['2015/11/19', 35, 'TY'], ['2015/11/20', 30, 'TY'],
+ ['2015/11/21', 28, 'TY'], ['2015/11/22', 27, 'TY'],
+ ['2015/11/23', 26, 'TY'], ['2015/11/24', 15, 'TY'],
+ ['2015/11/25', 30, 'TY'], ['2015/11/26', 35, 'TY'],
+ ['2015/11/27', 42, 'TY'], ['2015/11/28', 42, 'TY'],
+ ['2015/11/08', 21, 'SS'], ['2015/11/09', 25, 'SS'],
+ ['2015/11/10', 27, 'SS'], ['2015/11/11', 23, 'SS'],
+ ['2015/11/12', 24, 'SS'], ['2015/11/13', 21, 'SS'],
+ ['2015/11/14', 35, 'SS'], ['2015/11/15', 39, 'SS'],
+ ['2015/11/16', 40, 'SS'], ['2015/11/17', 36, 'SS'],
+ ['2015/11/18', 33, 'SS'], ['2015/11/19', 43, 'SS'],
+ ['2015/11/20', 40, 'SS'], ['2015/11/21', 34, 'SS'],
+ ['2015/11/22', 28, 'SS'], ['2015/11/14', 7, 'QG'],
+ ['2015/11/15', 2, 'QG'], ['2015/11/16', 17, 'QG'],
+ ['2015/11/17', 33, 'QG'], ['2015/11/18', 40, 'QG'],
+ ['2015/11/19', 32, 'QG'], ['2015/11/20', 26, 'QG'],
+ ['2015/11/21', 35, 'QG'], ['2015/11/22', 40, 'QG'],
+ ['2015/11/23', 32, 'QG'], ['2015/11/24', 26, 'QG'],
+ ['2015/11/25', 22, 'QG'], ['2015/11/26', 16, 'QG'],
+ ['2015/11/27', 22, 'QG'], ['2015/11/28', 10, 'QG'],
+ ['2015/11/08', 10, 'SY'], ['2015/11/09', 15, 'SY'],
+ ['2015/11/10', 35, 'SY'], ['2015/11/11', 38, 'SY'],
+ ['2015/11/12', 22, 'SY'], ['2015/11/13', 16, 'SY'],
+ ['2015/11/14', 7, 'SY'], ['2015/11/15', 2, 'SY'],
+ ['2015/11/16', 17, 'SY'], ['2015/11/17', 33, 'SY'],
+ ['2015/11/18', 40, 'SY'], ['2015/11/19', 32, 'SY'],
+ ['2015/11/20', 26, 'SY'], ['2015/11/21', 35, 'SY'],
+ ['2015/11/22', 4, 'SY'], ['2015/11/23', 32, 'SY'],
+ ['2015/11/24', 26, 'SY'], ['2015/11/25', 22, 'SY'],
+ ['2015/11/26', 16, 'SY'], ['2015/11/27', 22, 'SY'],
+ ['2015/11/28', 10, 'SY'], ['2015/11/08', 10, 'DD'],
+ ['2015/11/09', 15, 'DD'], ['2015/11/10', 35, 'DD'],
+ ['2015/11/11', 38, 'DD'], ['2015/11/12', 22, 'DD'],
+ ['2015/11/13', 16, 'DD'], ['2015/11/14', 7, 'DD'],
+ ['2015/11/15', 2, 'DD'], ['2015/11/16', 17, 'DD'],
+ ['2015/11/17', 33, 'DD'], ['2015/11/18', 4, 'DD'],
+ ['2015/11/19', 32, 'DD'], ['2015/11/20', 26, 'DD'],
+ ['2015/11/21', 35, 'DD'], ['2015/11/22', 40, 'DD'],
+ ['2015/11/23', 32, 'DD'], ['2015/11/24', 26, 'DD'],
+ ['2015/11/25', 22, 'DD']
+ ]
+ tr = ThemeRiver("主题河流图示例图")
+ tr.add(['DQ', 'TY', 'SS', 'QG', 'SY', 'DD'], data, is_label_show=True)
+ tr.render()
diff --git a/test/test_timeline.py b/test/test_timeline.py
new file mode 100644
index 000000000..e36803c9c
--- /dev/null
+++ b/test/test_timeline.py
@@ -0,0 +1,175 @@
+#!/usr/bin/env python
+# coding=utf-8
+from __future__ import unicode_literals
+
+from random import randint
+
+from pyecharts import Bar, Pie, Line, Overlap, Timeline, Style, Map
+from test.constants import CLOTHES
+
+
+def test_timeline_bar():
+ bar_1 = Bar("2012 年销量", "数据纯属虚构")
+ bar_1.add("春季", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_1.add("夏季", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_1.add("秋季", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_1.add("冬季", CLOTHES, [randint(10, 100) for _ in range(6)])
+
+ bar_2 = Bar("2013 年销量", "数据纯属虚构")
+ bar_2.add("春季", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_2.add("夏季", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_2.add("秋季", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_2.add("冬季", CLOTHES, [randint(10, 100) for _ in range(6)])
+
+ bar_3 = Bar("2014 年销量", "数据纯属虚构")
+ bar_3.add("春季", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_3.add("夏季", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_3.add("秋季", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_3.add("冬季", CLOTHES, [randint(10, 100) for _ in range(6)])
+
+ bar_4 = Bar("2015 年销量", "数据纯属虚构")
+ bar_4.add("春季", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_4.add("夏季", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_4.add("秋季", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_4.add("冬季", CLOTHES, [randint(10, 100) for _ in range(6)])
+
+ bar_5 = Bar("2016 年销量", "数据纯属虚构")
+ bar_5.add("春季", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_5.add("夏季", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_5.add("秋季", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_5.add("冬季", CLOTHES, [randint(10, 100) for _ in range(6)],
+ is_legend_show=True)
+
+ timeline = Timeline(is_auto_play=True, timeline_bottom=0)
+ timeline.add(bar_1, '2012 年')
+ timeline.add(bar_2, '2013 年')
+ timeline.add(bar_3, '2014 年')
+ timeline.add(bar_4, '2015 年')
+ timeline.add(bar_5, '2016 年')
+ assert len(timeline.options.get("baseOption").get("series")) == 0
+ timeline.render()
+
+
+def test_timeline_pie():
+ style = Style()
+ pie_style = style.add(
+ is_label_show=True,
+ radius=[30, 55],
+ rosetype="radius"
+ )
+ pie_1 = Pie("2012 年销量比例", "数据纯属虚构")
+ pie_1.add("秋季", CLOTHES, [randint(10, 100) for _ in range(6)], **pie_style)
+
+ pie_2 = Pie("2013 年销量比例", "数据纯属虚构")
+ pie_2.add("秋季", CLOTHES, [randint(10, 100) for _ in range(6)], **pie_style)
+
+ pie_3 = Pie("2014 年销量比例", "数据纯属虚构")
+ pie_3.add("秋季", CLOTHES, [randint(10, 100) for _ in range(6)], **pie_style)
+
+ pie_4 = Pie("2015 年销量比例", "数据纯属虚构")
+ pie_4.add("秋季", CLOTHES, [randint(10, 100) for _ in range(6)], **pie_style)
+
+ pie_5 = Pie("2016 年销量比例", "数据纯属虚构")
+ pie_5.add("秋季", CLOTHES, [randint(10, 100) for _ in range(6)], **pie_style)
+
+ timeline = Timeline(is_auto_play=True, timeline_bottom=0,
+ width=1200, height=600)
+ timeline.add(pie_1, '2012 年')
+ timeline.add(pie_2, '2013 年')
+ timeline.add(pie_3, '2014 年')
+ timeline.add(pie_4, '2015 年')
+ timeline.add(pie_5, '2016 年')
+ assert len(timeline.options.get("baseOption").get("series")) == 0
+ timeline.render()
+
+
+def test_timeline_bar_line():
+ attr = ["{}月".format(i) for i in range(1, 7)]
+ bar = Bar("1 月份数据", "数据纯属虚构")
+ bar.add("bar", attr, [randint(10, 50) for _ in range(6)])
+ line = Line()
+ line.add("line", attr, [randint(50, 80) for _ in range(6)])
+ overlap_0 = Overlap()
+ overlap_0.add(bar)
+ overlap_0.add(line)
+
+ bar_1 = Bar("2 月份数据", "数据纯属虚构")
+ bar_1.add("bar", attr, [randint(10, 50) for _ in range(6)])
+ line_1 = Line()
+ line_1.add("line", attr, [randint(50, 80) for _ in range(6)])
+ overlap_1 = Overlap()
+ overlap_1.add(bar_1)
+ overlap_1.add(line_1)
+
+ bar_2 = Bar("3 月份数据", "数据纯属虚构")
+ bar_2.add("bar", attr, [randint(10, 50) for _ in range(6)])
+ line_2 = Line()
+ line_2.add("line", attr, [randint(50, 80) for _ in range(6)])
+ overlap_2 = Overlap()
+ overlap_2.add(bar_2)
+ overlap_2.add(line_2)
+
+ bar_3 = Bar("4 月份数据", "数据纯属虚构")
+ bar_3.add("bar", attr, [randint(10, 50) for _ in range(6)])
+ line_3 = Line()
+ line_3.add("line", attr, [randint(50, 80) for _ in range(6)])
+ overlap_3 = Overlap()
+ overlap_3.add(bar_3)
+ overlap_3.add(line_3)
+
+ bar_4 = Bar("5 月份数据", "数据纯属虚构")
+ bar_4.add("bar", attr, [randint(10, 50) for _ in range(6)])
+ line_4 = Line()
+ line_4.add("line", attr, [randint(50, 80) for _ in range(6)])
+ overlap_4 = Overlap()
+ overlap_4.add(bar_4)
+ overlap_4.add(line_4)
+
+ timeline = Timeline(timeline_bottom=0)
+ timeline.add(overlap_0, '1 月')
+ timeline.add(overlap_1, '2 月')
+ timeline.add(overlap_2, '3 月')
+ timeline.add(overlap_3, '4 月')
+ timeline.add(overlap_4, '5 月')
+ timeline.render()
+
+
+def test_timeline_map():
+ timeline = Timeline(timeline_bottom=0)
+ value = [155, 10, 66, 78, 33, 80, 190, 53, 49.6]
+ attr = ["福建", "山东", "北京", "上海", "甘肃",
+ "新疆", "河南", "广西", "西藏"]
+ map = Map("Map 结合 VisualMap 示例", width=1200, height=600)
+ map.add("", attr, value, maptype='china', is_visualmap=True,
+ visual_text_color='#000', visual_top="30%")
+ timeline.add(map, "test1")
+ value = [155, 10, 66, 78, 33]
+ attr = ["福建", "山东", "北京", "上海", "甘肃"]
+ map = Map("Map 结合 VisualMap 示例", width=1200, height=600)
+ map.add("", attr, value, maptype='china', is_visualmap=True,
+ visual_text_color='#000', visual_top="30%")
+ timeline.add(map, "test2")
+ assert len(timeline.options.get("baseOption").get("series")) == 2
+ timeline.render()
+
+
+def test_timeline_different_legend():
+ bar_1 = Bar("2012 年销量", "数据纯属虚构")
+ bar_1.add("春季a", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_1.add("夏季a", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_1.add("秋季a", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_1.add("冬季a", CLOTHES, [randint(10, 100) for _ in range(6)])
+
+ bar_2 = Bar("2013 年销量", "数据纯属虚构")
+ bar_2.add("春季b", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_2.add("夏季b", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_2.add("秋季b", CLOTHES, [randint(10, 100) for _ in range(6)])
+ bar_2.add("冬季b", CLOTHES, [randint(10, 100) for _ in range(6)],
+ is_legend_show=True)
+
+ timeline = Timeline(is_auto_play=True, timeline_bottom=0)
+ timeline.add(bar_1, '2012 年')
+ timeline.add(bar_2, '2013 年')
+ content = timeline._repr_html_()
+ assert "\\u6625\\u5b63a" in content # 春季 a
+ assert "\\u6625\\u5b63b" in content # 春季 b
diff --git a/test/test_treemap.py b/test/test_treemap.py
new file mode 100644
index 000000000..d0807893b
--- /dev/null
+++ b/test/test_treemap.py
@@ -0,0 +1,65 @@
+# coding=utf-8
+from __future__ import unicode_literals
+
+import sys
+
+from pyecharts import TreeMap
+
+PY2 = sys.version_info[0] == 2
+
+data = [
+ {
+ "value": 40,
+ "name": "我是A",
+ },
+ {
+ "value": 180,
+ "name": "我是B",
+ "children": [
+ {
+ "value": 76,
+ "name": "我是B.children",
+ "children": [
+ {
+ "value": 12,
+ "name": "我是B.children.a",
+ },
+ {
+ "value": 28,
+ "name": "我是B.children.b",
+ },
+ {
+ "value": 20,
+ "name": "我是B.children.c",
+ },
+ {
+ "value": 16,
+ "name": "我是B.children.d",
+ }]
+ }]}
+]
+
+
+def test_treemap_default():
+ treemap = TreeMap("树图-默认示例", width=1200, height=600)
+ treemap.add("演示数据", data, is_label_show=True, label_pos='inside')
+ treemap.render()
+
+
+def test_treemap_drilldown():
+ treemap = TreeMap("树图-下钻示例", width=1200, height=600)
+ treemap.add("演示数据", data, is_label_show=True, label_pos='inside',
+ treemap_left_depth=1)
+ treemap.render()
+
+
+def test_treemap_offcical_data():
+ treemap = TreeMap("树图-官方数据", width=1200, height=600)
+ import os
+ import json
+ import codecs
+ test_fixture = os.path.join("fixtures", "treemap.json")
+ with codecs.open(test_fixture, "r", encoding='utf-8') as f:
+ data = json.load(f)
+ treemap.add("演示数据", data, is_label_show=True, label_pos='inside')
+ treemap.render()
diff --git a/test/test_utils.py b/test/test_utils.py
new file mode 100644
index 000000000..7b176c717
--- /dev/null
+++ b/test/test_utils.py
@@ -0,0 +1,102 @@
+# coding=utf-8
+from __future__ import unicode_literals
+
+import codecs
+import json
+import os
+from datetime import date
+
+import numpy as np
+from nose.tools import eq_
+
+from pyecharts.utils import (
+ write_utf8_html_file,
+ get_resource_dir,
+ json_dumps,
+ merge_js_dependencies
+)
+
+
+def test_get_resource_dir():
+ path = get_resource_dir('templates')
+ expected = os.path.join(os.getcwd(), '..', 'pyecharts', 'templates')
+ eq_(path, os.path.abspath(expected))
+
+
+def test_write_utf8_html_file():
+ content = "柱状图数据堆叠示例"
+ file_name = 'test.html'
+ write_utf8_html_file(file_name, content)
+ with codecs.open(file_name, 'r', 'utf-8') as f:
+ actual_content = f.read()
+ eq_(content, actual_content)
+
+
+def test_json_encoder():
+ """
+ Test json encoder.
+ :return:
+ """
+ data = date(2017, 1, 1)
+ eq_(json.dumps({'date': '2017-01-01', 'a': '1'}, indent=0),
+ json_dumps({'date': data, 'a': '1'}))
+
+ data2 = {'np_list': np.array(['a', 'b', 'c'])}
+ data2_e = {'np_list': ['a', 'b', 'c']}
+ eq_(json.dumps(data2_e, indent=0), json_dumps(data2))
+
+
+class MockChart(object):
+ """
+ A mock class for a Chart and Page
+ """
+
+ def __init__(self, js_dependencies):
+ self.js_dependencies = js_dependencies
+
+
+def test_merge_js_dependencies_with_one_chart():
+ # Prepare some kinds of charts or page.
+
+ base_chart = MockChart(['echarts'])
+
+ # One chart or page
+ eq_(['echarts'], merge_js_dependencies(base_chart))
+ # A map chart
+ ch1 = MockChart(['echarts', 'fujian', 'zhengjiang', 'anhui'])
+ eq_(
+ ['echarts', 'fujian', 'zhengjiang', 'anhui'],
+ merge_js_dependencies(ch1)
+ )
+
+
+def test_merge_js_dependencies_with_multiple_charts():
+ base_chart = MockChart(['echarts'])
+ map_chart = MockChart(['echarts', 'fujian'])
+ three_d_chart = MockChart(['echarts', 'echartsgl'])
+ # Multiple charts
+ eq_(
+ ['echarts', 'fujian'],
+ merge_js_dependencies(base_chart, map_chart)
+ )
+ eq_(
+ ['echarts', 'echartsgl', 'fujian'],
+ merge_js_dependencies(base_chart, map_chart, three_d_chart)
+ )
+
+
+def test_merge_js_dependencies_with_mixed_chart_and_string():
+ map_chart = MockChart(['echarts', 'fujian'])
+
+ eq_(
+ ['echarts', 'zhejiang'],
+ merge_js_dependencies('echarts', 'zhejiang')
+ )
+ eq_(
+ ['echarts', 'zhejiang'],
+ merge_js_dependencies(['echarts', 'zhejiang'])
+ )
+ eq_(
+ ['echarts', 'fujian'],
+ merge_js_dependencies('echarts', map_chart)
+ )
diff --git a/test/test_wordcloud.py b/test/test_wordcloud.py
index 41896fa60..c3aae49d7 100644
--- a/test/test_wordcloud.py
+++ b/test/test_wordcloud.py
@@ -1,14 +1,30 @@
+#!/usr/bin/env python
+# coding=utf-8
+
from pyecharts import WordCloud
-def test_wordcloud():
- name = ['Sam S Club', 'Macys', 'Amy Schumer', 'Jurassic World', 'Charter Communications',
- 'Chick Fil A', 'Planet Fitness', 'Pitch Perfect', 'Express', 'Home', 'Johnny Depp',
- 'Lena Dunham', 'Lewis Hamilton', 'KXAN', 'Mary Ellen Mark', 'Farrah Abraham',
- 'Rita Ora', 'Serena Williams', 'NCAA baseball tournament', 'Point Break']
- value = [10000, 6181, 4386, 4055, 2467, 2244, 1898, 1484, 1112, 965, 847, 582, 555,
- 550, 462, 366, 360, 282, 273, 265]
+name = [
+ 'Sam S Club', 'Macys', 'Amy Schumer', 'Jurassic World',
+ 'Charter Communications', 'Chick Fil A', 'Planet Fitness',
+ 'Pitch Perfect', 'Express', 'Home', 'Johnny Depp', 'Lena Dunham',
+ 'Lewis Hamilton', 'KXAN', 'Mary Ellen Mark', 'Farrah Abraham',
+ 'Rita Ora', 'Serena Williams', 'NCAA baseball tournament', 'Point Break'
+ ]
+
+value = [
+ 10000, 6181, 4386, 4055, 2467, 2244, 1898, 1484, 1112,
+ 965, 847, 582, 555, 550, 462, 366, 360, 282, 273, 265
+ ]
+
+
+def test_wordcloud_default():
+ wordcloud = WordCloud(width=1300, height=620)
+ wordcloud.add("", name, value, word_size_range=[30, 100], rotate_step=66)
+ assert "diamond" not in wordcloud._repr_html_()
+
+
+def test_wordcloud_shape_diamond():
wordcloud = WordCloud(width=1300, height=620)
- wordcloud.add("", name, value, word_size_range=[20, 100])
- wordcloud.show_config()
- wordcloud.render()
+ wordcloud.add("", name, value, word_size_range=[30, 100], shape='diamond')
+ assert "diamond" in wordcloud._repr_html_()
diff --git a/test/utils.py b/test/utils.py
new file mode 100644
index 000000000..8efc0b1d0
--- /dev/null
+++ b/test/utils.py
@@ -0,0 +1,9 @@
+import codecs
+
+
+def get_default_rendering_file_content(file_name='render.html'):
+ """
+ Simply returns the content render.html
+ """
+ with codecs.open(file_name, 'r', 'utf-8') as f:
+ return f.read()